CEO-BASE: add verification rules, file BUG-080 (landing page not updated)

General lessons added to base prompt:
- User-facing material must reflect actual software state
- Verify live output before reporting completion
- Never bump version without checking user-visible changes
- Sub-agent work must be verified before reporting to investor
This commit is contained in:
Hoid 2026-02-20 08:05:18 +00:00
parent c984f260dd
commit 92947c7712
3 changed files with 34 additions and 1 deletions

View file

@ -39,4 +39,9 @@
## Open
No open bugs.
### BUG-007: Simultaneous browser restart causes QUEUE_FULL (HIGH)
- **Found:** Session 9
- **Impact:** When both browser instances hit RESTART_AFTER_MS simultaneously (every ~1h), all requests during the ~4s restart window queue for 30s then fail with 503 QUEUE_FULL
- **Root cause:** Both browsers initialized with same `lastRestartTime`, hit restart threshold together. `acquirePage()` triggers `scheduleRestart()` on both simultaneously.
- **Fix in progress:** Stagger restarts — only one browser restarts at a time + offset initial `lastRestartTime`
- **Status:** Fix assigned to snapapi-browser-fix sub-agent