Browser Action Engine for AI Agents
Actionbook provides up-to-date action manuals and DOM structure,
so your agent operates any website instantly without guessing.
- Why Actionbook?
- Quick Start
- Installation
- Examples
- Available Tools
- Documentation
- Development
- Contributing
Building reliable browser agents is difficult and expensive:
- Slow Execution: Agents waste time parsing full HTML pages to find elements.
- High Token Costs: Sending entire DOM trees to LLMs consumes massive context windows.
- Brittle Selectors: Updates to website UIs break hardcoded selectors and agent logic immediately.
- Hallucinations: LLMs often guess incorrect actions when faced with complex, unstructured DOMs.
Actionbook places up-to-date action manuals with the relevant DOM selectors directly into your LLM's context.
- 10x Faster: Agents access pre-computed "Action manuals" to know exactly what to do without exploring.
- 100x Token Savings: Instead of whole HTML page, agents receive only related DOM elements in concise, semantic JSON definitions.
- Resilient Automation: Action manuals are maintained and versioned. If a site changes, the manual is updated, not your agent.
- Universal Compatibility: Works with any LLM (OpenAI, Anthropic, Gemini) and any AI operator framework.
See how Actionbook enables an agent to complete an Airbnb search task 10x faster.
actionbook-demo.mp4
Get started with Actionbook in under 2 minutes:
Step 1: Install the CLI
npm install -g @actionbookdev/cliThe Rust-based CLI uses your existing system browser (Chrome, Brave, Edge, Arc, Chromium), so no extra browser install step is required.
Step 2: Use with any AI Agent
When working with any AI coding assistant (Claude Code, Cursor, etc.), add this to your prompt:
Use Actionbook to understand and operate the web page.
The agent will automatically use the CLI to fetch action manuals and execute browser operations.
Step 3 (Optional): Add the Skill
For enhanced agent integration, add the Actionbook skill:
npx skills add actionbook/actionbook# Install the Actionbook CLI globally
npm install -g @actionbookdev/cli
# Initialize local configuration
actionbook setupThe CLI is all you need to get started. For advanced use cases, Actionbook also offers an MCP Server and JavaScript SDK.
Explore real-world examples in the Examples Documentation.
Actionbook provides tools for searching and retrieving action manuals. See the CLI Reference for the full command list. If you're using the MCP integration, see the MCP Tools Reference.
For comprehensive guides, API references, and tutorials, visit our documentation site:
We move fast. Star Actionbook on Github to support and get latest information.
Join the community:
- Chat with us on Discord - Get help, share your agents, and discuss ideas
- Follow @ActionbookHQ on X - Product updates and announcements
This is a monorepo using pnpm workspaces and Turborepo.
- Node.js >= 18 (20+ recommended)
- pnpm >= 10
- PostgreSQL database (local or hosted like Neon / Supabase)
- Install dependencies:
pnpm install-
Configure environment variables by copying
.env.exampleto.envin the following packages:services/dbapps/api-serviceservices/action-builder(optional, for recording)services/knowledge-builder(optional, for knowledge extraction)
-
Run database migrations:
cd services/db && pnpm migratepnpm dev- Request a Website - Suggest websites you want Actionbook to index.
- Join the Waitlist - We are currently in private beta. Join if you are interested in contributing or using Actionbook.
See LICENSE for the license details.

