Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Actionbook Browser Automation

A skill that drives the Actionbook CLI to operate any website — snapshot for element refs, then click, fill, scrape, across many tabs in parallel.

AutomationIntermediate41042AI score 9/10Last updated: Aug 15, 2026

What it does

  • Starts browser sessions, navigates to pages, runs snapshot to get stable element refs (@e3, @e7), then clicks, fills, selects, scrolls, drags and uploads.
  • Fully stateless commands with explicit --session/--tab, so dozens of tabs or sites can be driven concurrently (including batch tab/snapshot/click).
  • Covers observation (text, html, attrs, screenshot, PDF), cookies and storage, console logs, network requests and HAR recording, plus JavaScript eval.
  • Documents structured error codes (EVAL_*, CDP_*) with remediation steps and which ones are retryable, so an agent can self-recover.
  • Defines a safe login policy: pause on auth walls/MFA/CAPTCHA, keep the session open, and let the human log in manually.

Who it's for

  • Developers building browser-based AI agents, scrapers, or E2E tests against external sites.
  • Operators automating repetitive web work: data entry, form submission, content posting.
  • Research/monitoring teams that need to watch many pages at once.

Examples

  1. "Find a room in SF next week on Airbnb": start session → goto → snapshot → fill search box → click → wait for navigation.
  2. Open 10 competitor pricing pages with batch-new-tab + batch-snapshot and extract text into a comparison table.
  3. Record console errors and a HAR trace while loading a page to file a front-end bug report.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/aiskillstore/marketplace/HEAD/pending/actionbook/actionbook/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the pending/actionbook/actionbook folder from the GitHub repo aiskillstore/marketplace into my ~/.claude/skills/actionbook/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/aiskillstore/marketplace.git && mkdir -p ~/.claude/skills && cp -r marketplace/pending/actionbook/actionbook ~/.claude/skills/actionbook

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the marketplace repo: git clone https://github.com/aiskillstore/marketplace.git
  2. Copy the skill into your Claude skills folder: mkdir -p ~/.claude/skills && cp -r marketplace/pending/actionbook/actionbook ~/.claude/skills/actionbook
  3. Verify that SKILL.md and the references/ folder exist under ~/.claude/skills/actionbook/.
  4. Install the Actionbook CLI and confirm actionbook --help works (see https://actionbook.app for install instructions).
  5. Optional: create an API key at https://actionbook.app/dashboard and add export ACTIONBOOK_API_KEY="your-key" to your shell profile — without a key you are subject to public rate limits.
  6. Restart Claude Code and test with a request like "search this site for X" to confirm the skill activates.