architecture
Use when reviewing architecture in any codebase — module boundaries, stated design contracts, abstraction depth, error-handling design. Assess by default,…
Explore ambiguous or early-stage ideas interactively — tracks wish-readiness and crystallizes into a design for wish.
$ npx -y skills add automagik-dev/genie --skill brainstorm --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/brainstormContext preview
The summary Claude sees to decide when to auto-load this skill.
Explore ambiguous or early-stage ideas interactively — tracks wish-readiness and crystallizes into a design for wish.
name: brainstorm description: "Explore an ambiguous idea with the user, settle scope and success criteria, and produce an independently reviewed design for wish." category: lifecycle mutates: documents
Use when the problem, approach, or boundaries need decisions. Explore with the user; do not implement. Resume a related draft rather than starting another.
Before the first question, say the classification out loud so the user can override it:
Bounded measures the repository, not your familiarity: with no existing flow to change, the request is architectural. When torn between two paths take the heavier one. The ratchet is one-way — complexity discovered mid-task upgrades the path, and nothing downgrades. The artifact scales with simplicity; the user's approval never does.
Work the design as a tree of decisions, in rounds. The frontier is every decision whose prerequisites are already settled. Each round, put the whole frontier to the user at once, numbered, each with your recommended answer, then wait; a question whose answer depends on another still open belongs to a later round. Answers reshape the tree and push the frontier outward.
Establish the problem and who it affects, scope and exclusions, constraints, risks, and observable success. Inspect relevant project evidence before presenting options and make routine assumptions explicit. Finding facts is this skill's job, never the user's: delegate a read-only `scout` through the runtime's native delegation surface for anything the environment can answer, and let only the questions downstream of it wait. Decisions are the user's: put each one to them. Use a council when a consequential disagreement needs independent perspectives.
Exploration stops when the frontier is empty — every branch visited, nothing silently assumed — and the settled answers are enough to write a testable plan. Record unresolved decisions in `.genie/brainstorms/<slug>/DRAFT.md` so the next session can continue.
Choose the simplest complete design satisfying current user stories. Justify added state, caches, synchronization, configuration, or background work with a present requirement or measurement. Bound current data and separate history before introducing distribution machinery. Name concrete triggers for deferred complexity.
1. Resolve this skill’s directory and copy `references/design-template.md` to `.genie/brainstorms/<slug>/DESIGN.md` when creating a design. Preserve existing work on resume. 2. Fill the problem, scope, approach, decisions, Simplicity Case, risks, and testable criteria. Remove placeholders. 3. Send the exact design to an independent `review` agent. The reviewer returns verdict, identity, UTC time, findings, and `reviewed-sha256` for the content it actually reviewed. This skill bundles `references/design-review-evidence.mjs` for digesting and stamping. 4. The caller passes the reviewer’s digest unchanged to the stamp command:
node "<brainstorm-skill-dir>/references/design-review-evidence.mjs" stamp ".genie/brainstorms/<slug>/DESIGN.md" --verdict SHIP --reviewed-sha256 "<reviewer-returned-sha256>" --reviewer "<reviewer-id>" --reviewed-at "<UTC-time>" node "<brainstorm-skill-dir>/references/design-review-evidence.mjs" verify ".genie/brainstorms/<slug>/DESIGN.md"
Stamp the actual verdict, including FIX-FIRST or BLOCKED; the example shows SHIP. Stamping rejects an edit made after review; changing any reviewed design content invalidates the evidence. Never substitute a locally recomputed digest for the reviewer’s value. Correct blocking findings and obtain fresh review before `wish` consumes the design.
`.genie/INDEX.md` is the single intake index. Reconcile a legacy `.genie/brainstorm.md` idempotently into it when encountered; do not maintain two indexes or duplicate entries.
A design or a score alone never makes an entry Poured. Update only the related entry and preserve unrelated material. Ensure the design, draft, and index accompany the wish in version control; in a shared workspace the coordinator stages them. Return artifact paths, settled decisions, unresolved questions, and next route. Task-board pointers are optional; unavailable tracking does not block the design.
Wishes in, PRs out. CLI agent that interviews you, plans the work, dispatches parallel agents in isolated worktrees, and reviews code before you see it.
Repo: automagik-dev/genie
Use when reviewing architecture in any codebase — module boundaries, stated design contracts, abstraction depth, error-handling design. Assess by default,…
Use when auditing code quality in any codebase — discover and run the repo's real gates (typecheck, lint, dead-code, complexity), judge type discipline and…
Assess a proposal through independent technical, product, risk, and dissenting lenses, then synthesize a decision without mutating unless explicitly requested.
Dispatch docs subagent to audit, generate, and validate documentation against the codebase.
Batch-execute SHIP-ready wishes overnight — pick wishes, orchestrate workers, review PRs, wake up to results.
Use when auditing DX, docs, and delivery in any codebase — the 30-minute-contributor test, docs-vs-reality drift, onboarding friction, error-message quality.…