From Swantje
Connect a BigQuery project to Swantje — collects project/dataset config and guides service account credential setup
How this skill is triggered — by the user, by Claude, or both
Slash command
/swantje:connect-bigqueryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guide the user through connecting their BigQuery project.
Guide the user through connecting their BigQuery project.
Non-secret (write to .swantje/config.json):
project_id (required) — GCP project ID, e.g. my-company-dwhdataset (optional) — default dataset to query againstlocation (default: US) — dataset regionSecret (env var only):
GOOGLE_APPLICATION_CREDENTIALS — path to a service account JSON key fileTwo options — present both:
Option A — Service account key (recommended for local dev):
BigQuery Data Viewer + BigQuery Job User rolesexport GOOGLE_APPLICATION_CREDENTIALS="/path/to/key.json"
Option B — Application Default Credentials (recommended for CI/cloud):
gcloud auth application-default login
No env var needed when ADC is set up.
Read .swantje/config.json and update connectors.bigquery:
"bigquery": {
"enabled": true,
"project_id": "<value>",
"dataset": "<value or null>",
"location": "<value>"
}
[STUB — v0.0.1] Connection verification not yet implemented. Manual test:
bq query --project_id=<project_id> 'SELECT 1'
Tell the user BigQuery is now configured and they can use /swantje:analyst to query it.
npx claudepluginhub datumlabsio/swantje --plugin swantjeProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.