From data-agent-kit-starter-pack
Verifies and resolves Google Cloud authentication errors for gcloud CLI, bq, dataform, and Python libraries. Use on missing credentials or 403 Forbidden issues.
npx claudepluginhub gemini-cli-extensions/data-agent-kit-starter-pack --plugin data-agent-kit-starter-packThis skill uses the workspace's default tool permissions.
1. **gcloud/bq CLI**:
Implements structured self-debugging workflow for AI agent failures: capture errors, diagnose patterns like loops or context overflow, apply contained recoveries, and generate introspection reports.
Monitors deployed URLs for regressions in HTTP status, console errors, performance metrics, content, network, and APIs after deploys, merges, or upgrades.
Provides React and Next.js patterns for component composition, compound components, state management, data fetching, performance optimization, forms, routing, and accessible UIs.
ERROR: (bq) You do not currently have an active account selected.No credentialed accounts.Configuration error: No account is currently active.google.auth.exceptions.DefaultCredentialsError: Could not automatically determine credentials.Forbidden: 403 Access Denied (when it's clearly an auth issue).Before asking the user to log in, independently verify the authentication status
by running: gcloud auth list * If the output contains No credentialed accounts., proceed to the Corrective Action steps below. * If an account
is listed but the user still receives a 403 Access Denied error, the issue
is likely IAM permissions (e.g., missing BigQuery roles) on their active
account, rather than missing authentication. In this case, investigate the
permissions rather than asking them to log in again.
When missing credentials are confirmed, DO NOT attempt to fix the credentials via code or alternative tools. Credentials must be established by the user.
Stop and ask the user to run the following commands in their terminal:
To authenticate the gcloud CLI: gcloud auth login
To set up Application Default Credentials (ADC) (required for BQ CLI AND
most libraries/notebooks): gcloud auth application-default login
After the user confirms they have logged in, verify with: gcloud auth list
Then proceed with the original task.