Allows to interact with web pages by performing actions such as clicking buttons, filling out forms, and navigating links. Use qutebrowser unless told to use chrome. It works by remote controlling Google Chrome or Chromium browsers using the Chrome DevTools Protocol (CDP). When Claude needs to browse the web, it can use this skill to do so.
Minimal CDP tools for collaborative site exploration.
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/start.js # Fresh profile
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/start.js --profile # Copy your profile (cookies, logins)
Start Chrome on :9222 with remote debugging. On NixOS this resolves google-chrome-stable (with fallbacks).
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/start-qute.js
Starts qutebrowser with the AGENTS profile and enables CDP on :9222 via QTWEBENGINE_REMOTE_DEBUGGING.
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/nav.js https://example.com
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/nav.js https://example.com --new
Navigate current tab or open new tab.
Qutebrowser note: --new (Target.createTarget) is not supported. Use qutebrowser CLI for background tabs:
qutebrowser -B "$HOME/.browser/AGENTS" -C "$HOME/.config/qutebrowser/config.py" --target tab-bg-silent "https://example.com"
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/eval.js 'document.title'
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/eval.js 'document.querySelectorAll("a").length'
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/eval.js 'JSON.stringify(Array.from(document.querySelectorAll("a")).map(a => ({ text: a.textContent.trim(), href: a.href })).filter(link => !link.href.startsWith("https://")))'
Execute JavaScript in active tab (async context). Be careful with string escaping, best to use single quotes.
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/screenshot.js
Screenshot current viewport, returns temp file path
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/pick.js "Click the submit button"
Interactive element picker. Click to select, Cmd/Ctrl+Click for multi-select, Enter to finish.
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/dismiss-cookies.js # Accept cookies
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/dismiss-cookies.js --reject # Reject cookies (where possible)
Automatically dismisses EU cookie consent dialogs.
Run after navigating to a page:
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/nav.js https://example.com && /home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/dismiss-cookies.js
Automatically started by start.js and writes JSONL logs to:
~/.cache/agent-web/logs/YYYY-MM-DD/<targetId>.jsonl
Manually start:
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/watch.js
Tail latest log:
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/logs-tail.js # dump current log and exit
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/logs-tail.js --follow # keep following
Summarize network responses:
/home/dejanr/.dotfiles/modules/home/cli/pi-mono/skills/web-browser/scripts/net-summary.js
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer