@GitHub_Daily: Sometimes, I'll first have Claude think through the plan clearly, then hand it over to Codex to write the code. Copying…
Summary
Paseo is an open-source tool that integrates multiple coding agents like Claude Code, Codex, and Copilot into a single interface, enabling parallel execution and seamless task handoffs with a focus on privacy and cross-device accessibility.
View Cached Full Text
Cached at: 09/24/26, 08:31 PM
Sometimes, I’ll first have Claude think through the plan clearly, then hand it over to Codex to write the code. Copying context back and forth between the two Agent tools is pretty cumbersome.
I stumbled upon this open-source tool called Paseo, which has already racked up over 18,000 stars on GitHub.
It puts five coding Agents—Claude Code, Codex, Copilot, OpenCode, and Pi—into a single interface, letting you run them in parallel right on your own computer.
In Paseo, a single command can hand off the task along with its context to another Agent to pick up where it left off.
Beyond handoffs, you can also temporarily pull in an Agent for a second opinion, or pair up two Agents with opposing approaches to dig into the root cause of an issue together.
GitHub: http://github.com/getpaseo/paseo
It connects via desktop app, mobile, web, and command line, without collecting usage data or forcing you to log in.
getpaseo/paseo
Source: https://github.com/getpaseo/paseo
Paseo
One interface for Claude Code, Codex, Copilot, OpenCode, and Pi agents.
Run agents in parallel on your own machines. Ship from your phone or your desk.
- Self-hosted: Agents run on your machine with your full dev environment. Use your tools, your configs, and your skills.
- 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 in voice mode. Hands-free when you need it.
- Cross-device: iOS, Android, desktop, web, and CLI. Start work at your desk, check in from your phone, script it from the terminal.
- Privacy-first: Paseo doesn’t have any telemetry, tracking, or forced log-ins.
Plugins
Add themes, workspace panels, commands, settings screens, and coding-agent providers with trusted
TypeScript plugins. Install from npm, Git, or a local directory with paseo plugin install <source>.
Start with the plugin quickstart. Plugins run with access to your daemon machine and inside connected clients; install only code you trust.
Getting Started
Paseo runs a local server called the daemon that manages your coding agents. Clients like the desktop app, mobile app, web app, and CLI connect to it.
Prerequisites
You need at least one agent CLI installed and configured with your credentials:
Desktop app (recommended)
Download it from paseo.sh/download or the GitHub releases page. Open the app and the daemon starts automatically. Nothing else to install.
To connect from your phone, open Settings → your host → Pair Device.
CLI / headless
Install the CLI and start Paseo:
npm install -g @getpaseo/cli
paseo
Paseo starts locally, then asks whether to enable the end-to-end encrypted relay for device pairing. If you decline, connect directly over TCP, Tailscale, or another VPN. This path is useful for servers and remote machines.
For full setup and configuration, see:
Docker
Run the Paseo daemon and self-hosted web UI in Docker:
docker run -d --name paseo \
-p 6767:6767 \
-e PASEO_PASSWORD=change-me \
-v "$PWD/paseo-home:/home/paseo" \
-v "$PWD:/workspace" \
ghcr.io/getpaseo/paseo:latest
Open http://localhost:6767 after it starts. Extend the base image with the agent CLIs you use, then provide credentials through environment variables or the persistent /home/paseo volume. See the Docker documentation for full setup details.
CLI
Everything you can do in the app, you can do from the terminal.
paseo run --provider claude/opus-4.6 "implement user authentication"
paseo run --provider codex/gpt-5.5 --worktree feature-x "implement feature X"
paseo ls # list running agents
paseo attach abc123 # stream live output
paseo send abc123 "also add tests" # follow-up task
# run on a remote daemon; --cwd is a path on that host
paseo run --host workstation.local:6767 --cwd /workspace "run the full test suite"
See the full CLI reference for more.
TypeScript SDK
Build issue integrations, dashboards, and orchestration services with @getpaseo/client:
import { createPaseoClient } from "@getpaseo/client";
const client = createPaseoClient({ url: "ws://127.0.0.1:6767/ws" });
await client.connect();
const agent = await client.agents.create({
config: { provider: "codex/gpt-5.5" },
cwd: "/Users/me/dev/storefront",
prompt: "Review the current diff and name the riskiest change.",
});
const result = await agent.waitForFinish();
console.log(result.lastMessage);
await client.close();
See the SDK quickstart, recipes, and API reference.
Skills
Skills teach your agent to use Paseo to orchestrate other agents.
npx skills add getpaseo/paseo
Then use them in any agent conversation:
/paseo-handoff— hand off work between agents. I use this to plan with Claude and then handoff to Codex to implement./paseo-advisor— spin up a single agent as an advisor for a second opinion, without delegating the work itself./paseo-committee— form a committee of two contrasting agents to step back, do root cause analysis, and produce a plan.
Development
Quick monorepo package map:
packages/server: Paseo daemon (agent process orchestration, WebSocket API, MCP server)packages/app: Expo client (iOS, Android, web)packages/cli:paseoCLI for daemon and agent workflowspackages/desktop: Electron desktop apppackages/relay: Relay transport and encryption used by the daemon and clientspackages/website: Marketing site and documentation (paseo.sh)
Common commands:
# run all local dev services
npm run dev
# run individual surfaces
npm run dev:server
npm run dev:app
npm run dev:desktop
npm run dev:website
# build the server stack
npm run build:server
# repo-wide checks
npm run typecheck
Sponsors
Paseo is built by one person and funded by the people who use it. Support the work on GitHub Sponsors. Companies can sponsor Paseo monthly and have their logo shown here and on the paseo.sh homepage.
Related projects
- getpaseo/paseo-relay — official distributed relay, written in Elixir
- paseo-vscode — VS Code extension
License
Apache-2.0
Similar Articles
@GitHub_Daily: Running multiple tasks with Claude Code and Codex, switching back and forth in the terminal to check results is really inefficient. Recently I found Orca, which centrally manages multiple AI coding agents, letting them work in parallel and aggregating results in one interface. The core feature is support for parallel workspaces, sending one requirement to multiple agents simultaneously…
Orca is a unified AI coding agent management tool with support for parallel workspaces. It can send tasks simultaneously to multiple AI assistants like Claude Code and Codex, each generating code in independent git branches, allowing comparison of results, and comes with a mobile app for real-time tracking.
@svpino: Claude Code to write your code and Codex to verify it. I met with a team that's been doing this for a few weeks now. I …
A developer shares an approach where teams use Claude Code for writing code and Codex for verification, focusing on detailed specs and overnight AI agent runs.
I ran Claude code and Codex in parallel for 15 days. Here's what I found.
The author reviews Tutti, a shared multi-agent workspace, after using it for 15 days with Claude Code and Codex, highlighting workflow improvements like the @ system and agent borrowing, along with some drawbacks.
How I got Claude Code and Codex to pursue goals over weeks
The author built SmithersBot, an open-source agent harness that orchestrates Claude Code and Codex to pursue long-term goals over weeks by breaking plans into tasks, requiring approvals, and using checkpoints to avoid degradation.
@dr_cintas: You can use now Codex in Claude Code OpenAI has dropped a plugin that lets you run Codex directly inside Claude Code. C…
OpenAI released a plugin that integrates Codex into Claude Code, enabling code reviews and background tasks with a single install command.