
Skill
agents-schema-search
search and query data warehouse metadata
Description
Use when answering questions about data in a warehouse (BigQuery, Snowflake, etc.) and you have direct SQL access (CLI, driver, or console). Discover metadata and run knowledge search through the warehouse-native AGENTS schema instead of INFORMATION_SCHEMA.
SKILL.md
Answering warehouse-data questions via the 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.
More skills from the agents_schema repository
View all 2 skillsMore from dbt Labs
View publisheradding-dbt-unit-test
add dbt unit tests
dbt-agent-skills
Apr 6dbtTestingYAMLanswering-natural-language-questions-with-dbt
answer business questions using dbt Semantic Layer
dbt-agent-skills
Apr 6AnalyticsData AnalysisdbtMetrics +1building-dbt-semantic-layer
build dbt Semantic Layer components
dbt-agent-skills
Jul 18AnalyticsData EngineeringdbtMetricsconfiguring-dbt-mcp-server
configure dbt MCP server
dbt-agent-skills
Apr 6Agent ContextdbtMCPcreating-mermaid-dbt-dag
generate Mermaid diagrams of dbt model lineage
dbt-agent-skills
Apr 6Data PipelinedbtDiagramsDocumentationfetching-dbt-docs
search dbt documentation
dbt-agent-skills
Apr 6dbtDocumentationReference