architecture-review
Reviews a technical proposal before implementation. Use for designs, RFCs, ADRs, architecture proposals, and issues that define how a system change should…
Turns an approved design or decided brief into ordered tasks for separate agent runs. Use for implementation tasks, tracker tickets, or useful milestones. Do not use for one coding task or its short execution outline.
$ npx -y skills add owainlewis/blueprint --skill plan --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/planContext preview
The summary Claude sees to decide when to auto-load this skill.
Turns an approved design or decided brief into ordered tasks for separate agent runs. Use for implementation tasks, tracker tickets, or useful milestones. Do not use for one coding task or its short execution outline.
name: plan description: "Turns an approved design or decided brief into ordered tasks for separate agent runs. Use for implementation tasks, tracker tickets, or useful milestones. Do not use for one coding task or its short execution outline." user-invocable: true argument-hint: "<design, brief, issue, or request>"
Create tasks that a new agent can finish without making product or technical decisions. Split work by working result, not by file, layer, or team boundary.
1. Read the source, repository instructions, and relevant code. 2. Stop and return to design if an unresolved choice would change behavior, interfaces, data, security, scale, performance, compatibility, operations, cost, or proof. 3. Split the work into tasks that each deliver working behavior, fit one agent run, and produce one focused pull request. 4. Keep shared contracts in one task. Do not make two tasks answer the same question independently. 5. Separate refactoring when it would hide a behavior change. 6. Order tasks by dependency. Add a milestone only when it creates a useful delivery or review boundary. 7. Return the plan in chat. Create tracker tickets only when the user asks. Never write a plan document. 8. Stop after planning. Do not implement.
Each task is read by a human and executed by an agent.
The first sections must let a human understand the task in under a minute. State the concrete problem, the result, and why it matters in everyday words. Do not use requirement IDs, implementation details, undefined project terms, or acronyms unfamiliar to the intended readers there.
Put task-specific decisions, interfaces, failure rules, and security constraints in Agent notes. Link the design or decided source for shared architecture and full requirement definitions. Use a repository path or URL that will resolve from the published ticket, and pin the decided version when later edits could change the contract. If no durable source exists, include the required shared decisions in Agent notes. Do not copy the whole source into every ticket.
A task stands alone when its purpose, boundary, dependencies, non-negotiable decisions, and proof are clear. It does not need to repeat background that the linked source already explains.
Use this compact shape. Omit optional sections that add no information.
## <Plain action and result> ### What are we building? In one to three short sentences, say what is wrong or missing and what will work after this task. ### Why? In one or two short sentences, explain the practical value to a user, operator, or developer. ### Done when - Three to seven observable results. ### How to check Exact commands and required manual checks. ### Agent notes - Depends on: <task titles, or None> - Source: <durable design, brief, issue, or request path/URL, pinned when needed> - Only the definitions, decisions, constraints, and failure behavior specific to this task. ### Out of scope - Related work this task is likely to absorb by mistake.
Before returning the plan, read each task twice:
1. Human pass: can someone explain what will change and why after reading only the title and first two sections? 2. Agent pass: can a fresh agent find the source, identify dependencies and fixed decisions, implement the task, and prove it without asking a product or architecture question?
Delete repeated background after both passes succeed.
Return the ordered tasks, their dependencies, and any decision that still blocks implementation. Do not add a separate summary that repeats the tasks.
Design. Plan. Build. Validate. Blueprint gives coding agents ten focused skills. They cover understanding existing code, deciding what to build, and delivering reviewed pull requests.
Reviews a technical proposal before implementation. Use for designs, RFCs, ADRs, architecture proposals, and issues that define how a system change should…
Creates or updates root ARCHITECTURE.md from verified implementation. Use when a repository needs current architecture documentation or a structural change…
Coordinates a large batch of GitHub issues through separate Codex worker threads, tested pull requests, review loops, and gated merges. Use when the user asks…
Writes a proposed design covering requirements, user experience, technical choices, and proof. Use when important product or technical choices must be settled…
Generates a polished, static HTML reading view from an existing Markdown PRD or technical design. Use when a user asks to render, present, visualize, or make a…
Makes existing code easier to understand without changing behavior. Use to simplify structure, remove duplication or dead code, improve names, or remove…