An AI agent that runs on your machine, not someone else's.
Self-hosted AI agent with a native desktop app and web dashboard. Talks to you over Discord, Slack, WhatsApp, Telegram, or the browser.
No subscription. No cloud lock-in. Your data stays on your machine.
β οΈ Beta: This project is under active development. Expect breaking changes between versions.
pocekt-paw-intro.mp4
Download the native desktop app. It bundles the backend installer and provides a full-featured UI with system tray, global shortcuts, side panel, and multi-window support.
| Platform | Download |
|---|---|
| Windows | PocketPaw_0.1.3_x64-setup.exe |
| macOS (Apple Silicon) | PocketPaw_0.1.3_aarch64.dmg |
| macOS (Intel) | PocketPaw_0.1.3_x64.dmg |
| Linux (.deb) | PocketPaw_0.1.3_amd64.deb |
| Linux (.AppImage) | PocketPaw_0.1.3_amd64.AppImage |
macOS / Linux
Prerequisites:
- Python 3.11 or higher (download here)
- pip package manager (included with Python)
Quick install:
pip install pocketpaw && pocketpawRecommended install (with virtual environment):
# 1. Verify Python version (must be 3.11+)
python3 --version
# 2. Upgrade pip to latest version
python3 -m pip install --upgrade pip
# 3. Create and activate virtual environment (optional but recommended)
python3 -m venv pocketpaw-env
source pocketpaw-env/bin/activate
# 4. Install PocketPaw
pip install pocketpaw
# 5. Run PocketPaw
pocketpawOr use the automated install script:
curl -fsSL https://pocketpaw.xyz/install.sh | shWindows (PowerShell)
Prerequisites:
- Python 3.11 or higher β Download Python. During setup, check "Add Python to PATH".
- pip (included with Python)
Option A β Automated installer (recommended for beginners):
powershell -NoExit -Command "iwr -useb https://pocketpaw.xyz/install.ps1 | iex"Option B β Manual install:
-
Open PowerShell and verify Python version (must be 3.11+):
python --version -
Upgrade pip:
python -m pip install --upgrade pip
-
(Optional but recommended) Create and activate a virtual environment:
python -m venv pocketpaw-env .\pocketpaw-env\Scripts\Activate.ps1
-
Install PocketPaw:
pip install pocketpaw
-
Verify the installation by running:
pocketpaw --helpOr start the dashboard:
pocketpaw
If you installed PocketPaw with pip install pocketpaw and the pocketpaw command is not recognized:
'pocketpaw' is not recognized as an internal or external command
This usually means your Python Scripts directory is not on your PATH. By default it is at:
C:\Users\<your-username>\AppData\Local\Python\Python3.XX\Scripts
Find your exact Scripts path:
python -c "import sysconfig; print(sysconfig.get_path('scripts'))"How to fix:
- Open Start β Search "Environment Variables"
- Click "Edit the system environment variables"
- Click "Environment Variables"
- Under User variables β Select
Pathβ Click Edit - Add the Scripts directory path
- Restart your terminal
Alternatively, run PocketPaw without adding Scripts to PATH:
python -m pocketpaw[!TIP] First Run: After opening the dashboard, the system health may show UNHEALTHY β this is expected if no API key is configured. The app itself is running correctly; only AI features are disabled. Go to Settings > API Keys to add your key, or use Ollama for free local inference.
Note: Some features (browser automation, shell tools) work best under WSL2. Native Windows support covers the web dashboard and all LLM chat features.
Other methods
pipx install pocketpaw && pocketpaw # Isolated install
uvx pocketpaw # Run without installing
# From source
git clone https://github.com/pocketpaw/pocketpaw.git
cd pocketpaw && uv run pocketpawDocker
git clone https://github.com/pocketpaw/pocketpaw.git && cd pocketpaw
cp .env.example .env
docker compose up -dDashboard at http://localhost:8888. Get the access token:
docker exec pocketpaw cat /home/pocketpaw/.pocketpaw/access_tokenAgent-created files appear in ./workspace/ on the host. Optional profiles: --profile ollama (local LLMs), --profile qdrant (vector memory). Using Ollama on the host? Set POCKETPAW_OLLAMA_HOST=http://host.docker.internal:11434 in .env.
The web dashboard opens at http://localhost:8888. From there you can connect Discord, Slack, WhatsApp, or Telegram.
| π‘ 9+ Channels | Web Dashboard, Discord, Slack, WhatsApp, Telegram, Signal, Matrix, Teams, Google Chat |
| π§ 6 Agent Backends | Claude Agent SDK, OpenAI Agents, Google ADK, Codex CLI, OpenCode, Copilot SDK |
| π οΈ 50+ Tools | Browser, web search, image gen, voice/TTS/STT, OCR, research, delegation, skills |
| π Integrations | Gmail, Calendar, Google Drive & Docs, Spotify, Reddit, MCP servers |
| πΎ Memory | Long-term facts, session history, smart compaction, Mem0 semantic search |
| π Security | Guardian AI, injection scanner, tool policy, plan mode, audit log, self-audit daemon |
| π Local-First | Runs on your machine. Ollama for fully offline operation. macOS / Windows / Linux. |
You: "Every Sunday evening, remind me which recycling bins to put out"
Paw: Done. I'll check the recycling calendar and message you every Sunday at 6pm.
You: "Find that memory leak, the app crashes after 2 hours"
Paw: Found it. The WebSocket handler never closes connections. Here's the fix.
You: "I need a competitor analysis report for our product launch"
Paw: 3 agents working on it. I'll ping you when it's ready.
Everything goes through an event-driven message bus. Channels publish messages, the AgentLoop picks them up and routes to whichever backend you've configured. All six backends implement the same AgentBackend protocol, so swapping one for another doesn't touch the rest of the system.
The desktop client (client/) is a Tauri 2.0 + SvelteKit app that connects to the Python backend over REST and WebSocket. It provides system tray integration, global hotkeys, multi-window support (side panel, quick ask), and an onboarding wizard that handles backend installation.
| Backend | Key | Providers | MCP |
|---|---|---|---|
| Claude Agent SDK (Default) | claude_agent_sdk |
Anthropic, Ollama | Yes |
| OpenAI Agents SDK | openai_agents |
OpenAI, Ollama | No |
| Google ADK | google_adk |
Google (Gemini) | Yes |
| Codex CLI | codex_cli |
OpenAI | Yes |
| OpenCode | opencode |
External server | No |
| Copilot SDK | copilot_sdk |
Copilot, OpenAI, Azure, Anthropic | No |
A secondary LLM (Guardian AI) reviews every tool call before it runs. On top of that: injection scanning, configurable tool policies, plan mode for human approval, --security-audit CLI, a self-audit daemon, and an append-only audit log. Details in the docs.
Settings live in ~/.pocketpaw/config.json. You can also use POCKETPAW_-prefixed env vars or the dashboard Settings panel. API keys are encrypted at rest.
PocketPaw ships with a .env.example file that lists every supported environment variable with inline comments. Before running PocketPaw (especially when cloning from source or using Docker), copy it to .env and fill in the values you need:
# macOS / Linux
cp .env.example .env
# Windows (PowerShell)
Copy-Item .env.example .envThen open .env in your editor and uncomment / set the variables relevant to your setup. For example:
# LLM provider
POCKETPAW_ANTHROPIC_API_KEY=sk-ant-...
POCKETPAW_AGENT_BACKEND=claude_agent_sdk # or openai_agents, google_adk, etc.
# Optional: Telegram bot
POCKETPAW_TELEGRAM_BOT_TOKEN=...
POCKETPAW_ALLOWED_USER_ID=...Tip: Variables set in
.envare loaded automatically at startup. You can also export them directly in your shell or set them via the dashboard Settings panel β all three methods work interchangeably.
Alternatively, export variables directly in your shell:
export POCKETPAW_ANTHROPIC_API_KEY="sk-ant-..." # Required for Claude SDK backend
export POCKETPAW_AGENT_BACKEND="claude_agent_sdk" # or openai_agents, google_adk, etc.Note: An Anthropic API key from console.anthropic.com is required for the Claude SDK backend. OAuth tokens from Claude Free/Pro/Max plans are not permitted for third-party use. For free local inference, use Ollama instead.
See the full configuration reference for all settings.
Prerequisites:
- Python 3.11 or higher (download here)
- uv package manager
Install uv:
Warning
Windows users: You must open a new terminal window after running the install script below before uv will be recognized. The installer updates your PATH, but this change does not apply to your current terminal session β running uv immediately after install will give a CommandNotFoundException error.
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# Or via pip
pip install uvTip
Windows: To use uv immediately without opening a new terminal, run:
$env:Path = "$env:USERPROFILE\.local\bin;$env:Path"Then verify the installation: uv --version
Setup and run:
# 1. Verify Python version
python3 --version
# 2. Clone and enter the repository
git clone https://github.com/pocketpaw/pocketpaw.git && cd pocketpaw
# 3. Install with dev dependencies
uv sync --dev
# 4. Run PocketPaw in development mode (auto-reload)
uv run pocketpaw --dev
# 5. Run tests
uv run pytest --ignore=tests/e2e # Run tests (2900+)
# 6. Lint & format
uv run ruff check . && uv run ruff format .Optional extras
pip install pocketpaw[openai-agents] # OpenAI Agents backend
pip install pocketpaw[google-adk] # Google ADK backend
pip install pocketpaw[discord] # Discord
pip install pocketpaw[slack] # Slack
pip install pocketpaw[memory] # Mem0 semantic memory
pip install pocketpaw[all] # EverythingThe native desktop app lives in client/. It connects to the Python backend via REST/WebSocket.
Prerequisites:
cd client
bun install # Install dependencies
bun run dev # Vite dev server (http://localhost:1420)
bun run tauri dev # Full desktop app (frontend + Tauri shell)
bun run check # Type check
bun run tauri build # Production buildTech stack: SvelteKit 2 + Svelte 5, Tailwind CSS 4, shadcn-svelte, Tauri 2.0 (Rust). See client/CLAUDE.md for full architecture details.
pocketpaw.xyz covers getting started, backends, channels, tools, integrations, security, memory, and the full API reference.
- Twitter: @prakashd88
- Discord: discord.gg/asRrtm95Zc
- Email: pocketpawai@gmail.com
PRs welcome. Come build with us.
MIT Β© PocketPaw Team



