/chrome-cdp
Use when the user asks to interact with a web page, take a screenshot of a site, click or type in Chrome, scrape content, or debug a web UI. Connects to real Chrome tabs with existing logins.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/chrome-cdp
Context preview
What this command does when you run it.
Use when the user asks to interact with a web page, take a screenshot of a site, click or type in Chrome, scrape content, or debug a web UI. Connects to real Chrome tabs with existing logins.
Command definition
chrome-cdp.mddescription: Use when the user asks to interact with a web page, take a screenshot of a site, click or type in Chrome, scrape content, or debug a web UI. Connects to real Chrome tabs with existing logins.
allowed-tools: Bash, Read
argument-hint: <command> [args...]
context: fork
/chrome-cdp — Chrome Browser Automation
Control the user's **live Chrome browser** via Chrome DevTools Protocol. Connects to real tabs with existing cookies/logins — no fresh browser needed.
Prerequisites
- Chrome must have remote debugging enabled: `chrome://inspect/#remote-debugging` → toggle the switch
- Node.js 22+ (uses built-in WebSocket)
Commands
The CLI is at `skills/chrome-cdp/scripts/cdp.mjs` (relative to the amux repo root). Always run from the amux project directory.
List open tabs
node skills/chrome-cdp/scripts/cdp.mjs list
Returns tab IDs, titles, and URLs. Use the **target ID prefix** (e.g. `6BE827FA`) in all subsequent commands.
Screenshot
node skills/chrome-cdp/scripts/cdp.mjs shot <target> [file]
Captures the viewport as PNG. Prints DPR and coordinate mapping info. Default save path: `~/.cache/cdp/screenshot-<target>.png`
**Always read the screenshot file after capturing** to see what's on screen.
Accessibility tree (preferred for reading page content)
node skills/chrome-cdp/scripts/cdp.mjs snap <target>
Returns a compact semantic tree — much better than raw HTML for understanding page structure.
Evaluate JavaScript
node skills/chrome-cdp/scripts/cdp.mjs eval <target> <expression>
Runs JS in the page context. Avoid index-based DOM selection across multiple eval calls when the DOM can change between them.
Navigate
node skills/chrome-cdp/scripts/cdp.mjs nav <target> <url>
Navigates and waits for load completion.
Click
node skills/chrome-cdp/scripts/cdp.mjs click <target> <css-selector>
node skills/chrome-cdp/scripts/cdp.mjs clickxy <target> <x> <y> # CSS pixel coords
`click` scrolls the element into view first. `clickxy` takes CSS pixels (screenshot pixels / DPR).
Type text
node skills/chrome-cdp/scripts/cdp.mjs type <target> <text>
Uses `Input.insertText` — works in cross-origin iframes unlike eval-based approaches. Click/focus the input first.
Other commands
node skills/chrome-cdp/scripts/cdp.mjs html <target> [selector] # full page or element HTML
node skills/chrome-cdp/scripts/cdp.mjs net <target> # network resource timing
node skills/chrome-cdp/scripts/cdp.mjs loadall <target> <selector> [ms] # click "load more" until gone
node skills/chrome-cdp/scripts/cdp.mjs evalraw <target> <method> [json] # raw CDP command
node skills/chrome-cdp/scripts/cdp.mjs open [url] # open new tab
node skills/chrome-cdp/scripts/cdp.mjs stop [target] # stop daemon(s)
Typical workflow
# 1. List tabs
node skills/chrome-cdp/scripts/cdp.mjs list
# 2. Screenshot a tab
node skills/chrome-cdp/scripts/cdp.mjs shot 6BE827FA /tmp/page.png
# 3. Read the screenshot
# (use Read tool on /tmp/page.png)
# 4. Read page content
node skills/chrome-cdp/scripts/cdp.mjs snap 6BE827FA
# 5. Interact
node skills/chrome-cdp/scripts/cdp.mjs click 6BE827FA "button.submit"
node skills/chrome-cdp/scripts/cdp.mjs type 6BE827FA "Hello world"
Coordinates
Screenshots are at native resolution (CSS pixels × DPR). CDP input events use **CSS pixels**.
CSS px = screenshot px / DPR
`shot` prints the DPR. Typical Retina (DPR=2): divide screenshot coords by 2.
Notes
- Chrome shows an "Allow debugging" modal once per tab on first access. A background daemon keeps the session alive so subsequent commands need no further approval.
- Daemons auto-exit after 20 minutes of inactivity.
- Prefer `snap` over `html` for understanding page structure.
- Use `type` (not eval) to enter text — click to focus first, then type.
Gotchas
- Chrome must have remote debugging enabled (`chrome://inspect/#remote-debugging`) or all commands silently fail.
- First access to a tab triggers an "Allow debugging" modal — you must approve it before commands work.
- `clickxy` uses CSS pixels, not screenshot pixels. Divide screenshot coords by DPR (usually 2 on Retina).
- `eval` results are stringified — objects come back as `[object Object]` unless you `JSON.stringify()`.
- Don't chain multiple `eval` calls that depend on DOM index positions — the DOM can change between calls.
Read more
description: Use when the user asks to interact with a web page, take a screenshot of a site, click or type in Chrome, scrape content, or debug a web UI. Connects to real Chrome tabs with existing logins. allowed-tools: Bash, Read argument-hint: <command> [args...] context: fork
/chrome-cdp — Chrome Browser Automation
Control the user's **live Chrome browser** via Chrome DevTools Protocol. Connects to real tabs with existing cookies/logins — no fresh browser needed.
Prerequisites
- Chrome must have remote debugging enabled: `chrome://inspect/#remote-debugging` → toggle the switch
- Node.js 22+ (uses built-in WebSocket)
Commands
The CLI is at `skills/chrome-cdp/scripts/cdp.mjs` (relative to the amux repo root). Always run from the amux project directory.
List open tabs
node skills/chrome-cdp/scripts/cdp.mjs list
Returns tab IDs, titles, and URLs. Use the **target ID prefix** (e.g. `6BE827FA`) in all subsequent commands.
Screenshot
node skills/chrome-cdp/scripts/cdp.mjs shot <target> [file]
Captures the viewport as PNG. Prints DPR and coordinate mapping info. Default save path: `~/.cache/cdp/screenshot-<target>.png`
**Always read the screenshot file after capturing** to see what's on screen.
Accessibility tree (preferred for reading page content)
node skills/chrome-cdp/scripts/cdp.mjs snap <target>
Returns a compact semantic tree — much better than raw HTML for understanding page structure.
Evaluate JavaScript
node skills/chrome-cdp/scripts/cdp.mjs eval <target> <expression>
Runs JS in the page context. Avoid index-based DOM selection across multiple eval calls when the DOM can change between them.
Navigate
node skills/chrome-cdp/scripts/cdp.mjs nav <target> <url>
Navigates and waits for load completion.
Click
node skills/chrome-cdp/scripts/cdp.mjs click <target> <css-selector> node skills/chrome-cdp/scripts/cdp.mjs clickxy <target> <x> <y> # CSS pixel coords
`click` scrolls the element into view first. `clickxy` takes CSS pixels (screenshot pixels / DPR).
Type text
node skills/chrome-cdp/scripts/cdp.mjs type <target> <text>
Uses `Input.insertText` — works in cross-origin iframes unlike eval-based approaches. Click/focus the input first.
Other commands
node skills/chrome-cdp/scripts/cdp.mjs html <target> [selector] # full page or element HTML node skills/chrome-cdp/scripts/cdp.mjs net <target> # network resource timing node skills/chrome-cdp/scripts/cdp.mjs loadall <target> <selector> [ms] # click "load more" until gone node skills/chrome-cdp/scripts/cdp.mjs evalraw <target> <method> [json] # raw CDP command node skills/chrome-cdp/scripts/cdp.mjs open [url] # open new tab node skills/chrome-cdp/scripts/cdp.mjs stop [target] # stop daemon(s)
Typical workflow
# 1. List tabs node skills/chrome-cdp/scripts/cdp.mjs list # 2. Screenshot a tab node skills/chrome-cdp/scripts/cdp.mjs shot 6BE827FA /tmp/page.png # 3. Read the screenshot # (use Read tool on /tmp/page.png) # 4. Read page content node skills/chrome-cdp/scripts/cdp.mjs snap 6BE827FA # 5. Interact node skills/chrome-cdp/scripts/cdp.mjs click 6BE827FA "button.submit" node skills/chrome-cdp/scripts/cdp.mjs type 6BE827FA "Hello world"
Coordinates
Screenshots are at native resolution (CSS pixels × DPR). CDP input events use **CSS pixels**.
CSS px = screenshot px / DPR
`shot` prints the DPR. Typical Retina (DPR=2): divide screenshot coords by 2.
Notes
- Chrome shows an "Allow debugging" modal once per tab on first access. A background daemon keeps the session alive so subsequent commands need no further approval.
- Daemons auto-exit after 20 minutes of inactivity.
- Prefer `snap` over `html` for understanding page structure.
- Use `type` (not eval) to enter text — click to focus first, then type.
Gotchas
- Chrome must have remote debugging enabled (`chrome://inspect/#remote-debugging`) or all commands silently fail.
- First access to a tab triggers an "Allow debugging" modal — you must approve it before commands work.
- `clickxy` uses CSS pixels, not screenshot pixels. Divide screenshot coords by DPR (usually 2 on Retina).
- `eval` results are stringified — objects come back as `[object Object]` unless you `JSON.stringify()`.
- Don't chain multiple `eval` calls that depend on DOM index positions — the DOM can change between calls.
Open-source control plane for AI coding agents — run, monitor & orchestrate dozens of parallel Claude Code, Codex & Gemini sessions from one web dashboard or your phone. Self-healing, single-file, tmux-native.
Repo: mixpeek/amux
Other commands on amux.
- /aissue
Pick up an open issue from the amux issue tracker, mark it doing, work it, and mark it done.
Open command - /amux-board
Use when the user says "add to board", "create a task", or wants to track a todo on the amux kanban board
Open command - /amux
Use when you need to interact with the amux system — manage board tasks, check sessions, send emails, automate browsers, or work with CRM contacts
Open command - /orchestrate
Scaffold a closed orchestrator loop — creates the mission note, state/constraints notes, and a scheduler entry from the v2 template.
Open command - /playwright-auth
Use when the user needs to log into a website for browser automation, save auth cookies, or sync browser profiles to cloud
Open command - /pw-test
Use when you need to test the amux dashboard UI, investigate a visual bug, or verify a frontend change works correctly
Open command

