Available Skills
This plugin provides specialized skills for BigQuery ETL workflows. Skills are automatically invoked by Claude based on your requests - you don't need to call them explicitly.
Skill Categories
Foundation
| Skill | Purpose | Claude uses when |
|---|---|---|
| bigquery-etl-core | Project conventions and patterns | Checking naming conventions, understanding project structure |
Construction Workflows
| Skill | Purpose | Claude uses when |
|---|---|---|
| model-requirements | Requirements gathering | Planning new tables or understanding existing ones |
| query-writer | SQL/Python query writing | Creating or updating query.sql, query.py files or ad-hoc queries |
| metadata-manager | Schema and metadata config | Generating schema.yaml & metadata.yaml files with descriptions |
| sql-test-generator | Unit test generation | Creating, updating, and running unit tests |
| bigconfig-generator | Data quality monitoring | Adding Bigeye monitoring configurations |
Meta Skills
| Skill | Purpose | Claude uses when |
|---|---|---|
| skill-creator | Create new skills | Extending the plugin with new capabilities |
How Skills Work Together
Skills are designed to be composable—they work together to complete complex workflows:
Example: Creating a New Table
Prompt: Create a new table from ad_metrics that tracks advertiser performance grouped by:
- submission_date
- advertiser
- country
- impressions
graph LR
A[User Request] --> B[model-requirements]
B --> C[query-writer]
C --> D[metadata-manager]
D --> E[sql-test-generator]
E --> F[bigconfig-generator]
F --> G[Complete Table]
- model-requirements gathers requirements
- query-writer creates the SQL
- metadata-manager generates schema/metadata
- sql-test-generator creates tests
- bigconfig-generator adds monitoring
Example: Updating a Query
graph LR
A[User Request] --> B[query-writer]
B --> C[metadata-manager]
C --> D[sql-test-generator]
D --> E[Updated Query]
- query-writer updates the query
- metadata-manager updates the schema
- sql-test-generator updates tests
See the Skills Overview for detailed information about skill anatomy and coordination.
Quick Links
-
Get up and running in minutes
-
Jump right in with practical examples