Borrowing it
Nothing to install: this file belongs to w00fx/spec-anchored-agentic-development. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/w00fx/spec-anchored-agentic-development/main/.agents/skills/prep/SKILL.mdgit clone --depth 1 https://github.com/w00fx/spec-anchored-agentic-developmentWrote 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/w00fx/spec-anchored-agentic-development/prep)<a href="https://agentmods.dev/skills/w00fx/spec-anchored-agentic-development/prep"><img src="https://agentmods.dev/badge/skills/w00fx/spec-anchored-agentic-development/prep.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.00090 | $0.02547 |
| Opus 5 | $0.00045 | $0.01273 |
| Sonnet 5 | $0.00018 | $0.00509 |
| Haiku 4.5 | $0.00009 | $0.00255 |
Grade A, and why
prep 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 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.
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 — 188 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Prepare this repository so the implementation Owner, General Code Reviewer, Mutation Hardener, external review pipeline, and CI have the verification infrastructure they expect. Additive and brownfield-safe: read before writing, extend instead of replacing, flag anything you had to work around. No application code changes.
Phase 0 — Detect
Identify: stacks present (TypeScript? Go? both?), layout (monorepo? capability folders?), existing test runners and configs, existing Makefile / package scripts / justfile, existing CI workflows, current coverage if measurable. Report the findings in one short block before changing anything.
Phase 1 — The commands interface (the contract)
The harness learns how to verify from a three-command core plus two conditional hardening command families. The tool is free (Make, just, npm scripts — follow repo convention); the interface is fixed:
check— lint + typecheck + tests, whole repo.check-<capability>— the same, scoped to one capability folder (the chunk loop's command; a pattern — one target per capability).golden— the reference-value tests only, readingspecs/<capability>/tables/.mutation-<capability>— pinned, differential mutation for one eligible capability/target, with structured coverage and survivor output.fuzz-<capability>— property/fuzz targets for applicable parsers, validators, untrusted-input, serialization, protocol, and state-machine surfaces; the command may explicitly report N/A when no target applies.
Create or extend them. Then declare them in the root AGENTS.md under
## Commands. If a runtime needs an adapter such as CLAUDE.md, configure it
separately; never create a competing operational authority.
Also preserve the shared Spec Anchored routing in AGENTS.md and ensure
.agent-runs/ is present in .gitignore. Runtime logs, approvals, evidence,
hardening handoffs, Owner dispositions, and results never live under
.claude/, .codex/, or .cursor/.
What ships with it
1 file 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.
- 2d ago First seen · 188 lines · 90 tokens per session scan A faf3664aad5b
prep is a skill published in the GitHub repository w00fx/spec-anchored-agentic-development (5 stars, last pushed 4d ago), licensed MIT. It adds 90 tokens to every session and 2,547 once invoked, about $0.0005 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-09-05.
Other skills, from other repositories
post-deploy-verifier
Senior reliability engineer producing a per-slice post-deploy verification plan mapping each acceptance criterion to a concrete live signal (exact log query, dashboard panel, smoke-test walkthrough, flag check, DB invariant query) plus negative checks and rollback trigger checklist. Activates when TASKSTATE.md ##…
Micro
Write all micro specs for one group — fully self-contained implementation units, plus the group's simulation scenarios and human-testing checklist.
tdd
Use this when the user asks for a new pure function, business-logic module, calculator, validator, or anything where input→output is well-defined and easily testable. Drives Red-Green-Refactor instead of writing untested code. Skip for UI components, throwaway scripts, and config changes.
Verification & Quality Assurance
Comprehensive truth scoring, code quality verification, and automatic rollback system with 0.95 accuracy threshold for ensuring high-quality agent outputs and codebase reliability.
ci
Configure Ginkgo for continuous integration — the recommended CLI flag set and the rationale for each flag (-r -p --randomize-all --randomize-suites --fail-on-pending --fail-on-empty --keep-going --cover --race --trace --json-report --timeout --poll-progress-after/-interval), invoking via go run to pin the CLI to…
gsd-eval-review
Audit an executed AI phase's evaluation coverage and produce an EVAL-REVIEW.md remediation plan.