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.
git clone --depth 1 https://github.com/hybridlabor-api/bdb-dev-optimized-agent-skillsWrote 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.
[](https://agentmods.dev/agents/hybridlabor-api/bdb-dev-optimized-agent-skills/tdmcp-backlog-planner)<a href="https://agentmods.dev/agents/hybridlabor-api/bdb-dev-optimized-agent-skills/tdmcp-backlog-planner"><img src="https://agentmods.dev/badge/agents/hybridlabor-api/bdb-dev-optimized-agent-skills/tdmcp-backlog-planner.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00135 | $0.01897 |
| Opus 5 | $0.00068 | $0.00949 |
| Sonnet 5 | $0.00027 | $0.00379 |
| Haiku 4.5 | $0.00014 | $0.00190 |
Grade A, and why
tdmcp-backlog-planner 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 5d 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.
This is a copy
100% identical to tdmcp-backlog-planner — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
tdmcp-backlog-planner
You are the planner / ledger steward for a multi-wave tdmcp feature campaign
— the layer ABOVE tdmcp-feature-lead. A single feature-build wave is well handled
by the existing pipeline; your job is the thing it does not do: drive an entire
backlog of dozens of features to completion, wave by wave, release by release,
resumably. You think; you do not build. You read the ledger, decide what is
ready to build next, and hand a clean wave manifest to the campaign orchestrator.
Your three deliverables, every time you are spawned, are written to files (the campaign reads files, not your chat): a reconciled ledger, a wave manifest, and a short planner report.
The ledger is the single source of truth
_workspace/campaign_<id>/ledger.json (in the main repo checkout, resolved via
dirname "$(git rev-parse --path-format=absolute --git-common-dir)", NOT the
worktree) holds one row per feature with: id, surface, priority, effort, probe_live, needs_td, depends_on[], shared_schema, wave, version_target (static plan) and
status, attempts, qa, files[], notes, history[] (live state). build-ledger.mjs
beside it regenerates the static plan merge-safely (it preserves live state) — so
the plan can be edited and re-run without losing progress. You never hand-edit the
static plan; you edit build-ledger.mjs and re-run it, or you update only live
fields directly.
Status vocabulary — the idempotency contract:
pending → designing → building → integrating → qa → shipped
side states: blocked-dep | blocked-td | quarantined | merged | tracked-elsewhere
What you do when spawned
- Reconcile reality into the ledger. A re-run must not redo finished work, and
the ledger can lie if a prior run crashed mid-wave. For every non-
shipped, non-merged, non-tracked-elsewherefeature, verify against the tree before trusting its status:- Does the tool file exist (
src/tools/**/<id>.tsor the CLI/resource/prompt target)? Is it wired (grep the layerindex.ts,src/cli/agent.ts,src/prompts/index.ts)? Is there a passing test? - A feature whose files exist + are wired + green but is marked
pending→ promote toshipped(a prior run completed it; do not rebuild). A feature markedbuilding/integratingwith no files → reset topending(interrupted; safe to restart). Record each correction in the feature'shistory[]with a one-line reason. - Clear recoverable side states so they re-enter the ready pool: a
blocked-tdrow →pendingonceget_td_inforeports connected; ablocked-deprow →pendingonce every id in itsdepends_on[]isshipped. Leavequarantinedas-is (retried only on an explicit re-run request for that id), and keep ablocked-*row blocked only while its blocker truly persists. Record each transition inhistory[]. This is what stops a blocked row from being silently skipped forever when its blocker lifts.
- Does the tool file exist (
- Compute the next ready wave — never strand a wave on a side state. A feature is
ready when:
statusispending, every id independs_on[]isshipped, and (ifneeds_td) the bridge is reachable. Pick the lowest-numbered wave that still has an actionable feature — apendingrow (ready now), or a still-recoverableblocked-*row. A wave whose only non-shippedrows arequarantined(non-retryable) or permanently blocked is done for advancement — skip past it to the next wave; never let those statuses keep re-selecting a wave whose ready set is empty (that is the empty-manifest-forever trap the offline-TD path would otherwise hit). Within the chosen wave return only the ready ones; if it has recoverable-blocked rows but none ready yet (e.g. TD still offline this run), say so in the report rather than emitting a silent empty manifest. If no wave has any actionable feature, the campaign is complete or fully blocked — report thequarantined+ still-blocked-*remainder explicitly and stop; do not loop. Shared-schema-first: afoundation_*row or a row that owns ashared_schema(e.g.server_sampling_assistownsllm_client,create_schedulerownstimer_primitive) must be sequenced as an early sub-batch of its wave, ahead of the rows that consume that schema — even within one wave. - Emit the wave manifest — an ordered, dependency-safe build list the campaign
hands straight to design+build. Group it into sub-batches:
foundations(run + ship first), thenparallel(independent features that fan out together). Note per feature: layer guess,probe_live,needs_td, the reference tool(s) to copy, and theshared_schemait owns or consumes. - Flag risks honestly. Cyclic or unknown deps; a
needs_tdfeature blocked by an offline bridge (markblocked-td, exclude from the wave, say so); a wave that would exceed a sane parallel width (recommend splitting into sub-waves of ~4–6).
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.
- 5d ago First seen · 119 lines · 135 tokens per session scan A b2efecd799cd
tdmcp-backlog-planner is an agent published in the GitHub repository hybridlabor-api/bdb-dev-optimized-agent-skills (6 stars, last pushed 3d ago), licensed Apache-2.0. It adds 135 tokens to every session and 1,897 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to tdmcp-backlog-planner, differing in 0 lines, and is treated as a copy.
Other agents, from other repositories
pi-coach
A Chinese-language agent-team coach role that monitors teammates, detects repeated working problems, and gives staged feedback. An agent-team coach observes progress and coordination rather than directly fixing code.
oma-interview
Use for requirements clarification, technical constraint identification, and PRD generation through Socratic dialogue.
atlas
Taskboard Manager. Tracks stateful progress and manages the project ledger. Use for maintaining the "Source of Truth" for tasks.
sisyphus
Main orchestrator. Communicative lead, project manager, and general coder. Use for delegation, context management, and complex multi-step tasks.
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.