brainstorming — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited brainstorming (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Help turn ideas into fully formed designs and specs through natural collaborative dialogue.
Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design and get user approval.
<HARD-GATE> Do NOT invoke any implementation skill, write any code, scaffold any project, or take any implementation action until you have presented a design and the user has approved it. This applies to EVERY project regardless of perceived simplicity. </HARD-GATE>
Every project goes through this process. A todo list, a single-function utility, a config change — all of them. "Simple" projects are where unexamined assumptions cause the most wasted work. The design can be short (a few sentences for truly simple projects), but you MUST present it and get approval.
You MUST create a task for each of these items and complete them in order:
superpowers:using-git-worktrees to create isolated workspacedocs/superpowers/specs/YYYY-MM-DD-<topic>-design.mddigraph brainstorming {
"Explore project context" [shape=box];
"Visual questions ahead?" [shape=diamond];
"Offer Visual Companion\n(own message, no other content)" [shape=box];
"Ask clarifying questions" [shape=box];
"Propose 2-3 approaches" [shape=box];
"Present design draft\n(get initial human feedback)" [shape=box];
"Simple design?\n(single module, no security surface,\nno new public interfaces)" [shape=diamond];
"Dispatch 4 design reviewers IN PARALLEL\n(design-perspective-reviewer-prompt.md)" [shape=box];
"Any CRITICAL or IMPORTANT?" [shape=diamond];
"Revise design draft\nshow changes to human" [shape=box];
"Human final approval\n'Shall I write the spec?'" [shape=box];
"Write design doc" [shape=box];
"Dispatch spec-document-reviewer" [shape=box];
"Spec approved?" [shape=diamond];
"Fix spec issues" [shape=box];
"Invoke writing-plans skill" [shape=doublecircle];
"Explore project context" -> "Visual questions ahead?";
"Visual questions ahead?" -> "Offer Visual Companion\n(own message, no other content)" [label="yes"];
"Visual questions ahead?" -> "Ask clarifying questions" [label="no"];
"Offer Visual Companion\n(own message, no other content)" -> "Ask clarifying questions";
"Ask clarifying questions" -> "Propose 2-3 approaches";
"Propose 2-3 approaches" -> "Present design draft\n(get initial human feedback)";
"Present design draft\n(get initial human feedback)" -> "Simple design?\n(single module, no security surface,\nno new public interfaces)";
"Simple design?\n(single module, no security surface,\nno new public interfaces)" -> "Human final approval\n'Shall I write the spec?'" [label="yes"];
"Simple design?\n(single module, no security surface,\nno new public interfaces)" -> "Dispatch 4 design reviewers IN PARALLEL\n(design-perspective-reviewer-prompt.md)" [label="no"];
"Dispatch 4 design reviewers IN PARALLEL\n(design-perspective-reviewer-prompt.md)" -> "Any CRITICAL or IMPORTANT?";
"Any CRITICAL or IMPORTANT?" -> "Revise design draft\nshow changes to human" [label="yes"];
"Revise design draft\nshow changes to human" -> "Dispatch 4 design reviewers IN PARALLEL\n(design-perspective-reviewer-prompt.md)" [label="re-review"];
"Any CRITICAL or IMPORTANT?" -> "Human final approval\n'Shall I write the spec?'" [label="no (only MINOR)"];
"Human final approval\n'Shall I write the spec?'" -> "Write design doc";
"Write design doc" -> "Dispatch spec-document-reviewer";
"Dispatch spec-document-reviewer" -> "Spec approved?";
"Spec approved?" -> "Fix spec issues" [label="no"];
"Fix spec issues" -> "Dispatch spec-document-reviewer" [label="re-review"];
"Spec approved?" -> "Invoke writing-plans skill" [label="yes"];
}The terminal state is invoking writing-plans. Do NOT invoke frontend-design, mcp-builder, or any other implementation skill. The ONLY skill you invoke after brainstorming is writing-plans.
Understanding the idea:
Exploring approaches:
Presenting the design:
Security attack surface (required for any feature touching financial logic, external SDKs, public API, or cryptography):
Include an explicit section in the design doc — this becomes the guard test checklist for writing-plans:
## Security Attack Surface
| Input / Behaviour | Guard | Where |
|---|---|---|
| Amount rounds to zero | Zero-value guard, throw before any side effect | e.g. pay() before first RPC call |
| Payer == recipient | Self-transfer guard | e.g. pay() before ATA creation |
| SDK resolves but failed on-chain | Check result error field | e.g. after confirmTransaction() |
| Wrong-environment config | Startup guard, throw at construction | constructor |
| Output in HTTP headers/logs | Strip control characters | e.g. getAddress() |Every row in this table → one failing test in the plan. If a guard isn't in the table, it won't be tested.
Design for isolation and clarity:
Working in existing codebases:
Design Review Loop (runs after presenting draft, before writing spec):
Scope gate — skip for simple designs: If all three conditions are true: single module, no security attack surface (no financial logic, no external APIs, no cryptography), and no new public interfaces — skip the multi-role review and proceed directly to writing the spec. Add a note: "Simple design — skipping multi-role review."
Otherwise, for any design with security surface, multiple modules, or new public interfaces:
design-perspective-reviewer-prompt.md for each reviewer's role promptFinal human approval before writing spec (required): Before writing the spec document, present the final approved design and ask: "Design is ready. Shall I write the spec?" Do not proceed to spec without this confirmation.
Model selection:
Documentation:
docs/superpowers/specs/YYYY-MM-DD-<topic>-design.mdSpec Review Loop: After writing the spec document:
Implementation:
A browser-based companion for showing mockups, diagrams, and visual options during brainstorming. Available as a tool — not a mode. Accepting the companion means it's available for questions that benefit from visual treatment; it does NOT mean every question goes through the browser.
Offering the companion: When you anticipate that upcoming questions will involve visual content (mockups, layouts, diagrams), offer it once for consent:
"Some of what we're working on might be easier to explain if I can show it to you in a web browser. I can put together mockups, diagrams, comparisons, and other visuals as we go. This feature is still new and can be token-intensive. Want to try it? (Requires opening a local URL)"
This offer MUST be its own message. Do not combine it with clarifying questions, context summaries, or any other content. The message should contain ONLY the offer above and nothing else. Wait for the user's response before continuing. If they decline, proceed with text-only brainstorming.
Per-question decision: Even after the user accepts, decide FOR EACH QUESTION whether to use the browser or the terminal. The test: would the user understand this better by seeing it than reading it?
A question about a UI topic is not automatically a visual question. "What does personality mean in this context?" is a conceptual question — use the terminal. "Which wizard layout works better?" is a visual question — use the browser.
If they agree to the companion, read the detailed guide before proceeding: skills/brainstorming/visual-companion.md
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.