designlisted
Install: claude install-skill muzalee/claude-atelier
This skill is the **pure-design** orchestrator. It runs seven phases in strict order and produces markdown docs only — no code. Everything lands in `.design/<slug>/` and becomes the input to `/build`.
The three-part pipeline:
- `/design` — this skill. Produces docs.
- `/build` — reads the docs and writes the code.
- `/review` — reviews the code against the docs.
## The Sequence
```
1. Grill Me → shared understanding
2. Design Brief → .design/<slug>/DESIGN_BRIEF.md
3. Backend Design → .design/<slug>/BACKEND_DESIGN.md
4. Information Architecture → .design/<slug>/INFORMATION_ARCHITECTURE.md
5. Design Tokens → .design/<slug>/DESIGN_TOKENS.md (spec, not code)
6. Test Plan → .design/<slug>/TEST_PLAN.md
7. Brief to Tasks → .design/<slug>/TASKS.md (includes test cases from phase 6)
```
At the end, every artifact is markdown inside `.design/<slug>/`. Nothing has been implemented. The user then runs `/build`.
## Operating Rules
1. **Open with the map.** Tell the user the seven-phase sequence, name the artifact each phase produces, and ask if any phase should be skipped. Common skips:
- Already have a clear idea → skip grill-me
- Pure-frontend feature with no server work → skip backend-design
- Backend-only service → skip IA + tokens
- Single component, not a full page → skip information-architecture
- Existing project with an established token system → skip design-tokens
- Tri