tachyon-browserlisted
Install: claude install-skill quantum-box/tachyon-skills
# Tachyon Browser
Use this skill to control the k3s-hosted Chromium CDP gateway at:
```text
browser-cdp.intra.quantum-box.com:9222
```
The gateway creates one Chromium Pod per `/sessions/<session_id>` and exposes it as a CDP WebSocket URL. It is intended for Cloudflare Mesh / WARP clients, such as Sakura VPS Claude Code, local Codex, and local automation.
## Rules
- Always pass a `ws://.../sessions/<id>` CDP URL to `agent-browser`.
- Do not pass `http://.../sessions/<id>` to `agent-browser`; its HTTP CDP handling drops the path and falls back to the shared root browser.
- Use the same value for the remote session id and `agent-browser --session` when possible. This avoids local daemon confusion.
- Session ids must match `[A-Za-z0-9._-]{1,96}`.
- Named session state, including cookies, localStorage, and cache, persists while the session Pod is alive.
- Session state is lost when the Pod is deleted by idle timeout, TTL, or explicit DELETE.
- Idle timeout is 30 minutes. Absolute TTL is 6 hours.
## Named Session
Use a named session when the user wants to reconnect to the same browser during a task.
```bash
SESSION_ID="sakura-job-001"
agent-browser \
--cdp "ws://browser-cdp.intra.quantum-box.com:9222/sessions/${SESSION_ID}" \
--session "${SESSION_ID}" \
open https://example.com
```
Continue using the same `SESSION_ID` for subsequent commands:
```bash
agent-browser \
--cdp "ws://browser-cdp.intra.quantum-box.com:9222/sessions/${SESSION_ID}" \
--session "${SESSI