Paseo: Open-Source Interface for Claude Code, Codex, Copilot, OpenCode, and Pi Agents

Paseo is an open-source coding agent interface that lets you run Claude Code, Codex, GitHub Copilot, OpenCode, and Pi agents from a single dashboard — on your phone, desktop, or CLI. It's self-hosted, privacy-first, and supports voice control.
How It Works
Paseo runs a local daemon that manages agent processes. Clients (desktop app, mobile app, web app, CLI) connect to it via WebSocket. Agents execute on your machine with your full dev environment, tools, configs, and skills.
Key Features
- Multi-provider: Claude Code, Codex, Copilot, OpenCode, and Pi through the same interface. Pick the right model for each job.
- Voice control: Dictate tasks or talk through problems hands-free.
- Cross-device: iOS, Android, desktop, web, and CLI. Start at your desk, check in from your phone, script from the terminal.
- Privacy-first: No telemetry, tracking, or forced log-ins.
- Parallel agents: Run multiple agents concurrently on your own machines.
Getting Started
Prerequisites: at least one agent CLI installed and configured. The desktop app is recommended — download from paseo.sh/download or the GitHub releases page. Open the app and the daemon starts automatically. To connect from your phone, scan the QR code in Settings.
For CLI / headless setups:
npm install -g @getpaseo/cli
paseoThis shows a QR code in the terminal. Connect from any client.
CLI Commands (Reproduced from Source)
Run agents, list them, attach to live output, and send follow-ups:
paseo run --provider claude/opus-4.6 "implement user authentication"
paseo run --provider codex/gpt-5.4 --worktree feature-x "implement feature X"
paseo ls
paseo attach abc123
paseo send abc123 "also add tests"Connect to a remote daemon with --host:
paseo --host workstation.local:6767 run "run the full test suite"Skills (Agent Orchestration)
Install skills to teach agents to orchestrate other agents:
npx skills add getpaseo/paseoThen use in any agent conversation:
/paseo-handoff— hand off work between agents (e.g., plan with Claude, handoff to Codex to implement)./paseo-loop— loop an agent against acceptance criteria (Ralph loops), optionally with a verifier./paseo-advisor— spin up a single agent as an advisor for a second opinion./paseo-committee— form a committee of two contrasting agents for root cause analysis and planning.
Development
The monorepo includes packages:
packages/server— daemon (agent orchestration, WebSocket API, MCP server)packages/app— Expo client (iOS, Android, web)packages/cli— CLI for daemon and agent workflowspackages/desktop— Electron desktop apppackages/relay— remote connectivitypackages/website— marketing site and docs
Common commands:
npm run dev
npm run dev:server
npm run dev:app
npm run dev:desktop
npm run dev:website
npm run build:server
npm run typecheckSelf-Hosted Relay
For remote daemon access, use the self-hosted Go relay. Note: self-hosted relays use ws:// unless TLS is opted in. Configure with environment variables:
PASEO_RELAY_ENDPOINT=127.0.0.1:8080
PASEO_RELAY_PUBLIC_ENDPOINT=relay.example.com📖 Read the full source: HN AI Agents
👀 See Also

Running Claude Code Offline on an M3 Pro with Qwen3.6: 4 Fixes That Made It Work
Four environment variable fixes get Claude Code running fully offline on an M3 Pro with Qwen3.6 (MoE, ~3B active), completing an SRE incident loop from investigation to PR without any data leaving the machine.

Claude Code documentation includes excessive React components inflating token counts
Analysis of Claude Code's LLM documentation reveals that MDX files contain massive inlined React components, with context-window.md using 18,501 tokens but only 551 tokens of actual documentation content.

Agent Smith: One Command To Scaffold MCP Servers, Skills, And A Ticket-To-PR Pipeline For Claude Code
Agent Smith scans your repo, detects exact stack (Go/Echo, React/Zustand, golang-jwt, pgx, etc.), sets up MCP servers, hooks, and skills tailored to your setup, and provides an autonomous ticket-to-PR pipeline.

Claude Code Routines: Schedule Agent Tasks Like Cron with Reasoning
Claude Code Routines let you run agent tasks on a schedule without keeping a session open. A Reddit user shares real examples: nightly commit review, weekly dependency check, daily error log analysis — with AI reasoning instead of raw script output.