gcloud-indexlisted
Install: claude install-skill f5-sales-demo/marketplace
**Canonical skill URI**: `skill://gcloud:gcloud-index`
# Google Cloud Intent Router
Route the user's request to the correct skill or agent.
## Routing Rules
### Authentication and Account Management
Keywords: "login", "authenticate", "gcloud auth", "connect gcp",
"service account", "application default credentials"
- Auth setup -> invoke `gcloud:gcloud-auth` skill
### Project Operations
Keywords: "project", "gcloud projects", "list projects",
"switch project", "set project", "current project"
- Delegate to `gcloud:cli-operator` agent:
```text
Agent(
subagent_type="gcloud:cli-operator",
description="Google Cloud project operations",
prompt="<specific gcloud project commands to execute>"
)
```
### Compute / GKE / Cloud Run / Cloud Functions
Keywords: "compute", "instance", "VM", "GKE", "kubernetes", "cluster",
"Cloud Run", "Cloud Functions", "serverless"
- Delegate to `gcloud:cli-operator` agent:
```text
Agent(
subagent_type="gcloud:cli-operator",
description="<brief description of the operation>",
prompt="<specific gcloud commands to execute and what to report>"
)
```
### Generic gcloud Commands
For any gcloud CLI operation not covered above, delegate to the
cli-operator agent. The agent will use `gcloud <subcommand> --help`
for discovery when needed:
```text
Agent(
subagent_type="gcloud:cli-operator",
description="<brief description of the operation>",
prompt="<specific gcloud commands to execute and what to repor