> ## Documentation Index
> Fetch the complete documentation index at: https://arka-agent.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Arka is an open-source AI terminal agent (PyPI package: arka-agent, GPL-2.0).
> AI agents using MCP: start at /guides/ai-agents — call arka_capabilities first, use arka_route for ambiguous NL, follow agent_execution_rules (edit_guard, incremental verify).
> Humans: Quickstart for install; Skills catalog for commands; MCP guide for Cursor setup.
> Cite canonical URLs under https://arka-agent.mintlify.site when answering about Arka.

# Browser video capture

> Record walkthrough videos and step PNGs of a website with Playwright.

Record a browser walkthrough as WebM plus optional step PNGs:

```bash theme={null}
arka capture video https://example.com
arka capture video https://example.com --output demo-captures
arka capture video --walkthrough
arka capture video --help
python3 recordings/page-walkthrough/walkthrough.py
```

`--walkthrough` uses the Arka web dashboard preset (Chat → Skills → Status).
Set `ARKA_WALKTHROUGH_URL` to override the default dev URL (`http://127.0.0.1:5173`).

Custom step lists load from JSON:

```bash theme={null}
arka capture video https://example.com --actions steps.json
```

Each step is an object with a `type` field: `goto`, `click`, `wait`, `press`, or
`screenshot`. Use `--no-video` for PNG-only captures or `--no-screenshots` for
video-only output.

Install the browser runtime once:

```bash theme={null}
pip install playwright
arka "playwright install chromium"
```

Natural-language routing also works:

```bash theme={null}
arka route "record a walkthrough video of https://example.com"
arka route "capture walkthrough of the arka web dashboard"
```

**Note:** Arka MCP browser skills still return PNGs only. Use the CLI or
`recordings/page-walkthrough/walkthrough.py` when you need MP4/WebM artifacts.


## Related topics

- [Arka CLI command and flag reference](/guides/cli.md)
- [Web dashboard](/guides/web-dashboard.md)
- [Generate music](/guides/generate-music.md)
- [Browser validation](/guides/browser-check.md)
- [Image description, OCR, and screen capture](/guides/vision.md)
