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

Quanta-SDK v0.9.2 adds MCP server for quantum circuit execution via AI agents
Quanta-SDK v0.9.2 now includes an MCP (Model Context Protocol) server that provides AI agents like Claude or GPT with tools to execute and interpret quantum circuits. The server offers over 20 tools including circuit execution on IBM hardware, result interpretation, noise analysis, and quantum financial pricing.

Qwen 3.5 35B Running on 8GB VRAM with llama.cpp Configuration
A developer shares their llama.cpp configuration for running Qwen 3.5 35B (Q4_K_M GGUF) on an RTX 4060m with 8GB VRAM, achieving 700 t/s prompt processing and 42 t/s generation, and discusses using Cline in VSCode with kat-coder-pro and qwen3.5 modes.

Claude Code user creates /discuss command for read-only conversations
A Claude Code user created a 25-line custom skill called /discuss that enables read-only conversations without file modifications. The command allows code exploration, research, and discussion while preventing edits, using the --dangerously-skip-permissions flag with built-in safety.

Pilot Protocol: Open-Source P2P Network Stack for AI Agent Swarms
Pilot Protocol is an open-source Layer 3 and Layer 4 overlay network stack designed specifically for AI agent communication, providing direct encrypted UDP tunnels between agents with permanent 48-bit virtual addresses.