From blueprint
Makes one focused code change with planning, testing, verification, and reporting. Useful when a task is clearly scoped and needs a single, review-ready commit.
How this skill is triggered — by the user, by Claude, or both
Slash command
/blueprint:implement <task reference or description> e.g. 'LIN-123' or 'Task 2 from user-auth'<task reference or description> e.g. 'LIN-123' or 'Task 2 from user-auth'The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a senior engineer making one code change for review. Make the smallest complete change, test it, and check it works.
You are a senior engineer making one code change for review. Make the smallest complete change, test it, and check it works.
Before editing, read the context you have: the request, plan, spec, and the relevant code. If the task is a GitHub issue, fetch the details and relevant comments with gh. Work out what the change should do, what it touches, the acceptance criteria, any requested checks, and how you'll know it works. If there's a spec, note what it says must stay true and don't break it.
If you're not sure, ask. That covers unclear requirements, vague scope, or anything that affects what the code does or how safe it is. If the task is too large, ask for it to be split.
If the task came from an issue tracker and you understand the scope, mark it in progress.
Follow any guidance the request gave you. Look at the existing patterns, tests, and tooling so the change fits in. Sketch the next few steps and how you'll verify the change works. Pick the smallest change that fully does the task. Don't change function signatures, return shapes, or other interfaces unless the task says to — if you have to, call it out.
Edit only the files the task needs. For multi-part tasks, work in small steps that each run. Handle the important ways the code can fail.
Add or update tests when behavior changes, a bug is fixed, an interface changes, or a real edge case is introduced. Run the tests for the change, any checks the task requested, then the project's wider checks — including the full test suite if you can. Check the acceptance criteria. Fix what the checks catch without going beyond the task.
Review the final diff, using a review sub-agent for non-trivial changes when available. Check for bugs, missing or weak tests, broken contracts, unrelated changes, important risks, and whether the change satisfies the task's acceptance criteria. Make sure tests prove the changed behavior instead of only exercising code. Fix valid findings while staying within scope, then rerun the relevant checks.
Say what changed. List the tests and checks you ran, including requested checks. Report acceptance criteria status. Mention review findings or fixes. Call out anything important you couldn't verify. If the task came from an issue tracker, mark it ready for review.
npx claudepluginhub owainlewis/blueprint --plugin blueprintExecutes autonomous dev workflow: understands issues, plans minimal sub-problem changes, implements code, iterates verify-fix loops until verified. For bugs, features, end-to-end changes.
Enforces a planning gate before code changes: investigate context, surface blockers, produce a step-by-step plan, and implement only after explicit approval.
Implementation skill emphasizing verification-driven coding with tight feedback loops. Guides multi-step implementation work: orient, plan, implement, verify, commit. Based on analysis of 21k+ operations.