Brainstorm
TDD-first AI dev pipeline for Claude Code, Cursor, Codex, Gemini CLI & Antigravity. /dev /fix /quick + token-saving hooks. npx aicrew install
npx -y skills add AKSoftCode/aicrew --skill brainstormAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate 3 materially different implementation options with trade-offs before coding, using project-specific brainstorm overrides when available.
SKILL.md
1.6 KB, as published. Nobody here has run it
Brainstorm (Codex)
Use this skill when the user asks to brainstorm, compare approaches, or resolve design decisions before implementation.
Default output
Caveman/lean style by default. See ~/Agents/agents/caveman.md and ~/Agents/agents/context-economy.md. /normal or /lean off restores verbose.
Lookup order
Before generating options, check for project-specific guidance in this order:
.ai/skills/agents/brainstorm.mdAGENTS.md~/Agents/agents/brainstorm.md
If a project override exists, follow it. If not, use the default workflow below.
Default workflow
- Restate the problem in one sentence.
- Identify the key decisions that must be resolved before coding.
- Generate exactly 3 materially different options.
- For each option, evaluate:
- Complexity
- Risk
- Reversibility
- Test surface
- Prior art in the codebase
- Recommend one option with a short rationale.
- Ask the user to choose or modify an option before proceeding.
Guardrails
- Do not invent domain rules, contracts, or constraints.
- Tie non-obvious claims to code or docs when possible.
- Prefer the smallest, most testable, most reversible option.
- Flag options that weaken validation, auditability, or traceability.
Output format
BRAINSTORM:
Problem statement:
DECISIONS TO RESOLVE BEFORE CODING:
1. ...
2. ...
3. ...
OPTION A — ...
OPTION B — ...
OPTION C — ...
RECOMMENDATION:
OPEN QUESTIONS:
- ...