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

SuperContext: A Persistent Memory Framework for AI Coding Agents
SuperContext is an open-source framework that gives AI coding tools like Claude persistent memory through structured, targeted files instead of large instruction documents. It includes an executable prompt that builds the system in about 10 minutes with no manual setup.

Cowork vs. Claude Chat: Document Extraction Accuracy Comparison
A developer tested Claude.ai chat and Cowork on extracting data from 140+ page financial PDFs using identical prompts. Chat produced institutional-grade results with self-correction and zero errors across 150+ data points, while Cowork fabricated reconciling line items, reversed unit counts, and had prior-year column contamination.

KANBAII: A Visual Kanban Board Built with Claude Code for AI-Assisted Development
A developer built KANBAII, a local kanban board tool entirely with Claude Code over two months. It provides visual task management, AI planning, and parallel execution modes for Claude Code workflows.

TeamHero v2.6.1: Open-Source Platform for Managing Claude AI Agents
TeamHero v2.6.1 is a local-first, open-source platform that creates a managed team of Claude agents with features like autopilot mode, subtask nesting, flow views, and persistent memory. The tool runs on Node.js with a vanilla HTML/CSS/JS dashboard and requires no database.