From workflow
Use when the developer has a rough idea, feature request, or problem that is not yet fully specified, before coding. Refines vague ideas into a clear, agreed design captured in extras/brainstorm/. Optional — skip it when the change is already clear. Triggers: "I want to add…", "what if we…", "I'm thinking about…", unclear scope.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow:brainstormingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Turn a rough idea into a clear, agreed design **before** any code is written. The
Turn a rough idea into a clear, agreed design before any code is written. The
output is one markdown note per idea in extras/brainstorm/, written only after
the developer agrees on the direction. The coding agent then implements that
design directly (see workflow-overview).
Brainstorming is optional. When the idea is already clear and well understood, or the developer says to just do it, skip this skill and implement directly.
extras/manifesto/MANIFESTO.md. The idea must fit
its vision and guidelines.workflow brainstorm new "<title>", then write the
agreed design into the created file: the goal (one sentence), the chosen
approach, key decisions, and what is out of scope.A brainstorm note should let a future reader (or whoever implements it) understand the idea without you present:
# <Title>
## Goal
<one sentence: what success looks like>
## Approach
<the chosen approach and why>
## Key decisions
- ...
## Out of scope
- ...
## Open questions
- ... (only if any remain)
Once the developer has approved the note, implement the design directly (see
How to implement in workflow-overview): respect the manifesto and internals
map, build and verify the change, confirm with the developer, update docs, and
commit. When the note's design is fully implemented and committed, delete it with
workflow brainstorm delete.
npx claudepluginhub dagyu/skills-marketplace --plugin workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.