| name | design-review |
| description | Reviews a game design document for completeness, consistency, implementability, and balance. Run before implementation. |
| argument-hint | [path-to-design-doc] |
| user-invocable | true |
| allowed-tools | Read, Glob, Grep |
When this skill is invoked:
-
Read the design document in full.
-
Check completeness (all sections present):
-
Check consistency:
- No contradictions within the document
- Numbers add up (economy flows, damage ranges)
- References to other systems are accurate
-
Check implementability with our stack:
- Can this be built with Unity 6 + URP?
- Which MCP tools would be needed?
- ScriptableObject data model feasible?
- Performance implications clear?
-
Output:
## Design Review: [Document Name]
### Completeness: [X/8 sections present]
[Missing sections listed]
### Consistency: [CONSISTENT / ISSUES FOUND]
[Contradictions or gaps]
### Implementability: [CLEAR / CONCERNS]
[Technical feasibility with our Unity stack]
### Balance Risks
[Obvious balance concerns]
### Verdict: [APPROVED / NEEDS REVISION / MAJOR REVISION]
### Action Items
1. ...