# Solace AGI > AI browser automation with receipts. Recipes replace LLMs. $0.001 on replay. ## What Solace Does Solace Browser is a local AI automation engine. It navigates, clicks, fills forms, and captures SHA-256 evidence for every action. Recipes are captured workflows that replay deterministically at near-zero cost. ## API Base URL: http://localhost:8888 - POST /api/navigate {"url": "..."} — load a page - POST /api/click {"selector": "..."} — click an element - POST /api/fill {"selector": "...", "value": "..."} — fill a form field - POST /api/screenshot {} — take a screenshot - POST /api/evaluate {"expression": "..."} — run JavaScript - GET /api/status — check browser state ## Availability check ```bash curl -s http://localhost:8888/api/status | python3 -c "import sys,json; d=json.load(sys.stdin); ready = bool(d.get('running')) or d.get('status') in ('ready','ok','healthy'); print('OK' if ready else 'NOT RUNNING')" ``` ## Auth OAuth3 scopes: browser.navigate, browser.click, browser.fill, evidence.write, recipe.run When OAuth3 is enforced, include `Authorization: Bearer ` on control calls. BYOK: bring your own Anthropic/OpenAI key (zero markup) Managed LLM: +$3/mo (Together.ai/OpenRouter passthrough) ## Pricing Free: $0/mo | Starter: $8/mo | Pro: $28/mo | Team: $88/mo | Enterprise: $188/mo | Replay: $0.001/task ## Agent Integration CLAUDE.md snippet: https://solaceagi.com/agents/claude.md Cursor rules: https://solaceagi.com/agents/cursor Copilot: https://solaceagi.com/agents/copilot Codex AGENTS.md: https://solaceagi.com/agents/codex One-liner: curl -fsSL https://solaceagi.com/agents/claude.md >> CLAUDE.md