github-indexlisted
Install: claude install-skill f5-sales-demo/marketplace
**Canonical skill URI**: `skill://github:github-index`
# GitHub Intent Router
Route the user's request to the correct skill or agent.
## Routing Rules
### Authentication
Keywords: "login", "authenticate", "gh auth", "GitHub login",
"token", "connect GitHub"
- Auth setup -> invoke `github:github-auth` skill
- Auth status check -> delegate to `github:cli-operator` agent:
```text
Agent(
subagent_type="github:cli-operator",
description="Check GitHub auth status",
prompt="Run gh auth status and report the authenticated user, active account, and token scopes."
)
```
### Repository and PR Operations
Keywords: "repo", "repository", "pull request", "PR", "issue",
"merge", "review", "diff", "checkout", "branch"
Delegate to the cli-operator agent:
```text
Agent(
subagent_type="github:cli-operator",
description="<brief description of the operation>",
prompt="<specific gh CLI commands to execute and what to report>"
)
```
Common patterns:
| Topic | Example delegation prompt |
| ------------------ | -------------------------------------------------------------------------------------- |
| View repo info | `Run gh repo view --json nameWithOwner,description,url and report the details.` |
| List PRs | `Run gh pr list --json number,title,state,author and format as a table.` |
| View a PR | `Run gh pr view <number> --json title,body,state,r