Variables:
<PlanPath>: primary plan, findings doc, or latest investigation artifact. Default: latest relevant session artifact.
<OutputPath>: optional output path for the design artifact. Default: adjacent to <PlanPath>.
<Topic>: optional feature or subsystem under review. Default: inferred from <PlanPath>.
Create or update an implementation design based on <PlanPath> for <Topic>.
This skill is for implementation-oriented design review, not broad product ideation and not a backlog decomposition pass.
Objectives
- Read and understand the latest plan, findings, and relevant source materials.
- Identify the main design decision(s) that still matter for implementation.
- Develop at least 2 viable approaches grounded in the current repository and constraints.
- Compare the approaches across implementation complexity, consistency with existing architecture, operational risk, testing impact, migration cost, and long-term maintainability.
- Recommend one approach with a clear rationale.
- Spawn 3 parallel critique subagents from different model families.
- Reconcile the critique feedback carefully, separating valid findings from weak or conflicting feedback.
- Revise the original design using only relevant, valid, non-contradictory improvements.
- Produce a final design artifact plus a concise review log showing what changed and why.
Core principles
- Ground the design in the current codebase, docs, and latest findings.
- Make sure to research online, industry standard and best practices or prior art.
- Explore multiple viable approaches before converging.
- Prefer approaches aligned with existing architecture and repository conventions unless there is a strong reason to change course.
- Be explicit about tradeoffs.
- Treat critique as adversarial input, not truth.
- Do not accept feedback just because multiple models said it.
- Preserve useful parts of the original design when critique does not invalidate them.
- Optimize for implementation clarity, not theoretical elegance.
Operating rules
- Inspect the current plan/findings first before proposing approaches.
- If the repository already constrains the solution direction, treat that as a real constraint.
- Compare at least 2 viable approaches. You may include more if they are meaningfully distinct.
- Do not include fake alternatives that are obviously inferior just to satisfy the comparison requirement.
- For each approach, analyze:
- fit with current architecture
- implementation scope
- migration or rollout impact
- testing strategy implications
- operational risk
- developer ergonomics
- future extensibility
- Recommend exactly one approach unless the evidence is genuinely insufficient.
- Keep the initial design draft concise but implementation-oriented before sending it to critique.
Required initial design structure
Produce an initial design with these sections:
Context
- what problem is being solved
- what inputs were reviewed
- relevant constraints
Current state
- what exists today
- what is already decided
- what remains to be decided
Approach options
- at least 2 viable approaches
- architecture sketch for each
- pros, cons, and risks for each
Recommendation
- chosen approach
- why it wins
- why the alternatives were rejected
Implementation shape
- affected subsystems / files / layers
- data flow and API impact
- migration / rollout / testing implications
Known risks / open questions
- only unresolved items that materially affect implementation
Parallel critique phase
After the initial design draft is complete, spawn exactly 3 parallel critique subagents.
Use the strongest available model from each family in the current session, preferring:
- OpenAI: GPT-5.4 or better available GPT-5.x reasoning/coding model
- Anthropic: Claude Opus 4.6 or better available Claude-family reasoning model
- Google: Gemini 3 Pro or better available Gemini-family reasoning model
If a named model is unavailable, use the strongest available model in that family and record the substitution.
Each critique subagent must:
- review the draft independently
- challenge assumptions
- look for architectural inconsistencies
- identify missing edge cases
- identify testing, migration, and rollout weaknesses
- call out over-engineering or unjustified complexity
- suggest concrete improvements
- avoid rewriting the design from scratch unless fundamentally flawed
Each critique subagent must return feedback in this structure:
- Top concerns
- Potential design flaws
- Missing considerations
- Over-engineering / unnecessary complexity
- Suggested changes
- Confidence and uncertainty
Critique reconciliation rules
After all 3 critiques return:
- Consolidate all feedback into a single review matrix.
- Group overlapping feedback together.
- Mark each item as:
- accepted
- partially accepted
- rejected
- unresolved
- For each item, explain why.
- Prefer feedback that is:
- grounded in the repository or stated constraints
- specific and actionable
- consistent with the implementation goal
- Reject feedback that is:
- generic
- speculative without evidence
- contradictory to known constraints
- pushing unnecessary abstraction or redesign
- Do not bias toward majority vote alone.
- If critiques conflict, resolve the conflict explicitly.
Revision phase
Revise the original design by applying accepted and partially accepted feedback.
The revised design must:
- preserve the original recommendation unless critique genuinely changes the conclusion
- integrate valid improvements cleanly
- remove ambiguities uncovered during critique
- remain implementation-oriented and concise
- be stronger than the original draft, not just longer
Required final output
Produce:
- Final revised design
- Critique summary
- which models were used
- any substitutions
- Feedback reconciliation log
- accepted / partially accepted / rejected / unresolved items
- brief rationale for each
- Delta summary
- what changed from the original draft
- why those changes improved the design
- Residual open questions
- only items that still need human input or deeper investigation
Quality bar
- Do not recommend an approach without comparing real alternatives.
- Do not pretend alternatives are viable if they clearly are not.
- Do not accept critique blindly.
- Do not inflate the design with generic best-practice prose.
- Do not produce a backlog; produce a design strong enough to later decompose into backlog work.
- The final artifact should be executable by engineers without needing the chat history.
1---2name: design3description: Produces a grounded implementation design by comparing viable approaches, recommending one, running parallel multi-model critique, reconciling feedback, and revising the design.4---56Variables:7- `<PlanPath>`: primary plan, findings doc, or latest investigation artifact. Default: latest relevant session artifact.8- `<OutputPath>`: optional output path for the design artifact. Default: adjacent to `<PlanPath>`.9- `<Topic>`: optional feature or subsystem under review. Default: inferred from `<PlanPath>`.1011Create or update an implementation design based on `<PlanPath>` for `<Topic>`.1213This skill is for implementation-oriented design review, not broad product ideation and not a backlog decomposition pass.1415## Objectives16171. Read and understand the latest plan, findings, and relevant source materials.182. Identify the main design decision(s) that still matter for implementation.193. Develop at least 2 viable approaches grounded in the current repository and constraints.204. Compare the approaches across implementation complexity, consistency with existing architecture, operational risk, testing impact, migration cost, and long-term maintainability.215. Recommend one approach with a clear rationale.226. Spawn 3 parallel critique subagents from different model families.237. Reconcile the critique feedback carefully, separating valid findings from weak or conflicting feedback.248. Revise the original design using only relevant, valid, non-contradictory improvements.259. Produce a final design artifact plus a concise review log showing what changed and why.2627## Core principles28291. Ground the design in the current codebase, docs, and latest findings.302. Make sure to research online, industry standard and best practices or prior art.313. Explore multiple viable approaches before converging.324. Prefer approaches aligned with existing architecture and repository conventions unless there is a strong reason to change course.335. Be explicit about tradeoffs.346. Treat critique as adversarial input, not truth.357. Do not accept feedback just because multiple models said it.368. Preserve useful parts of the original design when critique does not invalidate them.379. Optimize for implementation clarity, not theoretical elegance.3839## Operating rules40411. Inspect the current plan/findings first before proposing approaches.422. If the repository already constrains the solution direction, treat that as a real constraint.433. Compare at least 2 viable approaches. You may include more if they are meaningfully distinct.444. Do not include fake alternatives that are obviously inferior just to satisfy the comparison requirement.455. For each approach, analyze:46 - fit with current architecture47 - implementation scope48 - migration or rollout impact49 - testing strategy implications50 - operational risk51 - developer ergonomics52 - future extensibility536. Recommend exactly one approach unless the evidence is genuinely insufficient.547. Keep the initial design draft concise but implementation-oriented before sending it to critique.5556## Required initial design structure5758Produce an initial design with these sections:59601. **Context**61 - what problem is being solved62 - what inputs were reviewed63 - relevant constraints64652. **Current state**66 - what exists today67 - what is already decided68 - what remains to be decided69703. **Approach options**71 - at least 2 viable approaches72 - architecture sketch for each73 - pros, cons, and risks for each74754. **Recommendation**76 - chosen approach77 - why it wins78 - why the alternatives were rejected79805. **Implementation shape**81 - affected subsystems / files / layers82 - data flow and API impact83 - migration / rollout / testing implications84856. **Known risks / open questions**86 - only unresolved items that materially affect implementation8788## Parallel critique phase8990After the initial design draft is complete, spawn exactly 3 parallel critique subagents.9192Use the strongest available model from each family in the current session, preferring:93- OpenAI: GPT-5.4 or better available GPT-5.x reasoning/coding model94- Anthropic: Claude Opus 4.6 or better available Claude-family reasoning model95- Google: Gemini 3 Pro or better available Gemini-family reasoning model9697If a named model is unavailable, use the strongest available model in that family and record the substitution.9899Each critique subagent must:100- review the draft independently101- challenge assumptions102- look for architectural inconsistencies103- identify missing edge cases104- identify testing, migration, and rollout weaknesses105- call out over-engineering or unjustified complexity106- suggest concrete improvements107- avoid rewriting the design from scratch unless fundamentally flawed108109Each critique subagent must return feedback in this structure:1101111. **Top concerns**1122. **Potential design flaws**1133. **Missing considerations**1144. **Over-engineering / unnecessary complexity**1155. **Suggested changes**1166. **Confidence and uncertainty**117118## Critique reconciliation rules119120After all 3 critiques return:1211221. Consolidate all feedback into a single review matrix.1232. Group overlapping feedback together.1243. Mark each item as:125 - accepted126 - partially accepted127 - rejected128 - unresolved1294. For each item, explain why.1305. Prefer feedback that is:131 - grounded in the repository or stated constraints132 - specific and actionable133 - consistent with the implementation goal1346. Reject feedback that is:135 - generic136 - speculative without evidence137 - contradictory to known constraints138 - pushing unnecessary abstraction or redesign1397. Do not bias toward majority vote alone.1408. If critiques conflict, resolve the conflict explicitly.141142## Revision phase143144Revise the original design by applying accepted and partially accepted feedback.145146The revised design must:147- preserve the original recommendation unless critique genuinely changes the conclusion148- integrate valid improvements cleanly149- remove ambiguities uncovered during critique150- remain implementation-oriented and concise151- be stronger than the original draft, not just longer152153## Required final output154155Produce:1561571. **Final revised design**1582. **Critique summary**159 - which models were used160 - any substitutions1613. **Feedback reconciliation log**162 - accepted / partially accepted / rejected / unresolved items163 - brief rationale for each1644. **Delta summary**165 - what changed from the original draft166 - why those changes improved the design1675. **Residual open questions**168 - only items that still need human input or deeper investigation169170## Quality bar171172- Do not recommend an approach without comparing real alternatives.173- Do not pretend alternatives are viable if they clearly are not.174- Do not accept critique blindly.175- Do not inflate the design with generic best-practice prose.176- Do not produce a backlog; produce a design strong enough to later decompose into backlog work.177- The final artifact should be executable by engineers without needing the chat history.