一键导入
brainstorming
Use when starting any new feature, significant change, or architectural decision. Explores requirements and options before any implementation begins.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when starting any new feature, significant change, or architectural decision. Explores requirements and options before any implementation begins.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Summarize the most recent commit or pending changes — what they do, how they fit into the existing code, and a diagram if the change is structural.
Orchestrates the full roadmap-to-committed-code flow. Iterates through milestones — implementing, testing, reviewing, and committing each — with human approval gates.
Use at the start of a session when there is a roadmap or milestone document and you want to pick up the next item. Orients from a cold start, locates the roadmap, identifies the next unfinished item, and proceeds to implementation.
Use when you have a large feature, project, or initiative to plan. Breaks it into discrete, sequenced milestones and writes them to a ROADMAP.md that milestone can consume.
Use before claiming any work is complete, fixed, or passing. Use before every "done", "fixed", "tests pass", or "it's working" statement.
Generate a GitHub pull request description from the current branch. Produces a high-level, markdown-formatted summary and copies it to the clipboard. Pass a base branch if it's not main/master.
| name | brainstorming |
| description | Use when starting any new feature, significant change, or architectural decision. Explores requirements and options before any implementation begins. |
NO IMPLEMENTATION BEFORE DESIGN APPROVAL.
Do not write code, scaffold files, or invoke any implementation action until the user has explicitly approved an approach.
Ask clarifying questions one at a time. Prefer multiple-choice questions over open-ended ones. Stop when you understand:
Cap at 3 questions. If you need more, the scope is likely too large to design in one session — say so and propose breaking it down.
Before proposing anything, look at the codebase:
Glob and GrepNever propose a solution that ignores what's already there.
For each approach, state:
Apply YAGNI ruthlessly. Do not propose approaches that add complexity for hypothetical future requirements.
Present the approaches. Ask the user to pick one or suggest modifications. Do not start anything until they confirm.
Once an approach is approved, write a brief summary:
Then ask whether to proceed directly to implementation or plan it out first.
If the approved approach has multiple distinct phases or will span several sessions, note those phases explicitly — they're good candidates for a ROADMAP.md. Suggest using /bender:roadmap to capture them before implementing.