← ClaudeAtlas

brainstormlisted

Explores a codebase, researches the problem space, and produces an approved design specification before any code is written. Use when the user wants to create a new feature, add significant functionality, redesign a subsystem, or build something that touches multiple parts of the project.
greglas75/zuvo · ★ 6 · Code & Development · score 78
Install: claude install-skill greglas75/zuvo
# zuvo:brainstorm Understand the problem thoroughly. Design a solution collaboratively. Write a spec. Get approval. Only then does anything get built. ## Hard Gate **Do NOT write implementation code.** This skill produces a design specification document. Implementation happens later via `zuvo:plan` and `zuvo:execute`. If the user asks to "just start coding" during brainstorm, explain that the spec must be approved first — skipping design leads to rework. ## Mandatory File Loading ### Phase 0 — Bootstrap (load before any work) Include paths resolve relative to THIS SKILL.md's directory (not CWD): a `../../shared/includes/` reference means `<plugin-root>/shared/includes/` — never resolve it against the project being worked on. 1. `../../shared/includes/codesift-setup.md` -- CodeSift discovery and initialization 2. `../../shared/includes/env-compat.md` -- Agent dispatch patterns per environment 3. `../../shared/includes/acceptance-proof-protocol.md` -- Per-AC proof contract for plan/execute 4. `../../shared/includes/provided-artifact-supremacy.md` -- Design-artifact supremacy (the Provided-Design Check runs BEFORE Phase 1, so this is Phase-0 mandatory, not deferred) ### Deferred — Load when needed (NOT at startup) 5. `../../rules/cq-patterns.md` -- Load at Phase 3 (design decisions), NOT at Phase 0 6. `../../shared/includes/run-logger.md` -- Load at completion only 7. `../../shared/includes/retrospective.md` -- Load at completion only Print the checklist: ``` CORE FIL