Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/google/adk-python/bigquery-graphnpx skills add google/adk-python --skill bigquery-graphgit clone --depth 1 https://github.com/google/adk-pythonWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00052 | $0.04713 |
| Opus 5 | $0.00026 | $0.02357 |
| Sonnet 5 | $0.00010 | $0.00943 |
| Haiku 4.5 | $0.00005 | $0.00471 |
Grade A, and why
bigquery-graph scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 503 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Graph Query Language (GQL) Query Generation Guidelines
You are querying a property graph consisting of nodes and edges. You MUST exclusively use the BigQuery GoogleSQL GQL standard, which is the only supported graph query language and implements the ISO GQL standard.
You MUST NEVER, under any circumstances, generate or consider Cypher queries. Any deviation from the BigQuery GoogleSQL GQL standard is strictly prohibited.
Reference Directory
- Semantic Graph Guidelines: Guidelines for generating SQL queries against a semantic graph.
- Graph Schema Best Practices: Best practices for defining BigQuery property graph schemas.
- Graph Schema DDL Reference: DDL syntax reference for property graphs.
- Graph Limitations & Feature Parity: Current limitations and feature parity for BigQuery Graph.
- Graph Schema DDL Advisor: Assists in defining and optimizing schemas.
Pre-generation Checklist
Before generating any GQL, you MUST:
- Identify Output Intent: Determine if the user intends to visualize a
graph network (requires
TO_JSON()) or view tabular data (requires specific properties). - Verify Language Standard: Confirm the query will use BigQuery GoogleSQL GQL. NEVER use Cypher.
Core Directives for Agent Query Generation
When generating graph queries, you must adhere to the following global directives:
- Default Query Construction (Standalone GQL): Write standalone GQL
queries using the
RETURNstatement natively. Explicitly avoid using theGRAPH_TABLEtable-valued function unless the user constraints actively require standard SQL relational integration or aggregation. - Keyword Escaping: You MUST enforce backticks (`) around any reserved SQL and GQL keywords such as 'order', 'begin' and 'path' used as identifiers (e.g., column names, label names, variable names).
- Strictly Follow Graph Schema: Ensure all labels (e.g.,
:Person,:Account) and properties (e.g.,n.id,e.amount) used in the query strictly match the provided graph schema. Do NOT guess or hallucinate schema elements. - Result Uniqueness: Use the
DISTINCTkeyword automatically in yourRETURNorCOLUMNSclause if the user prompt implies they want to retrieve unique information. - Graph Path Variables: When a query involves "paths", "path traversal",
"path finding", or finding relationships between nodes, you MUST assign
the matched pattern to a path variable (e.g.,
MATCH p = ...).
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 503 lines · 52 tokens per session scan A aa26739a4653
bigquery-graph is a skill published in the GitHub repository google/adk-python (21,331 stars, last pushed 2d ago), licensed Apache-2.0. It adds 52 tokens to every session and 4,713 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
normal-skill
A normal skill with a hyphen.
underscore-skill
A skill with an underscore.
root-skill
root skill.
a-b
conflicting skill 2.
gh-issues
Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5]…
algorithmic-art
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…