/stress-test
Use when a design, plan, or decision needs adversarial scrutiny before proceeding. Interrogates every branch of the decision tree, providing recommended answers and forcing explicit agreement or pushback. Triggers on "grill me", "stress test this", "poke holes", "challenge this
$ npx -y skills add DollarDill/beads-superpowers --skill stress-test --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/stress-test
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when a design, plan, or decision needs adversarial scrutiny before proceeding. Interrogates every branch of the decision tree, providing recommended answers and forcing explicit agreement or pushback. Triggers on "grill me", "stress test this", "poke holes", "challenge this
SKILL.md
stress-test.SKILL.mdname: stress-test
description: Use when a design, plan, or decision needs adversarial scrutiny before proceeding. Interrogates every branch of the decision tree, providing recommended answers and forcing explicit agreement or pushback. Triggers on "grill me", "stress test this", "poke holes", "challenge this design", or when brainstorming/writing-plans suggests review.
Stress Test: Adversarial Design Interrogation
<!-- Inspired by mattpocock/skills grilling (MIT). Attribution: README "Built on". -->
**Announce at start:** "I'm using the stress-test skill to interrogate this design."
Purpose
Stress-test a design, plan, or decision by walking down every branch of the decision tree. For each question, provide your **own recommended answer** — don't just ask, propose. This forces the user to either agree explicitly or articulate why their approach is better.
This is NOT brainstorming (which creates designs) or verification (which checks implementations). This is the gap between them: **"Is this design actually solid before we commit to building it?"**
When to Invoke
| Trigger | Context | |---------|---------| | After brainstorming | Stress-test the design spec before writing a plan | | After writing-plans | Stress-test the plan before execution begins | | User says "grill me" | On-demand for any document, decision, or approach | | Before a major architectural decision | Ensure alternatives were genuinely considered |
The Process
# Create a stress-test bead
bd create "Stress-test: <topic>" -t chore -p 2 \
--description="Adversarial review of <artifact>. Branches to interrogate: <count>"
bd update <id> --claim
Phase 1: Understand the Target
Read the design, plan, or decision document thoroughly. If no document exists, ask the user to describe the approach. Explore the codebase for context — answer your own questions from code when possible rather than asking the user.
**Restore point (Mode A only):** If the target artifact has uncommitted changes, commit or stash them before starting — this preserves a clean restore point before inline edits begin. In the normal flow (brainstorming → stress-test), the artifact is already committed.
Done when: the target is understood well enough to enumerate its decision branches, and (Mode A) the artifact sits at a clean restore point.
Phase 2: Map the Decision Tree
Identify every decision branch in the target:
- Architecture choices (why X over Y?)
- Assumptions (what breaks if this is wrong?)
- Dependencies (what happens if this changes?)
- Edge cases (what about when Z happens?)
- Scale (does this work at 10x? 100x?)
- Failure modes (what's the worst case?)
- Alternatives not considered (what about approach W?)
- **Security & risk (mandatory branch):** does any branch take a shortcut, descope a requirement, or accept material risk? Does anything weaken or bypass a security control, or introduce a vulnerability? Per the Production-Grade Doctrine, a design that does fails the stress test by default. (If the design has no security surface, resolve this branch as "no security surface — N/A" — do not fabricate a finding.)
Done when: every branch category above has been checked against the target, including the mandatory Security & risk branch.
Phase 3: Interrogate One Branch at a Time
For each branch, present your question and recommendation as text, then use your structured question tool for the response.
**Per-branch flow:**
1. Present the **question + recommendation** as text in the message body (reasoning needs room to breathe) 2. Immediately follow with a structured question (content below; shape shown in Claude Code schema — adapt to your tool):
{
"questions": [{
"question": "<1-sentence summary of the branch being interrogated>",
"header": "Stress test",
"options": [
{"label": "Agree", "description": "Accept the recommendation and move to the next branch"},
{"label": "Disagree", "description": "I have a different view — let me explain"},
{"label": "Discuss further", "description": "I want to explore this branch more before deciding"}
],
"multiSelect": false
}]
}**Response handling:**
- **Agree** — Mark branch resolved, emit status line, advance to next branch
- **Disagree** — Ask "What's your alternative?" as text (open-ended — disagreements need space). Iterate until the branch resolves, then re-ask the same 3-option structured question on the revised position.
- **Discuss further** — Explore deeper (code, docs, implications), present updated analysis, then re-ask the same structured question
**Branch tracking:** After each branch resolves, emit a status line:
✓ Resolved: 3/7 branches (2 agreed, 1 modified)
Remaining: Error handling, Scale, Rollback, Testing strategy
**Rules:**
- One branch at a time — never batch. Wait for the user's response on each branch before presenting the next; surfacing several at once is bewildering and dilutes the recommendation each one deserves.
- Always state your recommendation in the message body BEFORE the structured question — the recommendation is the substance; the click is just the gate
- If you can answer by exploring the codebase, do that instead of asking
- When the user agrees, move on. When they push back, explore deeper.
Done when: every mapped branch is marked resolved and the status line reads N/N.
Phase 4: Document Findings
After all branches are resolved, write the findings. The output mode depends on context.
**Mode detection:**
- **Mode A** applies when: the stress-test was invoked by brainstorming or writing-plans (caller passes the artifact path), OR the user explicitly points at a `.internal/specs/` or `.internal/plans/` file.
- **Mode B** applies for everything else: user-initiated "grill me" with no artifact, stress-testing a conversation or decision, or targeting documents that shouldn't be edited inline (README, CLAUDE.md, etc.).
- **When ambiguous:** Use
Read more
name: stress-test description: Use when a design, plan, or decision needs adversarial scrutiny before proceeding. Interrogates every branch of the decision tree, providing recommended answers and forcing explicit agreement or pushback. Triggers on "grill me", "stress test this", "poke holes", "challenge this design", or when brainstorming/writing-plans suggests review.
Stress Test: Adversarial Design Interrogation
<!-- Inspired by mattpocock/skills grilling (MIT). Attribution: README "Built on". -->
**Announce at start:** "I'm using the stress-test skill to interrogate this design."
Purpose
Stress-test a design, plan, or decision by walking down every branch of the decision tree. For each question, provide your **own recommended answer** — don't just ask, propose. This forces the user to either agree explicitly or articulate why their approach is better.
This is NOT brainstorming (which creates designs) or verification (which checks implementations). This is the gap between them: **"Is this design actually solid before we commit to building it?"**
When to Invoke
| Trigger | Context | |---------|---------| | After brainstorming | Stress-test the design spec before writing a plan | | After writing-plans | Stress-test the plan before execution begins | | User says "grill me" | On-demand for any document, decision, or approach | | Before a major architectural decision | Ensure alternatives were genuinely considered |
The Process
# Create a stress-test bead bd create "Stress-test: <topic>" -t chore -p 2 \ --description="Adversarial review of <artifact>. Branches to interrogate: <count>" bd update <id> --claim
Phase 1: Understand the Target
Read the design, plan, or decision document thoroughly. If no document exists, ask the user to describe the approach. Explore the codebase for context — answer your own questions from code when possible rather than asking the user.
**Restore point (Mode A only):** If the target artifact has uncommitted changes, commit or stash them before starting — this preserves a clean restore point before inline edits begin. In the normal flow (brainstorming → stress-test), the artifact is already committed.
Done when: the target is understood well enough to enumerate its decision branches, and (Mode A) the artifact sits at a clean restore point.
Phase 2: Map the Decision Tree
Identify every decision branch in the target:
- Architecture choices (why X over Y?)
- Assumptions (what breaks if this is wrong?)
- Dependencies (what happens if this changes?)
- Edge cases (what about when Z happens?)
- Scale (does this work at 10x? 100x?)
- Failure modes (what's the worst case?)
- Alternatives not considered (what about approach W?)
- **Security & risk (mandatory branch):** does any branch take a shortcut, descope a requirement, or accept material risk? Does anything weaken or bypass a security control, or introduce a vulnerability? Per the Production-Grade Doctrine, a design that does fails the stress test by default. (If the design has no security surface, resolve this branch as "no security surface — N/A" — do not fabricate a finding.)
Done when: every branch category above has been checked against the target, including the mandatory Security & risk branch.
Phase 3: Interrogate One Branch at a Time
For each branch, present your question and recommendation as text, then use your structured question tool for the response.
**Per-branch flow:**
1. Present the **question + recommendation** as text in the message body (reasoning needs room to breathe) 2. Immediately follow with a structured question (content below; shape shown in Claude Code schema — adapt to your tool):
{
"questions": [{
"question": "<1-sentence summary of the branch being interrogated>",
"header": "Stress test",
"options": [
{"label": "Agree", "description": "Accept the recommendation and move to the next branch"},
{"label": "Disagree", "description": "I have a different view — let me explain"},
{"label": "Discuss further", "description": "I want to explore this branch more before deciding"}
],
"multiSelect": false
}]
}**Response handling:**
- **Agree** — Mark branch resolved, emit status line, advance to next branch
- **Disagree** — Ask "What's your alternative?" as text (open-ended — disagreements need space). Iterate until the branch resolves, then re-ask the same 3-option structured question on the revised position.
- **Discuss further** — Explore deeper (code, docs, implications), present updated analysis, then re-ask the same structured question
**Branch tracking:** After each branch resolves, emit a status line:
✓ Resolved: 3/7 branches (2 agreed, 1 modified) Remaining: Error handling, Scale, Rollback, Testing strategy
**Rules:**
- One branch at a time — never batch. Wait for the user's response on each branch before presenting the next; surfacing several at once is bewildering and dilutes the recommendation each one deserves.
- Always state your recommendation in the message body BEFORE the structured question — the recommendation is the substance; the click is just the gate
- If you can answer by exploring the codebase, do that instead of asking
- When the user agrees, move on. When they push back, explore deeper.
Done when: every mapped branch is marked resolved and the status line reads N/N.
Phase 4: Document Findings
After all branches are resolved, write the findings. The output mode depends on context.
**Mode detection:**
- **Mode A** applies when: the stress-test was invoked by brainstorming or writing-plans (caller passes the artifact path), OR the user explicitly points at a `.internal/specs/` or `.internal/plans/` file.
- **Mode B** applies for everything else: user-initiated "grill me" with no artifact, stress-testing a conversation or decision, or targeting documents that shouldn't be edited inline (README, CLAUDE.md, etc.).
- **When ambiguous:** Use
Showing the first part of this file.
Superpowers & Beads task memory for AI coding agents - supports Claude Code, Codex, OpenCode, Cursor, Gemini CLI, GitHub Copilot CLI, Kimi Code, Antigravity, Factory Droid, and Pi.
Other skills on beads-superpowers.
- /auditing-upstream-drift
Use when checking if beads-superpowers is outdated, before a plugin release, or when auditing for missing capabilities — covers upstream drift, test execution, documentation, plugin health, and content integrity
Open skill - /brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Open skill - /dispatching-parallel-agents
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Open skill - /document-release
Use when implementation on a branch is complete and it is about to be merged or PR'd — or when finishing-a-development-branch reaches its docs-audit gate — and after code changes are committed, to ensure all project documentation accurately reflects shipped code. Covers README,
Open skill - /executing-plans
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Open skill - /finishing-a-development-branch
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Open skill

