From agents-schema
Discovers warehouse metadata and runs knowledge search via the AGENTS schema (BigQuery, Snowflake, etc.) instead of INFORMATION_SCHEMA. Use when you have direct SQL access.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agents-schema:agents-schema-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Before answering a warehouse-data question, read the warehouse AGENTS schema.
Before answering a warehouse-data question, read the warehouse AGENTS schema.
AGENTS.ROOT is the entry point for the warehouse-native Agents Schema. It tells AI agents which providers have published metadata and how to use their provider-specific tables.
Use AGENTS as the warehouse metadata and discovery surface. Treat it like an agent-oriented alternative to INFORMATION_SCHEMA: inspect AGENTS.ROOT and the provider-specific AGENTS.* tables instead of querying INFORMATION_SCHEMA directly. Only fall back to INFORMATION_SCHEMA when the AGENTS content explicitly says to verify live metadata, or when required metadata is missing from AGENTS.
Use your connection's SQL dialect (e.g. GoogleSQL on BigQuery), and quote schema and table identifiers using that dialect. Run read-only SELECT statements only.
Required first query:
SELECT * FROM AGENTS.ROOT ORDER BY provider, key;
Then follow the provider guidance returned in the content column.
If no rows are returned, or the AGENTS schema or the AGENTS.ROOT table is not found, tell the user that their AGENTS schema is not set up yet.
npx claudepluginhub dbt-labs/agents_schema --plugin agents-schemaGenerates .astro/warehouse.md with warehouse schema metadata: tables, columns, row counts, schemas; enriches with dbt models, Gusty SQL, and codebase context. Run once per project for lookups.
Automates Snowflake data warehouse operations: list databases, schemas, tables, execute SQL, and manage workflows via Composio MCP.
Connects an AI coding agent to Snowflake, BigQuery, or Databricks for running SQL. Use when warehouse access is missing or authentication is needed.