inherited-scope-doc-names-may-not-exist

inherited-scope-doc-names-may-not-exist is a skill for Claude Code from wan-huiyan/agent-traffic-control. It costs 72 tokens per session (3,142 once invoked), scanned A, original, MIT.

A quick database schema check for plans that name specific datasets, tables, or columns, such as those in BigQuery, a cloud data warehouse.

In plain words
What is it for?
Use it to verify table and column paths before dispatching parallel analysis or batch work.
Why use it?
It catches outdated or invented names before many agents or long-running jobs waste time using them.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents; positional $N argument; mentions Claude Code.

Part of the agent-traffic-control plugin — 107 skills shipped together

Good fit Use it to verify table and column paths before dispatching parallel analysis or batch work.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wan-huiyan/agent-traffic-control/inherited-scope-doc-names-may-not-exist
Install

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.

Any agent
npx skills add wan-huiyan/agent-traffic-control --skill inherited-scope-doc-names-may-not-exist
Clone the repo
git clone --depth 1 https://github.com/wan-huiyan/agent-traffic-control

Made for: Claude Code.

Or install agent-traffic-control, the plugin that ships this one along with the rest of its 107 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for inherited-scope-doc-names-may-not-exist

README.md
[![agentmods](https://agentmods.dev/badge/skills/wan-huiyan/agent-traffic-control/inherited-scope-doc-names-may-not-exist/github.svg)](https://agentmods.dev/skills/wan-huiyan/agent-traffic-control/inherited-scope-doc-names-may-not-exist)
Your own site
<a href="https://agentmods.dev/skills/wan-huiyan/agent-traffic-control/inherited-scope-doc-names-may-not-exist"><img src="https://agentmods.dev/badge/skills/wan-huiyan/agent-traffic-control/inherited-scope-doc-names-may-not-exist/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for inherited-scope-doc-names-may-not-exist

Your own site · 80×15
<a href="https://agentmods.dev/skills/wan-huiyan/agent-traffic-control/inherited-scope-doc-names-may-not-exist"><img src="https://agentmods.dev/badge/skills/wan-huiyan/agent-traffic-control/inherited-scope-doc-names-may-not-exist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,142 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00072 $0.03142
Opus 5 $0.00036 $0.01571
Sonnet 5 $0.00014 $0.00628
Haiku 4.5 $0.00007 $0.00314

Measured 12d ago against content hash 2d08317440ea, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

inherited-scope-doc-names-may-not-exist 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 12d 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.

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.

plugins/agent-traffic-control/skills/inherited-scope-doc-names-may-not-exist/SKILL.md · 278 lines

How it starts

The opening of the file, as written. The whole thing — 278 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pre-Dispatch Schema Probe

Problem

Scope docs and plan docs authored by predecessor sessions routinely cite specific BigQuery paths, table names, and column names as if they were verified facts. Often they're not — authors write from memory, from stale schema snapshots, or from hypothetical schemas that never landed. When you mechanically copy those references into 7 parallel agent prompts and fire them against production data, you burn the entire wallclock window discovering the errors one at a time, mid-run.

The failure mode is costly because:

  1. Multi-agent dispatches amplify the blast radius. 1 wrong table path × 7 agents × 10 min before each tap-out = 70 agent-minutes of wasted compute before anyone notices.
  2. Predecessor scope docs carry authority. A scope doc that went through multiple review rounds, PR approvals, and handoff sessions LOOKS authoritative. No one re-checks the dataset paths because "surely someone already did."
  3. Plausible-wrong > obviously-wrong. target_2025 looks like exactly the kind of column name a training-features table would have. analytics.predictions_daily.predictions_daily looks like a sensible namespaced path. Both are wrong. Obviously-wrong paths (typos) fail loudly; plausible-wrong paths fail slowly inside agents.
  4. Column-name prefixes are assumed. Predecessor sessions often describe engagement columns as "the evt_* family" or "the engagement_* columns" when the actual warehouse naming has no prefix at all (e.g., page_visit_8_30d, login_1d).
  5. The fix is cheap but the miss is expensive. A 5-minute bq ls + INFORMATION_SCHEMA.COLUMNS probe costs <$1 and surfaces 100% of path/name errors before firing. Skipping it costs a full overnight window.

Context / Trigger Conditions

Use this skill when ALL of:

  • You're about to dispatch ≥2 parallel agents, Cloud Run jobs, scheduled triggers, or long-running Python scripts that query a data warehouse.
  • The prompts / SQL / Python are being generated from a scope doc, plan doc, or handoff document authored in a prior session (not freshly inspected by you).
  • The dispatch wallclock is measured in hours (not minutes) — i.e., the cost of mid-run failure is not trivial.

Read the full file on GitHub · 278 lines

Changes

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.

  1. 12d ago First seen · 278 lines · 72 tokens per session scan A 2d08317440ea

Subscribe to this mod's changes

inherited-scope-doc-names-may-not-exist is a skill published in the GitHub repository wan-huiyan/agent-traffic-control (3 stars, last pushed yesterday), licensed MIT. It adds 72 tokens to every session and 3,142 once invoked, about $0.0004 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-31.