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

ClawControl v1.7.1 fixes daily usage issues in OpenClaw client
ClawControl v1.7.1 is an open source client for OpenClaw available on Windows, Mac, Linux, iOS, and Android. This release focuses on fixing 'why is it doing that?' issues encountered during daily OpenClaw usage.

Claude Ops: Browser Dashboard for Claude Code Live Status and Subagent Tracking
A free, local macOS browser dashboard that tracks Claude Code session live status, current tool, spawned subagents, and sends OS push notifications when input is needed.

ByteRover Memory Plugin for OpenClaw: Native Integration with Semantic Hierarchy
ByteRover Memory Plugin for OpenClaw provides native, structured long-term memory via a three-layer architecture and semantic hierarchy stored in Markdown files. It achieves 92.2% retrieval accuracy and requires OpenClaw v2026.3.22+.

Claude Code HUD: Terminal Dashboard for Monitoring AI Coding Sessions
claude-code-hud is a terminal dashboard that provides real-time monitoring for Claude Code sessions, showing context window usage, API rate limits, and file changes without requiring an IDE. Run it with npx claude-code-hud.