cases.go.
1. Read the code (1 minute)
Openweb.go (the page and its Show cases selector) and cases.go (selectCases, and the fixed demonstration date demoToday, which keeps the walkthrough repeatable).
2. Prove the baseline and see it running (2 minutes)
Test PASSED: test and Successfully passed all targets.
Casework demo: http://127.0.0.1:8177 (synthetic data; fixed demo date 2026-09-14); the process keeps running. Open Tools → Browser, enter that URL: the page lists four cases under All. The preview is served through ReasonOS; you never connect to the branch server directly.
3. Describe the behavior as a test, watch it fail (2 minutes)
Append tocases_test.go and save:
rbs test //:test. Expect --- FAIL: TestOverdueCases with overdue filter refused: status must be all, open or closed — the service does not know the word yet.
4. Make the change, pass the gate (2 minutes)
ReplaceselectCases in cases.go:
web.go after Closed cases: <option value="overdue">Overdue cases</option>. Save both, then:
Result: PASSED and a line coverage above the sample’s 80% floor.
5. Preview the improvement (1.5 minutes)
In the first terminal press Ctrl-C and run the samerbs run command again (the binary is rebuilt). In the Browser panel load http://127.0.0.1:8177/?demo=2 (re-entering an unchanged URL does not reload; a changed query does) and choose Overdue cases: exactly CW-101 appears. All, Open and Closed still work.
6. Work on it together (1 minute)
Open the same branch workspace in a second browser window. In that window use Split Editor Right and openweb.go in the right-hand pane (under one sign-in, a second window opening the file in the same pane position takes over the first window’s connection; the split pane is the verified way around that — see Collaboration). Turn Collab on in both windows. Type (late work) after Overdue cases in the second window: the first window shows it as it is typed — press Cmd+F there and search late work if the line is wider than the pane. Save in the second window; the branch’s file now carries the shared edit.