> ## Documentation Index
> Fetch the complete documentation index at: https://actionbook.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrate with OpenClaw

> Set up Actionbook in OpenClaw from scratch

Use this guide to set up Actionbook in OpenClaw.

## Step 1: Install Actionbook CLI

```bash theme={null}
npm install -g @actionbookdev/cli
```

Requires Node.js >= v18. Upgrade with `npm install -g @actionbookdev/cli@latest`.

## Step 2: Run `actionbook setup`

```bash theme={null}
actionbook setup
```

During setup, make sure Skills are installed to **OpenClaw global**.

Verify Actionbook is ready in OpenClaw:

```bash theme={null}
openclaw skills check
```

Quick smoke test:

```bash theme={null}
actionbook search "github repo stars" --domain github.com
```

You should see at least one result with an `ID`.

## Step 3: Disable OpenClaw built-in browser and set browser workflow to Actionbook

Disable the built-in browser:

```bash theme={null}
openclaw config set browser.enabled false --json
```

Then add this instruction to `~/.openclaw/workspace/TOOLS.md`:

```markdown theme={null}
## Browser automation preference
- Use Actionbook CLI for all website/browser operations.
- Do not use the built-in OpenClaw browser tool unless explicitly asked.
- Follow: `actionbook search` -> `actionbook get` -> operate.
```

Apply changes:

```bash theme={null}
openclaw gateway restart
```

## Try it

Ask OpenClaw:

```text theme={null}
Visit github.com/actionbook/actionbook and tell me how many stars it has.
```

## Next Steps

<CardGroup cols={2}>
  <Card title="CLI & Skills Guide" icon="terminal" href="/guides/cli-and-skills">
    Learn the search -> get -> operate workflow
  </Card>

  <Card title="CLI Reference" icon="code" href="/api-reference/cli">
    Full command reference for Actionbook CLI
  </Card>
</CardGroup>
