Parallel stress and high-count loops can overload shared or production systems
Source references: 3For nondeterministic bugs, the Skill directs the agent to loop a trigger 100 times, parallelize it, and add stress, without restricting those actions to local or isolated environments or setting concurrency and request limits.
If the reproduction targets a shared, metered, or production service, testing could consume quotas, increase costs, disrupt other users, or trigger rate limits and security alerts.
The active instruction for intermittent failures explicitly calls for 100 trigger iterations, parallel execution, and added stress, but does not confine that activity to a local or isolated system or set concurrency, request, or cost limits. If the reproduction command targets a shared, metered, or production service, it could increase load, charges, alerts, or data side effects. Users can ask that stress reproduction default to local test environments and require confirmation of the target, rate, and budget before using any remote system.
The goal is not a clean repro but a **higher reproduction rate**. Loop the trigger 100×, parallelise, add stress, narrow timing windows, inject sleeps. A 50%-flake bug is debuggable; 1% is not, so keep raising the rate until it's debuggable.Show 2 other places
### Non-deterministic bugsThe goal is not a clean repro but a **higher reproduction rate**. Loop the trigger 100×, parallelise, add stress, narrow timing windows, inject sleeps. A 50%-flake bug is debuggable; 1% is not, so keep raising the rate until it's debuggable.1. **Failing test** at whatever seam reaches the bug: unit, integration, e2e.2. **Curl / HTTP script** against a running dev server.3. **CLI invocation** with a fixture input, diffing stdout against a known-good snapshot.4. **Headless browser script** (Playwright / Puppeteer) that drives the UI and asserts on DOM/console/network.5. **Replay a captured trace.** Save a real network request / payload / event log to disk; replay it through the code path in isolation.