brainstorming
4
总安装量
3
周安装量
#49460
全站排名
安装命令
npx skills add https://github.com/sadiksaifi/agents --skill brainstorming
Agent 安装分布
opencode
3
gemini-cli
3
claude-code
3
github-copilot
3
codex
3
kimi-cli
3
Skill 文档
Anti-Pattern: “Too Simple for a Design”
Every project goes through this process â a todo list, a single-function utility, a config change. “Simple” projects are where unexamined assumptions cause the most wasted work. The design can be a few sentences, but it must be presented and approved.
Process
Complete these steps in order, creating a task for each:
1. Explore project context
Check files, docs, and recent commits to understand the current state.
2. Ask clarifying questions
- One question per message â if a topic needs more exploration, break it up
- Prefer multiple-choice questions; open-ended is fine when choices aren’t obvious
- Focus on purpose, constraints, and success criteria
3. Propose 2â3 approaches
- Lead with your recommendation and explain why
- Include trade-offs for each approach
- Apply YAGNI ruthlessly â remove unnecessary features from all options
4. Present design incrementally
- Scale each section to its complexity (a sentence if simple, a few paragraphs if nuanced)
- Cover: architecture, components, data flow, error handling, testing
- Ask after each section whether it looks right â revise until approved
- Go back and clarify if something doesn’t make sense
5. Write design doc
Save the approved design to ~/.agents/brainstorming/<project-name>/YYYY-MM-DD-<topic>.md and give the path to the user. Plan mode continues with implementation planning.