一键导入
stress-test
Adversarially stress-test a technical plan by verifying claims against real docs, running POC code, and updating the plan before you build.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Adversarially stress-test a technical plan by verifying claims against real docs, running POC code, and updating the plan before you build.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | stress-test |
| description | Adversarially stress-test a technical plan by verifying claims against real docs, running POC code, and updating the plan before you build. |
| user-invocable | true |
| allowed-tools | Bash Read Write Edit Grep Glob WebSearch WebFetch Task AskUserQuestion |
| argument-hint | (run in a conversation that has a technical plan) |
You are an adversarial reviewer. Your job is to beat up the plan in the current conversation — find where it will break, what's been assumed without evidence, and what's been hand-waved. Be direct and specific, not polite.
All POC work MUST happen inside .poc-stress-test/ in the current working directory. Create it at the start, clean it up at the end.
Read back the plan from the conversation. Break it into:
Do NOT just reason from memory — go verify. Launch sub-agents in parallel using the Task tool. Each verification task is independent, so run them concurrently:
Use all search tools aggressively: WebSearch for recent issues/deprecations/compatibility, WebFetch for specific docs.
For each claim, answer: "How do we know this works?" If you can't find evidence, flag it.
Separate findings into two buckets:
Resolved by search: Confirmed or disproved with evidence. List with sources.
Needs hands-on testing: Things that can't be settled by reading docs alone:
For each item that needs testing, draft a minimal POC spec:
Use AskUserQuestion to present the proposed POCs. Group by risk level, let the user choose:
Do NOT run any POCs without user approval.
For approved POCs, run them in parallel where independent using sub-agents via the Task tool. All work goes in .poc-stress-test/ with a subdirectory per POC (e.g., .poc-stress-test/crdt-compat/, .poc-stress-test/ws-scale/).
Each POC sub-agent should:
.poc-stress-test/Batch shell operations into single commands to minimize permission prompts (e.g., mkdir -p dir && cd dir && npm init -y && npm install dep && node test.js).
After all POCs complete, walk through each finding one at a time using AskUserQuestion:
For each finding that impacts the plan, present:
Let the user approve, modify, or reject each recommendation individually.
Then apply all approved changes directly into the plan — integrate the fixes where they belong, don't just append a notes section.
Finally, clean up: rm -rf .poc-stress-test/
Schedule yourself to wake up every 5 minutes and shepherd an open PR — fix failing CI, address review-bot comments (push fixes for legit findings, resolve false positives, re-request review once addressed), reply to mechanical human comments with fixes, and flag architecture-level human comments back to the user. Exits the loop when the PR is green and review is clean. NEVER merges the PR.
Verify implemented plan docs against their actual code, add completion signoff metadata, and surface any gaps as new beads. Designed for scheduler/concierge agents coordinating multi-agent signoff after implementation is done.
Orchestrate the full planning lifecycle — from input assessment through architecture, plan writing, review cycles with convergence, and sign-off. Designed for concierge/scheduler agents coordinating multi-agent planning work.
Surgically trim verbosity and within-doc duplication from a plan doc without losing fidelity. Cuts review residue, restated rationale, illustrative code that prose+signature already covers, redundant adjacent sections, and prose-then-table restatements. Preserves all API/interface specs, acceptance criteria, URP/EO/AA commitments, decision rationale where alternatives matter, and review disposition tables. Run after plan-incorporate, before plan-work-completion-signoff.
Clean up a long-running work branch before landing into main — close beads, prune review docs, strip ceremonial comments, undo accidental cross-cutting refactors that weren't part of the task. Run after implementation completes, before opening the PR to main. Specific to the final land into the trunk, NOT for ordinary feature-to-feature merges along the way.
Independently review a plan doc and its test harness. Produces a review findings doc rated P0-P3. Run multiple times with different reviewers for independent perspectives.