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/alanvaa06/forge-master/plan-designnpx skills add alanvaa06/forge-master --skill plan-designgit clone --depth 1 https://github.com/alanvaa06/forge-masterWhat 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.00109 | $0.02581 |
| Opus 5 | $0.00055 | $0.01290 |
| Sonnet 5 | $0.00022 | $0.00516 |
| Haiku 4.5 | $0.00011 | $0.00258 |
Grade A, and why
plan-design 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 — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.
plan-design — PRD to Execution Contract (Human Gate 2)
Produce docs/forge/plans/plan-NNN.md from docs/forge/prd/NNN-name.md. After approval this file is the FROZEN execution contract — run asks nothing.
Step 1 — Load inputs
-
Read the target PRD
docs/forge/prd/NNN-name.md(ask which N if ambiguous). -
If
docs/forge/specs/spec-NNN.mdexists (produced byspec-design), read it. Phases then follow its File Map and Interfaces,notes:cite the spec sections a phase implements, and the spec's Risks inform tagging — a phase touching a listed risk does not startjunior/light. -
If NO spec exists and the PRD looks architecturally non-trivial (new interfaces, data models, multiple components that must agree), ASK the user ONCE before decomposing, as a lettered list (mark one Recommended with a concrete why) — never assume either way:
No spec found, and this PRD looks architecturally non-trivial. Next: a) Run
/forge-master:spec-designfirst — Recommended, new interfaces / data models / components that must agree b) Plan directly — you accept resolving design inline as phases are decomposedThe user picks by replying with a letter. On (a), INVOKE
forge-master:spec-designyourself via the Skill tool rather than asking the user to type it. For a clearly small task, proceed without asking — the spec is optional and subordinate to this plan. -
Read
docs/context/lessons.md. Past escalation lessons ("P-type X tagged light escalated — tag heavy when ") MUST inform your tagging. This is the triage learning loop. -
Read
templates/plan-template.md(from this plugin) as the output skeleton.
Step 2 — Decompose into phases
- Group the PRD's ACs into phases (
P1,P2, ...). Each phase is an independently committable, independently verifiable unit of work. - For each phase set:
- covers: the AC IDs it satisfies.
- depends_on: prerequisite P-ids. The graph MUST be acyclic. It defines what remains executable if a phase blocks.
- tier:
junior(cheap-model subagent, low effort) orsenior(top model, high effort). Start optimistic — junior unless evidence (PRD constraints, a relevant lesson) demands senior. - process:
light(inline implement -> write/run AC tests -> commit; no separate spec or review) orheavy(brief phase spec -> TDD red-green -> independent-subagent code review -> commit). Start light unless complexity/risk warrants heavy. - success: covered ACs green + full repo test suite still passes.
- notes: risks, probable files, the reason for the tier/process choice (cite a lesson if one applied).
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 · 107 lines · 109 tokens per session scan A 3d2f525a1519
plan-design is a skill published in the GitHub repository alanvaa06/forge-master (1 stars, last pushed 1mo ago), licensed MIT. It adds 109 tokens to every session and 2,581 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-08-31.
Other skills, from other repositories
goal-flight
Portable Goal Flight workflow for long-running repo work: planning, dispatch, review, recovery, file-backed resume.
gossipcat
Use when installing or setting up gossipcat multi-agent orchestration (parallel review, consensus, adaptive dispatch) in Claude Code or Cursor. Installs the gossipcat MCP server and hands off to gossipstatus() for all live rules.
code-review
Orchestrates code review by detecting the project language and architecture, then routing to the appropriate specialized review skill (code-review-go, code-review-typescript, code-review-python, code-review-php, code-review-architecture). Falls back to the generic checklist when no specific skill applies. Invoked when…
new-gh-issue-orchestration
Orchestrates a GitHub-issue-driven delivery workflow from issue intake to PR creation using reviewer-first then worker execution. Invoked when the user provides a GitHub issue link/number and asks to start end-to-end delivery.
surge
Use when a user provides a PRD, spec, or detailed requirements document and needs a full project delivered through iterative expert orchestration — multi-round analyze/research/design/implement/QA cycles with convergence detection. NOT for: single-file edits, quick prototypes, simple Q&A, or tasks without a written…
agentic-infrastructure-2026
Build and adopt production AI agent infrastructure in 2026. Covers framework selection (LangGraph, CrewAI, AutoGen, MCP), orchestration patterns, evaluation, observability, memory systems, and tool use. Also covers the SOCIAL dimension: how to sell agent infrastructure internally, change management, measuring ROI…