Quick Route
Discovery Questions
First, check .agents/qa-project-context.md in the project root — it carries the tech
stack, test runner, known-flaky areas, and environment matrix. Pass over any question it
already answers. If it is missing, suggest creating one with the qa-project-context skill.
- What is the report, verbatim? The thinner it is, the more you must extract before
touching code — a one-line report sets the whole intake agenda (Step 1).
- Does it reproduce at all yet, and how reliably? "Every time" vs "sometimes" decides
whether you go straight to minimizing or into determinism work first.
- Did it ever work? A known-good past release unlocks
git bisect to the introducing
commit; no known-good point means you debug forward instead.
- What is the test runner and stack? Vitest/Jest vs Playwright changes the determinism
API (
vi.setSystemTime vs page.clock) and where the regression test lands.
- What are the non-determinism sources? Time-of-day rules, randomness, third-party
APIs, locale — each must be pinned for the repro to be trustworthy.
Core Principles
Reproduce before you theorize. The strongest wrong instinct is to read a symptom
and jump to a root cause ("sounds like a float rounding bug, let me patch the total
calc"). Don't. Extract the repro, make it fail on demand, and only then form a
hypothesis. A fix without a reproduction is a guess you can't falsify.
A repro is a deterministic artifact, not a story. "It happens around midnight with a
random code" is a story. Freeze the clock, seed the RNG, and stub the network so the
same inputs produce the same failure on every run and every machine. If it isn't
deterministic, you can't bisect it, test it, or prove it fixed.
Minimize one variable at a time, and re-confirm after every cut. Shrinking the repro
is a search, not a rewrite. Remove one step, data field, or dependency, then re-run and
confirm it still reproduces. Removing several at once tells you nothing about which one
mattered.
The regression test is written RED, before the fix. Assert the real expected value,
watch it fail first (proving it catches this bug), then watch the fix flip it green.
A test added after the fix, or one disabled / marked pending, proves nothing.
Green isn't done — revert-to-verify is. A passing test can pass for the wrong
reason. Temporarily remove the fix and confirm the test goes red again. Only a test that
fails without the fix actually guards against the bug.
Step 1: Extract the implicit repro
A thin report ("Checkout is broken, order total is wrong sometimes") names a symptom, not a
path. Before any code, extract or ask for every reproducibility dimension. Never invent the
repro steps from imagination, and never theorize a root cause yet — both come after the bug
reproduces.
For a "wrong total" / data-correctness bug, the load-bearing dimensions a thin report most
often omits are:
- Exact steps to reproduce — the click-by-click path, not "checkout is broken."
- Build / version / commit (git SHA) — they may be on a build where it's already fixed.
- Environment — browser + version, OS, device.
- Input data — cart contents, quantities, the account/user, coupon, the exact fixture.
A total is a pure function of its inputs; without them you are guessing.
- Expected vs actual — the number they expected and the number they saw.
- Frequency — every time, or intermittent? "Sometimes" points at non-determinism.
- Locale / timezone / currency — rounding, tax, and formatting are locale-specific; a
total "wrong" in
de-DE may be correct in en-US.
- Timestamp of occurrence, plus any logs/screenshots/network trace.
Write these into a single repro spec before touching code. If a row is blank, that is your
next question to the reporter — not a license to start writing the fix or theorizing.
See references/intake.md for the full extraction checklist, why each load-bearing
dimension matters for "wrong total," and the repro-spec template.
Step 2: The reproduce→minimize→isolate→capture loop
Given a confirmed-but-messy repro (e.g. 14 manual UI steps across 3 pages), do not hand
the 14-step version to the developer and do not rewrite it wholesale. Run this loop:
- REPRODUCE / confirm. First establish a baseline: run the full repro and confirm it
actually fails. You can only minimize something that currently reproduces.
- MINIMIZE. Remove one step, field, or dependency. Re-run. If it still reproduces,
keep the cut; if it no longer fails, that element was load-bearing — restore it. Repeat,
one variable at a time, until every remaining piece is necessary. This is the core
ordering rule: never minimize before confirming it reproduces, and never omit verifying
it still fails after each cut.
- ISOLATE. Narrow the failure to the smallest layer that still shows it — drop from a
3-page UI flow to a single page, then to a unit/API call against the offending function
if the bug lives below the UI.
- CAPTURE. Record the now-minimal repro as evidence: the smallest steps or the
single command, plus logs/trace/screenshot. This is what the developer and the
regression test consume.
The output is the smallest sequence that still reproduces — not the original walkthrough.
Step 3: Bisect to the introducing commit
The bug is on HEAD but a past release was clean, and you have a command that exits
non-zero when the bug is present. Use git bisect run to binary-search history
automatically — do not manually check out each commit, and do not use git revert to hunt
for it.
git bisect start
git bisect bad HEAD # current commit has the bug (alias: git bisect new)
git bisect good v2.4.0 # last clean release (alias: git bisect old)
git bisect run npm test -- checkout-total.spec.ts # ONE targeted test, never the full suite
# bisect prints "<sha> is the first bad commit"
git bisect reset # ALWAYS clean up — restores the original HEAD
The exit-code contract git bisect run uses: exit code 0 = good (bug absent),
non-zero (1–124) = bad (bug present), exit 125 = skip (untestable). So your command
must return 0 when the feature is fine and non-zero when the bug reproduces — most runners
already do this. Run one targeted test, not npm test:all / the whole suite: an
unrelated failure at an old commit would mark it bad and send the search down the wrong half.
The good/bad pair assumes a regression (good in the past, bad now). The old/new
aliases mean the same search and read better when hunting any state transition.
See references/bisect.md for the full happy path and the skip/untestable wrapper.
Bisect skip and determinism (untestable or flaky commits)
Two things corrupt a naive bisect, and the default bad answer — "exit 1 on any failure" —
walks into both:
- Old commits won't build. A compile error exits 1, which bisect reads as "bug present"
and marks a clean commit bad. Wrong: an unbuildable commit is untestable — your
wrapper script must
exit 125 (skip) on build failure, distinguishing it from a real
bad commit.
- Flaky network/timing failures. A transient un-stubbed third-party call exits 1 and
gets blamed. Force determinism during bisect — stub the network, pin
TZ, seed the
RNG — so only the real bug can fail the step. If a commit's result flips between runs,
treat it as untestable (exit 125), not bad.
Wrap the step in a script that returns 0 = good, 1 = bad, 125 = skip (the valid bad
range is 1–127 excluding 125), guards the build, stubs the network, and retries once to
catch flakiness. Then git bisect run ./bisect-step.sh. Full wrapper in
references/bisect.md.
Step 4: Make the repro deterministic
The bug "only around midnight, with a random discount code, via a third-party pricing API"
has three non-determinism sources. Pin all three so it fails the same way every single
run — do not wait for midnight, do not let it hit the real pricing API, and never use a
sleep/setTimeout/waitForTimeout to paper over timing.
| Source |
Vitest |
Playwright |
| Time |
vi.useFakeTimers() + vi.setSystemTime(new Date('…')) |
page.clock.install({ time }) + page.clock.setFixedTime(…) |
| Randomness |
faker.seed(1337) (or stub Math.random) |
seed the app's RNG via an init hook |
| Network |
MSW setupServer + http.get → HttpResponse.json |
page.route(...) → route.fulfill(...) |
Key points:
- Vitest:
vi.setSystemTime only works after vi.useFakeTimers(). Seed faker in
beforeEach. Set MSW onUnhandledRequest: 'error' so a missed stub fails loudly.
- Playwright:
page.clock.install/setFixedTime must run before page.goto.
page.clock is the supported API — it exists; do not fall back to a hand-rolled Date
override, and do not bump the timeout to "make it pass."
- Pin locale/timezone/currency (
TZ=UTC, LANG) when the bug is locale-sensitive.
Avoid: jest.useFakeTimers('legacy') (and timers: 'legacy') — legacy fake timers are
deprecated and don't mock Date/Date.now, so the clock stays live and your "frozen"
repro still drifts. Modern timers are the default since Jest 27 — just call
jest.useFakeTimers() + jest.setSystemTime(), or vi.useFakeTimers() in Vitest. (Jest 30,
2025)
See references/determinism.md for the full Vitest (vi.useFakeTimers + vi.setSystemTime
faker.seed + MSW setupServer) and Playwright (page.clock + page.route) recipes,
plus a 10-run determinism check.
Step 5: Write the failing regression test (red) first
You have a clean deterministic repro and the dev hasn't fixed it yet. Write the regression
test now, before the fix, as TDD-for-bugs:
- Encode the minimal repro as a test that asserts the real expected value —
expect(total).toBe(2754). A tautological assertion that always passes proves nothing.
- Run it and confirm it fails before the fix — it must be red first. A test that
doesn't go red isn't exercising the bug.
- Commit the test (or stage it on the fix branch) so the test guards the fix in CI.
- After the dev's fix lands, re-run: it should flip to green. Same test, no edits.
Expected state: red before the fix, green after the fix.
Wrong moves that defeat the point — a test that genuinely fails until this bug is fixed:
writing the test only after the fix already landed; disabling the failing test (pending
markers, an always-true tautology, or removing the assertion) just to keep CI green; or
fixing first and bolting a test on afterward. Keep the assertion live and let it go red.
See references/determinism.md for the deterministic test bodies the assertion sits in.
Step 6: Verify the fix actually fixes it
The dev pushed a fix and the regression test now passes. Green is necessary but not
sufficient — a test can pass for an unrelated reason. Do not close on green alone or
trust the dev's word. Run the validity check:
- Revert the fix temporarily (stash it, or
git stash/comment the fix line) and
re-run the test. Confirm it still fails without the fix. That proves the
test actually exercises this bug (the test catches the bug) — that it passes because of
the fix, and is not passing for another reason unrelated to the defect.
- Restore the fix and confirm green returns.
- Re-run deterministically several times (
--repeat-each / a loop) to confirm the
green is stable, not a lucky pass.
Only when the test is red-without-fix and green-with-fix, repeatably, is the fix verified.
This revert-to-verify step is the whole point of the regression test and is the one most
often left out.
Step 7: Flaky vs environment vs not-reproducible
You spent two hours and it won't reproduce for you, but it clearly happens for the user. Do
not close as "cannot reproduce" immediately, do not assume flaky and quarantine, and do
not conclude "doesn't repro on my machine so it isn't real." These are three distinct
diagnoses with distinct evidence:
| Diagnosis |
Discriminating evidence |
What you do |
| Flaky |
Same code, same env, passes and fails on the same commit — run --repeat-each 50 (or rerun the same command many times) in one environment and watch it flip |
Find the non-determinism (time/RNG/network/race), make it deterministic (Step 4) |
| Environment-specific |
Reproduces only under a different config — timezone, locale, viewport, OS, browser version, CI vs local — and is stable within that config |
Match the user's environment: reproduce their timezone/locale/OS/browser, then minimize |
| Data-dependent |
Reproduces only with the user's specific account/input |
Get and replicate their data/fixture; the bug rides on the input, not the platform |
| Genuinely not reproducible |
None of the above reproduces after matching env + data + repeat runs |
Document what you tried (envs, run counts, data) and the negative result — don't silently close |
The step bare attempts miss: match the reported user environment and data before
judging — replicate their config (timezone, locale, OS, browser version) and reproduce
their env, then re-run. --repeat-each in the same env isolates true flakiness; cross-env
divergence points to environment-specific; input-dependence points to data-specific.
Step 8: Write the evidence back into the ticket
Reproduction and the committed regression test are done. Replace the vague original report
with a structured block — do not paste the raw 14-step UI walkthrough, and do not
just write "reproduced, closing." Include all seven elements:
- Minimal steps / repro command — the smallest path, not the walkthrough.
- Environment + build/commit — exact SHA and platform.
- Expected vs actual — the concrete numbers.
- Introducing commit — the offending commit from
git bisect.
- Regression test — link to the committed test file and path.
- Evidence — logs, screenshot, trace, or artifact.
- Determinism notes — seed, frozen time, and stubs so anyone can re-run identically.
See references/ticket-writeback.md for the copy-paste Markdown structure.
Anti-Patterns
1. Jumping to the fix before reproducing
Reading "total is wrong" and patching the total calc, or guessing "looks like a rounding
bug," before you can make it fail on demand. You can't prove an unreproduced fix works.
Extract the repro first (Step 1).
2. Minimizing before confirming it reproduces
Stripping steps from a repro you never confirmed actually fails. You end up "minimizing"
something that was never broken. Confirm the baseline fails, then cut.
3. Removing several variables at once
Cutting three steps in one pass, so when it stops reproducing you don't know which one
mattered. Remove one variable at a time and re-run after each.
4. Bisecting the whole suite, or by hand
git bisect run npm test:all lets unrelated failures mark commits bad; manual
checkout-and-test is slow and error-prone. Run one targeted test under git bisect run.
5. Exit 1 on build failure during bisect
Treating an unbuildable commit as "bug present." It marks clean commits bad and corrupts
the search. Return exit 125 (skip) for untestable commits; reserve non-zero for the
genuine bug.
6. Live time, RNG, or network in the repro
Leaving new Date() and Math.random unmocked, hitting the real pricing API, or
"waiting for midnight" with a sleep. The repro becomes a coin flip. Freeze time, seed the
RNG, stub the network (Step 4).
7. Writing the test after the fix, or disabling it
Adding the regression test once the bug is already gone, or neutering a failing test
(pending markers, a tautological assertion, a removed assertion) to keep CI green. The test
never proves it catches the bug. Write it red, before the fix.
8. Closing on green without revert-to-verify
"The test passes, close it." A test can pass for the wrong reason. Revert the fix, confirm
it goes red again, restore, confirm green.
9. Closing as "cannot reproduce" on first failure to repro
Collapsing flaky / environment-specific / not-reproducible into one dismissal. Match the
user's environment and data and use --repeat-each before judging (Step 7).
Failure Modes
| Symptom |
Likely cause |
Fix / check |
| Bisect lands on an obviously unrelated commit |
Full suite or flaky failures marking commits bad |
Switch to one targeted test; wrap with exit-125 skip + network stub |
| Repro passes locally, fails in CI (or vice versa) |
Environment-specific (TZ, locale, OS, browser) |
Pin TZ/LANG; match the failing environment (Step 7) |
| Test is green but you're not sure it catches the bug |
Never ran it red |
Revert the fix and confirm it fails (Step 6) |
vi.setSystemTime has no effect |
Called before vi.useFakeTimers() |
Call useFakeTimers() first |
page.clock time not applied to app startup |
install/setFixedTime ran after page.goto |
Move clock setup before navigation |
| Repro flips pass/fail run to run |
Live time/RNG/network not pinned |
Apply Step 4; confirm with --repeat-each 10 |
Verification
- The repro command/test fails on demand: run it 10× (
--repeat-each 10 or a loop) and
confirm it fails every time before the fix.
git bisect run … terminates with "<sha> is the first bad commit" and git bisect reset leaves you on the original HEAD.
- With the fix reverted the regression test exits non-zero; with the fix applied it exits 0.
- The ticket block contains all seven write-back elements (Step 8) — grep it for the
commit SHA, the test path, and the determinism notes.
Done When
- A documented minimal reproduction exists — smallest steps or a single command — that
fails on demand, verified failing across repeated runs.
- If the bug is a regression,
git bisect has named the introducing commit SHA and it is
recorded in the ticket.
- The repro is deterministic: time frozen, RNG seeded, network stubbed — proven by 10
identical consecutive runs.
- A regression test is committed that was red before the fix and green after, and was
confirmed to fail when the fix is reverted.
- The ticket carries the structured evidence block with all seven elements (minimal steps,
environment/build, expected vs actual, introducing commit, regression-test link,
evidence artifact, determinism notes); the original vague report is replaced, not left.
- If it did not reproduce, it is classified (flaky / environment-specific / data-dependent /
not-reproducible) with the evidence that led there — never silently closed.
Related Skills
ai-bug-triage — Classify, deduplicate, and severity-route existing failures.
Triage decides whether and where a failure matters; come here to actually reproduce
one and write the failing test. Triage hands off; bug-reproduction picks up.
ai-test-generation — Generate tests from specs/PRDs/stories. Use it when the source
is a requirement; use this skill when the source is a defect and the test must first go
red against the bug.
test-reliability — Runtime self-healing and quarantine for a flaky test. When Step 7
diagnoses true flakiness, go there to stabilize or quarantine; here you only diagnose.
qa-project-context — Stack, test runner, environment matrix, and known-flaky areas
that shape every step above. Check it first.
- systematic-debugging (
superpowers:systematic-debugging) — The general root-cause
debugging loop once you have a deterministic repro; this skill produces that repro and
the failing test that guards the eventual fix.
1---2name: bug-reproduction3description: Turn a vague bug report into a VERIFIED minimal reproduction and then a failing regression test, agent-driven end to end. Covers extracting the implicit repro from a thin report (env, build, steps, data), the reproduce-minimize-isolate-capture loop, git bisect to find the introducing commit, building a deterministic minimal repro (fixed seeds, frozen time, stubbed network), writing the failing regression test BEFORE the fix (red) and confirming the fix flips it green, and writing repro evidence back into the ticket. Distinguishes flaky-not-reproducible from environment-specific. Use when: "reproduce this bug," "minimal reproduction," "repro steps," "find the commit that broke it," "git bisect," "make the repro deterministic," "write a failing test for this bug," "regression test for a defect," "can't reproduce this bug." Not for: Classifying/deduplicating/severity-routing existing failures without reproducing them — that is ai-bug-triage. Generating tests from specs rather than from a defect — that is ai-test4license: MIT5---6
7<objective>
8A bug you cannot reproduce is a bug you cannot fix or prove fixed. This skill takes a
9thin, hand-wavy report ("order total is wrong sometimes") and drives it to a VERIFIED
10minimal reproduction, a deterministic failing test written BEFORE the fix, a `git bisect`
11that names the introducing commit, and a structured evidence block in the ticket. The
12discipline it enforces: reproduce before theorizing, minimize one cut at a time, freeze
13time/seed/network so the repro fails identically every run, watch the test go red first,
14and confirm the fix flips it green — and that reverting the fix turns it red again.
15</objective>
16
17## Quick Route
18
19| You have… | Go to |
20|-----------|-------|
21| A thin report and no idea how to trigger it | [Step 1: Extract the implicit repro](#step-1-extract-the-implicit-repro) |
22| A messy 14-step repro to clean up | [Step 2: The reproduce-minimize-isolate-capture loop](#step-2-the-reproduceminimizeisolatecapture-loop) |
23| "Worked last month, broken now" | [Step 3: Bisect to the introducing commit](#step-3-bisect-to-the-introducing-commit) |
24| A repro that passes/fails inconsistently | [Step 4: Make the repro deterministic](#step-4-make-the-repro-deterministic) |
25| A clean repro, no fix yet | [Step 5: Write the failing regression test (red) first](#step-5-write-the-failing-regression-test-red-first) |
26| "The dev says it's fixed, test is green" | [Step 6: Verify the fix actually fixes it](#step-6-verify-the-fix-actually-fixes-it) |
27| "It won't reproduce for me but does for the user" | [Step 7: Flaky vs environment vs not-reproducible](#step-7-flaky-vs-environment-vs-not-reproducible) |
28| Repro + test done | [Step 8: Write the evidence back into the ticket](#step-8-write-the-evidence-back-into-the-ticket) |
29
30## Discovery Questions
31
32First, check `.agents/qa-project-context.md` in the project root — it carries the tech
33stack, test runner, known-flaky areas, and environment matrix. Pass over any question it
34already answers. If it is missing, suggest creating one with the `qa-project-context` skill.
35
36- **What is the report, verbatim?** The thinner it is, the more you must extract before
37 touching code — a one-line report sets the whole intake agenda (Step 1).
38- **Does it reproduce at all yet, and how reliably?** "Every time" vs "sometimes" decides
39 whether you go straight to minimizing or into determinism work first.
40- **Did it ever work?** A known-good past release unlocks `git bisect` to the introducing
41 commit; no known-good point means you debug forward instead.
42- **What is the test runner and stack?** Vitest/Jest vs Playwright changes the determinism
43 API (`vi.setSystemTime` vs `page.clock`) and where the regression test lands.
44- **What are the non-determinism sources?** Time-of-day rules, randomness, third-party
45 APIs, locale — each must be pinned for the repro to be trustworthy.
46
47---
48
49## Core Principles
50
511. **Reproduce before you theorize.** The strongest wrong instinct is to read a symptom
52 and jump to a root cause ("sounds like a float rounding bug, let me patch the total
53 calc"). Don't. Extract the repro, make it fail on demand, and only then form a
54 hypothesis. A fix without a reproduction is a guess you can't falsify.
55
562. **A repro is a deterministic artifact, not a story.** "It happens around midnight with a
57 random code" is a story. Freeze the clock, seed the RNG, and stub the network so the
58 same inputs produce the same failure on every run and every machine. If it isn't
59 deterministic, you can't bisect it, test it, or prove it fixed.
60
613. **Minimize one variable at a time, and re-confirm after every cut.** Shrinking the repro
62 is a search, not a rewrite. Remove one step, data field, or dependency, then re-run and
63 confirm it *still reproduces*. Removing several at once tells you nothing about which one
64 mattered.
65
664. **The regression test is written RED, before the fix.** Assert the real expected value,
67 watch it fail first (proving it catches *this* bug), then watch the fix flip it green.
68 A test added after the fix, or one disabled / marked pending, proves nothing.
69
705. **Green isn't done — revert-to-verify is.** A passing test can pass for the wrong
71 reason. Temporarily remove the fix and confirm the test goes red again. Only a test that
72 fails without the fix actually guards against the bug.
73
74---
75
76## Step 1: Extract the implicit repro
77
78A thin report ("Checkout is broken, order total is wrong sometimes") names a symptom, not a
79path. Before any code, extract or ask for every reproducibility dimension. Never invent the
80repro steps from imagination, and never theorize a root cause yet — both come after the bug
81reproduces.
82
83For a "wrong total" / data-correctness bug, the load-bearing dimensions a thin report most
84often omits are:
85
86- **Exact steps to reproduce** — the click-by-click path, not "checkout is broken."
87- **Build / version / commit (git SHA)** — they may be on a build where it's already fixed.
88- **Environment** — browser + version, OS, device.
89- **Input data** — cart contents, quantities, the account/user, coupon, the exact fixture.
90 A total is a pure function of its inputs; without them you are guessing.
91- **Expected vs actual** — the number they expected and the number they saw.
92- **Frequency** — every time, or intermittent? "Sometimes" points at non-determinism.
93- **Locale / timezone / currency** — rounding, tax, and formatting are locale-specific; a
94 total "wrong" in `de-DE` may be correct in `en-US`.
95- **Timestamp** of occurrence, plus any logs/screenshots/network trace.
96
97Write these into a single repro spec before touching code. If a row is blank, that is your
98next question to the reporter — not a license to start writing the fix or theorizing.
99
100See `references/intake.md` for the full extraction checklist, why each load-bearing
101dimension matters for "wrong total," and the repro-spec template.
102
103---
104
105## Step 2: The reproduce→minimize→isolate→capture loop
106
107Given a confirmed-but-messy repro (e.g. 14 manual UI steps across 3 pages), do **not** hand
108the 14-step version to the developer and do **not** rewrite it wholesale. Run this loop:
109
1101. **REPRODUCE / confirm.** First establish a baseline: run the full repro and confirm it
111 actually fails. You can only minimize something that currently reproduces.
1122. **MINIMIZE.** Remove **one** step, field, or dependency. Re-run. If it *still reproduces*,
113 keep the cut; if it no longer fails, that element was load-bearing — restore it. Repeat,
114 one variable at a time, until every remaining piece is necessary. This is the core
115 ordering rule: never minimize before confirming it reproduces, and never omit verifying
116 it still fails after each cut.
1173. **ISOLATE.** Narrow the failure to the smallest layer that still shows it — drop from a
118 3-page UI flow to a single page, then to a unit/API call against the offending function
119 if the bug lives below the UI.
1204. **CAPTURE.** Record the now-**minimal** repro as evidence: the smallest steps or the
121 single command, plus logs/trace/screenshot. This is what the developer and the
122 regression test consume.
123
124The output is the *smallest* sequence that still reproduces — not the original walkthrough.
125
126---
127
128## Step 3: Bisect to the introducing commit
129
130The bug is on `HEAD` but a past release was clean, and you have a command that exits
131**non-zero when the bug is present**. Use `git bisect run` to binary-search history
132automatically — do not manually check out each commit, and do not use `git revert` to hunt
133for it.
134
135```sh
136git bisect start
137git bisect bad HEAD # current commit has the bug (alias: git bisect new)
138git bisect good v2.4.0 # last clean release (alias: git bisect old)
139git bisect run npm test -- checkout-total.spec.ts # ONE targeted test, never the full suite
140# bisect prints "<sha> is the first bad commit"
141git bisect reset # ALWAYS clean up — restores the original HEAD
142```
143
144The exit-code contract `git bisect run` uses: **exit code 0 = good** (bug absent),
145**non-zero (1–124) = bad** (bug present), **exit 125 = skip** (untestable). So your command
146must return 0 when the feature is fine and non-zero when the bug reproduces — most runners
147already do this. Run **one targeted test**, not `npm test:all` / the whole suite: an
148unrelated failure at an old commit would mark it bad and send the search down the wrong half.
149
150The `good`/`bad` pair assumes a regression (good in the past, bad now). The `old`/`new`
151aliases mean the same search and read better when hunting any state transition.
152
153See `references/bisect.md` for the full happy path and the skip/untestable wrapper.
154
155### Bisect skip and determinism (untestable or flaky commits)
156
157Two things corrupt a naive bisect, and the default bad answer — "exit 1 on any failure" —
158walks into both:
159
160- **Old commits won't build.** A compile error exits 1, which bisect reads as "bug present"
161 and marks a clean commit bad. Wrong: an unbuildable commit is **untestable** — your
162 wrapper script must `exit 125` (skip) on build failure, distinguishing it from a real
163 bad commit.
164- **Flaky network/timing failures.** A transient un-stubbed third-party call exits 1 and
165 gets blamed. Force determinism *during* bisect — stub the network, pin `TZ`, seed the
166 RNG — so only the real bug can fail the step. If a commit's result flips between runs,
167 treat it as untestable (`exit 125`), not bad.
168
169Wrap the step in a script that returns **0 = good, 1 = bad, 125 = skip** (the valid bad
170range is 1–127 *excluding* 125), guards the build, stubs the network, and retries once to
171catch flakiness. Then `git bisect run ./bisect-step.sh`. Full wrapper in
172`references/bisect.md`.
173
174---
175
176## Step 4: Make the repro deterministic
177
178The bug "only around midnight, with a random discount code, via a third-party pricing API"
179has three non-determinism sources. Pin all three so it **fails the same way every single
180run** — do not wait for midnight, do not let it hit the real pricing API, and never use a
181`sleep`/`setTimeout`/`waitForTimeout` to paper over timing.
182
183| Source | Vitest | Playwright |
184|--------|--------|-----------|
185| **Time** | `vi.useFakeTimers()` + `vi.setSystemTime(new Date('…'))` | `page.clock.install({ time })` + `page.clock.setFixedTime(…)` |
186| **Randomness** | `faker.seed(1337)` (or stub `Math.random`) | seed the app's RNG via an init hook |
187| **Network** | MSW `setupServer` + `http.get` → `HttpResponse.json` | `page.route(...)` → `route.fulfill(...)` |
188
189Key points:
190- **Vitest:** `vi.setSystemTime` only works after `vi.useFakeTimers()`. Seed faker in
191 `beforeEach`. Set MSW `onUnhandledRequest: 'error'` so a missed stub fails loudly.
192- **Playwright:** `page.clock.install`/`setFixedTime` must run **before** `page.goto`.
193 `page.clock` is the supported API — it exists; do not fall back to a hand-rolled `Date`
194 override, and do not bump the timeout to "make it pass."
195- Pin locale/timezone/currency (`TZ=UTC`, `LANG`) when the bug is locale-sensitive.
196
197**Avoid:** `jest.useFakeTimers('legacy')` (and `timers: 'legacy'`) — legacy fake timers are
198deprecated and don't mock `Date`/`Date.now`, so the clock stays live and your "frozen"
199repro still drifts. Modern timers are the default since Jest 27 — just call
200`jest.useFakeTimers()` + `jest.setSystemTime()`, or `vi.useFakeTimers()` in Vitest. (Jest 30,
2012025)
202
203See `references/determinism.md` for the full Vitest (`vi.useFakeTimers` + `vi.setSystemTime`
204+ `faker.seed` + MSW `setupServer`) and Playwright (`page.clock` + `page.route`) recipes,
205plus a 10-run determinism check.
206
207---
208
209## Step 5: Write the failing regression test (red) first
210
211You have a clean deterministic repro and the dev hasn't fixed it yet. Write the regression
212test **now**, before the fix, as TDD-for-bugs:
213
2141. Encode the minimal repro as a test that **asserts the real expected value** —
215 `expect(total).toBe(2754)`. A tautological assertion that always passes proves nothing.
2162. Run it and confirm it **fails before the fix** — it must be **red first**. A test that
217 doesn't go red isn't exercising the bug.
2183. **Commit the test** (or stage it on the fix branch) so the **test guards the fix** in CI.
2194. After the dev's fix lands, re-run: it should **flip to green**. Same test, no edits.
220
221Expected state: **red before the fix, green after the fix.**
222
223Wrong moves that defeat the point — a test that genuinely fails until *this* bug is fixed:
224writing the test only after the fix already landed; disabling the failing test (pending
225markers, an always-true tautology, or removing the assertion) just to keep CI green; or
226fixing first and bolting a test on afterward. Keep the assertion live and let it go red.
227
228See `references/determinism.md` for the deterministic test bodies the assertion sits in.
229
230---
231
232## Step 6: Verify the fix actually fixes it
233
234The dev pushed a fix and the regression test now passes. **Green is necessary but not
235sufficient** — a test can pass for an unrelated reason. Do not close on green alone or
236trust the dev's word. Run the validity check:
237
2381. **Revert the fix** temporarily (stash it, or `git stash`/comment the fix line) and
239 re-run the test. Confirm it **still fails without the fix**. That proves the
240 test actually exercises this bug (the test catches the bug) — that it passes *because of
241 the fix*, and is not passing for another reason unrelated to the defect.
2422. **Restore the fix** and confirm green returns.
2433. **Re-run deterministically** several times (`--repeat-each` / a loop) to confirm the
244 green is stable, not a lucky pass.
245
246Only when the test is red-without-fix and green-with-fix, repeatably, is the fix verified.
247This revert-to-verify step is the whole point of the regression test and is the one most
248often left out.
249
250---
251
252## Step 7: Flaky vs environment vs not-reproducible
253
254You spent two hours and it won't reproduce for you, but it clearly happens for the user. Do
255**not** close as "cannot reproduce" immediately, do not assume flaky and quarantine, and do
256not conclude "doesn't repro on my machine so it isn't real." These are three distinct
257diagnoses with distinct evidence:
258
259| Diagnosis | Discriminating evidence | What you do |
260|-----------|------------------------|-------------|
261| **Flaky** | Same code, same env, **passes and fails on the same commit** — run `--repeat-each 50` (or rerun the same command many times) in *one* environment and watch it flip | Find the non-determinism (time/RNG/network/race), make it deterministic (Step 4) |
262| **Environment-specific** | Reproduces only under a different config — **timezone, locale, viewport, OS, browser version, CI vs local** — and is stable within that config | Match the user's environment: reproduce *their* timezone/locale/OS/browser, then minimize |
263| **Data-dependent** | Reproduces only with the user's specific account/input | Get and replicate their data/fixture; the bug rides on the input, not the platform |
264| **Genuinely not reproducible** | None of the above reproduces after matching env + data + repeat runs | Document what you tried (envs, run counts, data) and the negative result — don't silently close |
265
266The step bare attempts miss: **match the reported user environment and data** before
267judging — replicate their config (timezone, locale, OS, browser version) and reproduce
268their env, then re-run. `--repeat-each` in the *same* env isolates true flakiness; cross-env
269divergence points to environment-specific; input-dependence points to data-specific.
270
271---
272
273## Step 8: Write the evidence back into the ticket
274
275Reproduction and the committed regression test are done. Replace the vague original report
276with a structured block — do **not** paste the raw 14-step UI walkthrough, and do **not**
277just write "reproduced, closing." Include all seven elements:
278
2791. **Minimal steps / repro command** — the smallest path, not the walkthrough.
2802. **Environment + build/commit** — exact SHA and platform.
2813. **Expected vs actual** — the concrete numbers.
2824. **Introducing commit** — the offending commit from `git bisect`.
2835. **Regression test** — link to the committed test file and path.
2846. **Evidence** — logs, screenshot, trace, or artifact.
2857. **Determinism notes** — seed, frozen time, and stubs so anyone can re-run identically.
286
287See `references/ticket-writeback.md` for the copy-paste Markdown structure.
288
289---
290
291## Anti-Patterns
292
293### 1. Jumping to the fix before reproducing
294Reading "total is wrong" and patching the total calc, or guessing "looks like a rounding
295bug," before you can make it fail on demand. You can't prove an unreproduced fix works.
296Extract the repro first (Step 1).
297
298### 2. Minimizing before confirming it reproduces
299Stripping steps from a repro you never confirmed actually fails. You end up "minimizing"
300something that was never broken. Confirm the baseline fails, *then* cut.
301
302### 3. Removing several variables at once
303Cutting three steps in one pass, so when it stops reproducing you don't know which one
304mattered. Remove one variable at a time and re-run after each.
305
306### 4. Bisecting the whole suite, or by hand
307`git bisect run npm test:all` lets unrelated failures mark commits bad; manual
308checkout-and-test is slow and error-prone. Run one targeted test under `git bisect run`.
309
310### 5. Exit 1 on build failure during bisect
311Treating an unbuildable commit as "bug present." It marks clean commits bad and corrupts
312the search. Return **exit 125** (skip) for untestable commits; reserve non-zero for the
313genuine bug.
314
315### 6. Live time, RNG, or network in the repro
316Leaving `new Date()` and `Math.random` unmocked, hitting the real pricing API, or
317"waiting for midnight" with a sleep. The repro becomes a coin flip. Freeze time, seed the
318RNG, stub the network (Step 4).
319
320### 7. Writing the test after the fix, or disabling it
321Adding the regression test once the bug is already gone, or neutering a failing test
322(pending markers, a tautological assertion, a removed assertion) to keep CI green. The test
323never proves it catches the bug. Write it red, before the fix.
324
325### 8. Closing on green without revert-to-verify
326"The test passes, close it." A test can pass for the wrong reason. Revert the fix, confirm
327it goes red again, restore, confirm green.
328
329### 9. Closing as "cannot reproduce" on first failure to repro
330Collapsing flaky / environment-specific / not-reproducible into one dismissal. Match the
331user's environment and data and use `--repeat-each` before judging (Step 7).
332
333---
334
335## Failure Modes
336
337| Symptom | Likely cause | Fix / check |
338|---------|--------------|-------------|
339| Bisect lands on an obviously unrelated commit | Full suite or flaky failures marking commits bad | Switch to one targeted test; wrap with exit-125 skip + network stub |
340| Repro passes locally, fails in CI (or vice versa) | Environment-specific (TZ, locale, OS, browser) | Pin `TZ`/`LANG`; match the failing environment (Step 7) |
341| Test is green but you're not sure it catches the bug | Never ran it red | Revert the fix and confirm it fails (Step 6) |
342| `vi.setSystemTime` has no effect | Called before `vi.useFakeTimers()` | Call `useFakeTimers()` first |
343| `page.clock` time not applied to app startup | `install`/`setFixedTime` ran after `page.goto` | Move clock setup before navigation |
344| Repro flips pass/fail run to run | Live time/RNG/network not pinned | Apply Step 4; confirm with `--repeat-each 10` |
345
346---
347
348## Verification
349
350- The repro command/test **fails on demand**: run it 10× (`--repeat-each 10` or a loop) and
351 confirm it fails every time before the fix.
352- `git bisect run …` terminates with "`<sha>` is the first bad commit" and `git bisect
353 reset` leaves you on the original `HEAD`.
354- With the fix reverted the regression test exits non-zero; with the fix applied it exits 0.
355- The ticket block contains all seven write-back elements (Step 8) — grep it for the
356 commit SHA, the test path, and the determinism notes.
357
358---
359
360## Done When
361
362- A documented **minimal** reproduction exists — smallest steps or a single command — that
363 fails on demand, verified failing across repeated runs.
364- If the bug is a regression, `git bisect` has named the introducing commit SHA and it is
365 recorded in the ticket.
366- The repro is deterministic: time frozen, RNG seeded, network stubbed — proven by 10
367 identical consecutive runs.
368- A regression test is committed that was **red before the fix and green after**, and was
369 confirmed to fail when the fix is reverted.
370- The ticket carries the structured evidence block with all seven elements (minimal steps,
371 environment/build, expected vs actual, introducing commit, regression-test link,
372 evidence artifact, determinism notes); the original vague report is replaced, not left.
373- If it did not reproduce, it is classified (flaky / environment-specific / data-dependent /
374 not-reproducible) with the evidence that led there — never silently closed.
375
376---
377
378## Related Skills
379
380- **`ai-bug-triage`** — Classify, deduplicate, and severity-route *existing* failures.
381 Triage decides *whether and where* a failure matters; come here to actually *reproduce*
382 one and write the failing test. Triage hands off; bug-reproduction picks up.
383- **`ai-test-generation`** — Generate tests from specs/PRDs/stories. Use it when the source
384 is a requirement; use this skill when the source is a *defect* and the test must first go
385 red against the bug.
386- **`test-reliability`** — Runtime self-healing and quarantine for a flaky test. When Step 7
387 diagnoses true flakiness, go there to stabilize or quarantine; here you only diagnose.
388- **`qa-project-context`** — Stack, test runner, environment matrix, and known-flaky areas
389 that shape every step above. Check it first.
390- **systematic-debugging** (`superpowers:systematic-debugging`) — The general root-cause
391 debugging loop once you have a deterministic repro; this skill produces that repro and
392 the failing test that guards the eventual fix.