From code
Conversational design workshop that interviews the user one question at a time, explores 2-3 approaches with trade-offs, and presents the design section by section for approval before writing the spec. Useful for feature design, refactoring, or complex bugs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/code:spec-brainstorm <topic or feature description><topic or feature description>The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Conversational design workshop that produces a focused, reviewed spec.
Conversational design workshop that produces a focused, reviewed spec.
One question at a time. Multiple approaches explored. Design approved in sections. Ruthless scope control. No implementation until design is approved.
docs/specs/YYYY-MM-DD-<feature>/
└── design.md ← This skill's output
Requirements are inline — no separate requirements.json needed.
These principles apply to every spec, every time.
Every project goes through this process. No exceptions. The five-minute conversation often reveals assumptions that would cost hours in implementation. If it's truly trivial, the spec will be short — but it still gets written.
Break the system into units with one clear purpose each. Well-defined interfaces between them. Each unit independently understandable and independently testable. If you can't explain a unit's job in one sentence, it's doing too much.
Explore the current structure first. Follow existing patterns. Targeted improvements only. No unrelated refactoring. Understand why things are the way they are before proposing changes.
If the request describes multiple independent subsystems, flag it immediately. Decompose into sub-projects before diving into details. Each sub-project gets its own spec and its own plan. A spec that tries to cover three subsystems helps no one.
Remove unnecessary features from all designs. If a capability isn't needed for the first user story, it doesn't go in the spec. Every feature is a cost — to build, to test, to maintain, to understand later. Push back on scope creep during discovery.
Before diving in, understand where you are.
docs/specs/ for previous work. What domain model
exists? What patterns are established? What has been built before?This is silent — don't narrate it. Let the context inform where you focus.
Ask questions to understand what to build. Skip this step if requirements are already clear from context (existing specs, human provided details, etc.).
Ask one question at a time. Multiple choice preferred when possible — give 2-4 concrete options rather than open-ended prompts. Keep the conversation moving.
Good: "Should this be real-time or batch-processed? (a) Real-time via WebSocket, (b) Periodic polling every 30s, (c) On-demand when user requests it."
Bad: "How should the data synchronization work?"
Before asking any detail questions, assess scope. If the request describes multiple independent subsystems (e.g., "build a notification system with email, SMS, push, and an admin dashboard"):
Do not try to spec everything in one document.
During discovery, push back on scope:
If the human insists, include it — but flag the trade-off in the spec.
Adapt these to context. Not all are needed every time.
If you already know answers from orientation, confirm rather than ask.
Tell the human: "Based on my research, here's my understanding of what we're building. Does this look right?"
STOP. Wait for human confirmation.
Read the relevant codebase deeply. Not signatures — implementations, edge cases, error handling, data flows. Trace callers and callees. Read tests to understand expected behaviour.
Write findings directly into the spec as the foundation.
Tell the human: "I've written the research section of the spec. Ready for you to review before I continue with the design."
STOP. Wait for human review.
Design happens in three phases: explore approaches, present the design in sections, then write the spec file.
Before settling on a design, present 2-3 approaches with trade-offs.
For each approach, address:
Lead with your recommended option and explain why it wins.
Example:
Approach A: Single table with JSON columns
- Simple schema, fast to implement
- Querying inside JSON is limited, migration pain later
- Complexity: Low
Approach B: Normalized relational tables
- Clean queries, easy to evolve schema
- More joins, more migration files, more code
- Complexity: Medium
Recommendation: Approach B — the query flexibility matters more here than implementation speed.
Get explicit approval on the chosen approach before presenting the design.
Tell the human: "Which approach should we go with? Or should I explore a different direction?"
STOP. Wait for human to choose an approach.
Present the design in batches. Get approval after each batch before continuing.
Sections already confirmed in earlier steps (Problem, Scope, Constraints, Context) are written into the spec from those confirmations — do not re-present them.
Batch A: User Stories — the contract you're designing against. Formal stories with acceptance criteria and priorities. If rejected: revise. If the rejection reveals a scope misunderstanding, loop back to Discovery (Step 2).
Batch B: Architecture — component design, domain modeling, and layer
boundaries. Use python-architecture or typescript-api-design as relevant to
your stack. Then present: component structure, domain model, where business
logic lives, where IO lives. If rejected: revise. If the rejection undermines
the chosen approach, offer to return to approach exploration (4a). If it
reveals a fundamental gap, loop back to Research (Step 3). If the detail reveals
the work is far more complex than estimated, say so and offer to revisit the
approach.
Batch C: API Design + Data Model — contracts derived from the approved architecture. Skip sections that don't apply, but say so explicitly ("No API changes — moving to Trade-offs"). Never skip silently. If rejected: revise. If the rejection implicates the architecture, go back to Batch B.
Batch D: Trade-offs + Open Questions — alternatives considered, why this approach wins, known limitations, anything unresolved. Usually revisable inline.
Each batch ends with:
Tell the human: "Does this look right?"
STOP. Wait for approval before continuing.
If you loop twice on the same batch, stop and ask:
"We've looped on [batch] twice. Should we reconsider the approach?"
Terminology discipline: while drafting batches, challenge terms against
CONTEXT.md and update it inline as terms resolve, using the oracle-domain-modelling
skill. If domain confusion runs deep, suggest pausing for oracle-grill-me before continuing.
Once all batches are approved, write the full spec document.
# Feature Name
## Problem
- What problem are we solving
- Who has this problem
- How they solve it today
## Scope
- **In scope:** [specific capabilities]
- **Out of scope:** [explicitly deferred]
## User Stories
- US-1: As a [role], I want [action], so that [benefit]
- Given X, when Y, then Z
- Priority: must/should/could
## Constraints
- [Technical or business constraints]
## Context
- What exists today, how it works end-to-end
- Existing patterns and conventions
- Dependencies and integration points
- Gotchas, assumptions, technical debt
## Architecture
- Component structure (functional core / effectful edge)
- Domain model: entities, value objects, aggregates
- Where business logic lives, where IO lives
## API Design
- Endpoints, request/response contracts
- Error handling approach
- Event contracts (published/consumed)
## Data Model
- Schema design, access patterns
- Migrations needed
## Trade-offs
- Alternatives considered
- Why this approach wins
- Known limitations
## Open Questions
- Anything unresolved needing human input
Scale each section to complexity — a few sentences if straightforward, detailed if nuanced.
If the human provides reference code — from open source, from elsewhere in the codebase — use it as a concrete guide. Working from a reference produces dramatically better designs.
After writing the file, check it with fresh eyes:
Substance rule: if a fix changes the substance of an approved section, re-present that section for approval. Wording and consistency fixes go inline — note them at handoff.
Tell the human:
"Spec written to
docs/specs/<path>. Every section was approved during our conversation — review it if you'd like, or we can go straight to the implementation plan. Ready for spec-plan?"
If the human requests changes — in conversation or by annotating the file — address every note, update the spec, and re-run the self-review. If a change alters the substance of an approved section, re-present that section for approval before continuing.
The next step is spec-plan. Do not start planning without the human's go-ahead. Do not write code.
If planning reveals design flaws, loop back to research. See spec-orchestrator for iteration patterns.
npx claudepluginhub martinffx/atelier --plugin pythonGuides a structured conversation to turn vague ideas into concrete feature specs with built-in expert review. One question at a time, asks informed questions about your codebase.
Collaboratively brainstorms architecture, patterns, and trade-offs to produce a design document. Activates on 'design this', 'create a design', 'brainstorm approaches', or 'write a design doc'.
Guides interactive spec generation: turns rough ideas into structured specifications with R-numbered requirements and acceptance criteria via Q&A and approach proposals.