browser-review
Mandatory CloakBrowser Boundary
This boundary applies before every browser action:
Run exactly:
$HOME/.local/bin/cloakbrowser-cdp-health
If the command is missing or exits nonzero, stop immediately and report NOT_PROVEN.
Browser execution is permitted only through:
- the exact
$HOME/.local/bin/playwright-cli executable; run-code and --filename are forbidden;
- the approved Chrome DevTools MCP transport, exactly
/bin/sh -c 'exec "$HOME/.local/bin/chrome-devtools-mcp" --headless --isolated --no-usage-statistics --no-performance-crux'.
Never execute the Webwright Python runtime, stock/raw/in-app Browser, browser_agent, node_repl, computer-use, Playwright MCP, raw Playwright, bunx, npx, direct package invocations, alternate CDP endpoints, alternate browser executables, alternate browser configs, or any fallback. No fallback is allowed.
Use the managed Playwright CLI for browser flows, screenshots, snapshots, traces,
responsive checks, and long-horizon stepwise workflows. Use the managed Chrome
DevTools MCP transport for console, network, runtime, DOM/layout, performance,
Lighthouse, and memory diagnosis. webwright-task is a compatibility intent
only; it routes here and never authorizes Webwright runtime execution.
Run health again immediately before every browser action:
$HOME/.local/bin/cloakbrowser-cdp-health
$HOME/.local/bin/playwright-cli -s="${RY_PROJECT_SLUG:-rldyour}" open "$URL"
$HOME/.local/bin/cloakbrowser-cdp-health
$HOME/.local/bin/playwright-cli -s="${RY_PROJECT_SLUG:-rldyour}" snapshot
$HOME/.local/bin/cloakbrowser-cdp-health
$HOME/.local/bin/playwright-cli -s="${RY_PROJECT_SLUG:-rldyour}" screenshot
Report exact evidence paths and NOT_PROVEN for anything this boundary cannot
verify.
1---2name: browser-review3description: browser-review4---56# browser-review78## Mandatory CloakBrowser Boundary910This boundary applies before every browser action:11121. Run exactly:1314 ```bash15 $HOME/.local/bin/cloakbrowser-cdp-health16 ```1718 If the command is missing or exits nonzero, stop immediately and report `NOT_PROVEN`.192. Browser execution is permitted only through:20 - the exact `$HOME/.local/bin/playwright-cli` executable; `run-code` and `--filename` are forbidden;21 - the approved Chrome DevTools MCP transport, exactly `/bin/sh -c 'exec "$HOME/.local/bin/chrome-devtools-mcp" --headless --isolated --no-usage-statistics --no-performance-crux'`.223. Never execute the Webwright Python runtime, stock/raw/in-app Browser, `browser_agent`, `node_repl`, computer-use, Playwright MCP, raw Playwright, `bunx`, `npx`, direct package invocations, alternate CDP endpoints, alternate browser executables, alternate browser configs, or any fallback. No fallback is allowed.2324Use the managed Playwright CLI for browser flows, screenshots, snapshots, traces,25responsive checks, and long-horizon stepwise workflows. Use the managed Chrome26DevTools MCP transport for console, network, runtime, DOM/layout, performance,27Lighthouse, and memory diagnosis. `webwright-task` is a compatibility intent28only; it routes here and never authorizes Webwright runtime execution.2930Run health again immediately before every browser action:3132```bash33$HOME/.local/bin/cloakbrowser-cdp-health34$HOME/.local/bin/playwright-cli -s="${RY_PROJECT_SLUG:-rldyour}" open "$URL"35$HOME/.local/bin/cloakbrowser-cdp-health36$HOME/.local/bin/playwright-cli -s="${RY_PROJECT_SLUG:-rldyour}" snapshot37$HOME/.local/bin/cloakbrowser-cdp-health38$HOME/.local/bin/playwright-cli -s="${RY_PROJECT_SLUG:-rldyour}" screenshot39```4041Report exact evidence paths and `NOT_PROVEN` for anything this boundary cannot42verify.