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/typedef-ai/ade-bench-plugin/create-tasknpx skills add typedef-ai/ade-bench-plugin --skill create-taskgit clone --depth 1 https://github.com/typedef-ai/ade-bench-pluginWhat 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.00066 | $0.07169 |
| Opus 5 | $0.00033 | $0.03585 |
| Sonnet 5 | $0.00013 | $0.01434 |
| Haiku 4.5 | $0.00007 | $0.00717 |
Grade B, and why
create-task scanned grade B with 1 finding 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 2d ago.
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.
Recursive force deletemediumDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf /tmp/ade-bench-validate-{task_id} Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 616 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ADE-Bench Task Generator
You are a benchmark task generator for ADE-Bench, a framework that evaluates AI agents on dbt and SQL tasks. Your job is to analyze a user's dbt project, propose realistic bug-injection tasks, and generate the full scaffolding needed to run those tasks as benchmarks.
Overview
ADE-Bench tasks work by:
- Taking a working dbt project
- Introducing a bug via a patch (setup)
- Giving an agent a prompt describing the symptom
- Evaluating whether the agent fixes the bug (via dbt tests + table comparison)
You will generate tasks that follow this pattern using the user's own dbt project and data.
Phase 1: Parse Arguments and Discover the Project
The user invokes this skill with a path to their dbt project. Parse the arguments:
- First positional arg: Path to the dbt project directory (required). This directory must contain
dbt_project.yml. --output-dir: Where to write generated tasks (default:./ade-bench-tasksnext to the project).--no-copy: If present, reference the original project in-place instead of copying it. Default: copy into{output_dir}/projects/.--db-type: Database type override (duckdborsnowflake). Default: auto-detected fromprofiles.yml.--db-name: Name of the database (without extension for DuckDB, or the Snowflake database name). Default: inferred fromprofiles.yml.--db-path: Path to the directory containing the DuckDB file (DuckDB only). When provided, this value is written todb_dirintask.yaml. When omitted, do NOT writedb_dirat all — the harness falls back to~/.ade-bench/shared/databases/duckdb/<db_name>.duckdb, which is correct for any bundled ade-bench project (airbnb, f1, quickbooks, etc.).
Verify ade-bench is Installed
Before discovery, check whether ade-bench (the harness that runs the generated tasks) is available. Generation works without it, but the user can't run the output without it.
Detection — in order:
command -v ade— if it returns a path andade --helpsucceeds, ade-bench is installed.test -f ~/.ade-bench/pyproject.toml && grep -q 'name = "ade-bench"' ~/.ade-bench/pyproject.toml— fallback if~/.local/binisn't on PATH yet.
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.
- 2d ago First seen · 616 lines · 66 tokens per session scan B 8c50118e7e72
create-task is a skill published in the GitHub repository typedef-ai/ade-bench-plugin (3 stars, last pushed 3mo ago), licensed MIT. It adds 66 tokens to every session and 7,169 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
pr-verify
Verify a Docglow change actually works before submitting or merging a PR. Runs the conformance suite, then a behavioral verification pass (flag matrix, artifact-join spot checks, pipeline contract sweep, payload budget). Use when reviewing a PR, self-reviewing a branch before opening a PR, or when asked to "verify…
dbt-agent-readiness
Audit a dbt project for agent-readiness: what would an AI agent get wrong if you pointed it at this data today? Produces a prioritized report organized by failure modes (wrong numbers, wrong table, wrong column, can't join, query fails). Scales via two-pass architecture with parallel subagents. Each subagent reads its…
authoring-meta-context
Authors and extracts dbt MetricFlow meta context — structured YAML meta: blocks that encode business knowledge (thresholds, investigation paths, SLAs, relationships) alongside metric definitions so AI agents answer analytical questions accurately. Use when user asks about context cards, meta context blocks, dbt metric…
animation-best-practices
CSS and UI animation patterns for responsive, polished interfaces. Use when implementing hover effects, tooltips, button feedback, transitions, or fixing animation issues like flicker and shakiness.
dbt-doctor
Static analysis and health checks for dbt projects. Use before committing SQL/YAML or when enforcing CI quality gates.
dbt-expert
Expert-level dbt (data build tool), models, tests, documentation, incremental models, macros, and Jinja templating.