What
Reproduced live on v0.2.0-rc.8 (insider) during pre-stable validation: the playwright MCP config (playwright-config.json) referenced a contextOptions.storageState file (playwright-storage-state.json) that does not exist on disk. Every browser_* tool call failed with ENOENT before the browser context could be built — Browser Mode was completely unusable on this install.
This is the same failure mode as #2209, which was closed as completed via 501cbe2 on 2026-08-08. Since it reproduced on rc.8 on 2026-08-10, either:
- the fix did not make the rc.8 cut, or
- the fix only covers freshly generated configs and does not repair/validate a pre-existing config that already points at a missing storage-state file (upgrade path).
Recovery path is not user-discoverable
Getting out of this state required:
kirocrew browse setup to regenerate a clean config (removes the storage-state reference), and
- killing the running playwright-mcp processes, because they cache the old config — which also kills the session's stdio MCP transport ("Transport closed" error), forcing a session restart.
No ordinary user will find this sequence. Until they do, every browser operation fails with an opaque ENOENT.
Expected
On Browser Mode startup (or config load), if the configured storage-state file is missing, either:
- seed it with an empty state (
{"cookies":[],"origins":[]}), or
- drop/skip the
storageState option gracefully and log a warning.
Additionally, the upgrade path should validate existing configs, not just newly generated ones.
Environment
- KiroCrew v0.2.0-rc.8 (insider channel), Linux
- Headless
--config path (no Chrome extension pairing)
- Found during full RC-8 release validation (CLI/API/MCP/UI test pass)
Ask before stable
If the fix from #2209 is in the release branch, please verify it handles the pre-existing-config case; if it isn't, cherry-pick it. This hard-breaks a headline feature out of the box.
What
Reproduced live on v0.2.0-rc.8 (insider) during pre-stable validation: the playwright MCP config (
playwright-config.json) referenced acontextOptions.storageStatefile (playwright-storage-state.json) that does not exist on disk. Everybrowser_*tool call failed with ENOENT before the browser context could be built — Browser Mode was completely unusable on this install.This is the same failure mode as #2209, which was closed as completed via 501cbe2 on 2026-08-08. Since it reproduced on rc.8 on 2026-08-10, either:
Recovery path is not user-discoverable
Getting out of this state required:
kirocrew browse setupto regenerate a clean config (removes the storage-state reference), andNo ordinary user will find this sequence. Until they do, every browser operation fails with an opaque ENOENT.
Expected
On Browser Mode startup (or config load), if the configured storage-state file is missing, either:
{"cookies":[],"origins":[]}), orstorageStateoption gracefully and log a warning.Additionally, the upgrade path should validate existing configs, not just newly generated ones.
Environment
--configpath (no Chrome extension pairing)Ask before stable
If the fix from #2209 is in the release branch, please verify it handles the pre-existing-config case; if it isn't, cherry-pick it. This hard-breaks a headline feature out of the box.