google/bigquery-basics
>- Manages datasets, tables, and jobs in BigQuery. Use when you need to interact with BigQuery, run SQL queries, manage BigQuery resources (datasets, tables, views), or perform basic data ingestion and analysis.
npx skills add https://github.com/google/skills --skill bigquery-basics
BigQuery is a serverless, AI-ready data platform that enables high-speed
analysis of large datasets using SQL and Python. Its disaggregated architecture
separates compute and storage, allowing them to scale independently while
providing built-in machine learning, geospatial analysis, and business
intelligence capabilities.
gcloud services enable bigquery.googleapis.com --quiet
bq mk --dataset --location=US my_dataset
Create a file named schema.json with your table schema:
[
{
"name": "name",
"type": "STRING",
"mode": "REQUIRED"
},
{
"name": "post_abbr",
"type": "STRING",
"mode": "NULLABLE"
}
]
Then create the table with the bq tool:
bq mk --table my_dataset.mytable schema.json
bq query --use_legacy_sql=false \
'SELECT name FROM `bigquery-public-data.usa_names.usa_1910_2013` \
WHERE state = "TX" LIMIT 10'
workflows, and BigQuery Studio features.
incremental table changes using APPENDS and CHANGES.
SQL statements to analyze incoming data in real time.
bq command-line tooloperations for managing data and jobs.
client libraries for Python, Java, Node.js, and Go.
Gemini CLI extension.
datasets, tables, and reservations.
governance best practices.
*If you need product information not found in these references, use the
Developer Knowledge MCP server search_documents tool.*
SKILL.md file for BigQuery AI and ML capabilities (forecast, anomaly
detection, text generation).
Take google/bigquery-basics from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.