stress-testlisted
Install: claude install-skill Hunter1x2/stress-test-skill
# Stress-Test 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.
## Phase 1: Extract & Decompose
Read back the plan from the conversation. Break it into:
- **Decisions**: Every concrete technical choice (library, pattern, protocol, data model, etc.)
- **Assumptions**: Things stated as fact but not verified ("library X supports Y", "this scales to Z")
- **Dependencies**: External things the plan relies on (APIs, packages, services, OS features)
- **Interfaces**: Boundaries between components where things can go wrong
- **Ordering**: Implicit sequencing — what must happen before what
## Phase 2: Verify via Search
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:
- Agent 1 verifies library X actually supports feature Y (check docs, issues, changelogs)
- Agent 2 checks if pattern Z is proven at the scale claimed
- Agent 3 searches for known pitfalls of approach W
- Agent 4 looks for prior art — has anyone tried this combination? What happened?
Use all search tools aggressively: WebSearch for recent issues/deprecations/compatibility, WebFetch for specific d