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/adamayoung/tmdb/implement-plannpx skills add adamayoung/TMDb --skill implement-plangit clone --depth 1 https://github.com/adamayoung/TMDbWrote 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/skills/adamayoung/tmdb/implement-plan)<a href="https://agentmods.dev/skills/adamayoung/tmdb/implement-plan"><img src="https://agentmods.dev/badge/skills/adamayoung/tmdb/implement-plan.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 | $0.00081 | $0.04409 |
| Opus 5 | $0.00041 | $0.02204 |
| Sonnet 5 | $0.00016 | $0.00882 |
| Haiku 4.5 | $0.00008 | $0.00441 |
Grade A, and why
implement-plan 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.
How it starts
The opening of the file, as written. The whole thing — 327 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Implement Plan
Turn the current plan into working, tested code — strictly test-first. This
skill is the wrapper that ties three things together: the plan (what to build),
the canon-tdd skill (how to build it), and a single finishing condition —
the test list is empty (when to stop). It does not invent its own TDD rules;
it delegates the discipline to canon-tdd and adds plan-awareness, the finishing
goal, and the project's specialist skills.
Red-Green-Refactor is the engine. The test list is the steering wheel. This skill keeps the wheel on screen and drives until the list is empty.
Agent Behaviour Contract
These are non-negotiable. Do them by default, without being reminded.
- Canon TDD is mandatory — invoke the
canon-tddskill. No production code before a failing test. One test at a time. Refactor only on green. This skill exists to enforce that loop against the plan; do not freelance an implementation-first approach. - Show the test list before any code — and every time it changes. Print the Canon TDD test list as a checklist before the first edit, and re-print it whenever you add, remove, reword, or check off an item (see Keep the test list visible).
- The finishing condition is an empty test list. "Done" means every item on
the list has a written, passing test and the full suite is green — nothing
less. Pair this with the
/goalcommand for autonomous cross-turn iteration (see Set the finishing goal). Exactly three kinds of item are exempt, becausecanon-tddputs them on the list and no test can assert them: the///doc comment, the DocC catalog entry, and theREADME.mdupdate. They are done whenmake build-docspasses and the README is in sync — not when a test covers them. Nothing else is exempt; don't reclassify a behavioural item into this set. - Reach for the right specialist skill. Use
swift-testing-expertwhen writing/structuring tests andswift-concurrencyfor anything touching tasks, actors,@MainActor,Sendable, or data races — don't hand-roll what those skills know. - Document every public declaration — no exceptions. Documenting it is part
of "make it pass". Every public protocol, class, struct, enum, actor, model,
property, initializer, method, subscript, and typealias you add or change MUST
carry an accurate
///doc comment, and the DocC catalog must stay in sync (see Document every public declaration). This is mandatory, not optional —make build-docsruns warnings-as-errors, so an undocumented public symbol is a build failure. - Expect Swift files to change after you write them. A PostToolUse hook runs
swiftlint --fix+swiftformaton every.swiftfile you Edit/Write, so the on-disk content can differ from what you wrote (see The lint/format hook). - Commit at logical checkpoints — always green. Like a human engineer, commit when a cohesive increment is complete and the code is in a good state, and never commit a red or half-finished tree (see Commit at logical points). This keeps the work committed as you go, so a downstream review sees real history rather than an empty diff.
- Finish with the completion checklist. Before declaring done, run
/testand/integration-test— both REQUIRED to pass perCLAUDE.md— plus/lint, andmake build-docswhenever public API changed.
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 · 327 lines · 81 tokens per session scan A 461fd07112b8
implement-plan is a skill published in the GitHub repository adamayoung/TMDb (177 stars, last pushed 4d ago), licensed Apache-2.0. It adds 81 tokens to every session and 4,409 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-30.
Other skills, from other repositories
Swift Patterns
Use this skill when working on Swift projects (SwiftPM packages, iOS/macOS apps) and you want consistent patterns for concurrency, structure, and safety.
using-xtool
This skill should be used when building iOS apps with xtool (Xcode-free iOS development), creating xtool projects, adding app extensions, or configuring xtool.yml. Triggers on "xtool", "SwiftPM iOS", "iOS on Linux", "iOS on Windows", "Xcode-free", "app extension", "widget extension", "share extension". Covers project…
openspec-explore
Enter explore mode - a thinking partner for exploring ideas, investigating problems, and clarifying requirements. Use when the user wants to think through something before or during a change.
openspec-apply-change
Implement tasks from an OpenSpec change. Use when the user wants to start implementing, continue implementation, or work through tasks.
openspec-archive-change
Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete.
openspec-propose
Propose a new change with all artifacts generated in one step. Use when the user wants to quickly describe what they want to build and get a complete proposal with design, specs, and tasks ready for implementation.