Sandbox
@getpaseo/paseo

Multi-agent orchestration for Claude Code, Codex, and Copilot

Paseo runs a local daemon that manages coding agents and lets you control them from desktop, mobile, web, or the terminal. It supports multiple providers, parallel tasks, voice input, and device pairing, with plugins and an SDK for extending the system.

16,765 stars1.9k forksTypeScriptUpdated 6d ago
Who it's for

Builders who want one place to start, monitor, and hand off work between coding agents across devices.

What it delivers

You can coordinate multiple agents from one workspace instead of juggling separate tools and sessions.

What it does

Multi-provider agent control

Runs Claude Code, Codex, Copilot, OpenCode, and Pi through the same interface.

Cross-device clients

Works across iOS, Android, desktop, web, and CLI so you can start work in one place and continue in another.

Local daemon

Keeps agents on your own machine with your environment, tools, and credentials.

CLI workflows

Lets you create, list, attach to, and send follow-up tasks to agents from the terminal with commands like `paseo run`, `paseo ls`, and `paseo attach`.

Plugins

Supports TypeScript plugins for themes, workspace panels, commands, settings screens, and provider integrations.

TypeScript SDK

Provides `@getpaseo/client` for building issue integrations, dashboards, and custom orchestration services.

Skills for handoff workflows

Includes skills such as `/paseo-handoff`, `/paseo-advisor`, and `/paseo-committee` for agent-to-agent coordination.

How to get it

  1. 1Install the CLI and start Paseo
    npm install -g @getpaseo/cli
    paseo
  2. 2Run 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

README

Paseo logo

Paseo

English · 简体中文 · 日本語 · 한국어

GitHub stars GitHub release X Discord Reddit

One interface for Claude Code, Codex, Copilot, OpenCode, and Pi agents.

Paseo app screenshot

Paseo mobile app

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 a local directory or Git repository with paseo plugin add <source>.

See the plugin docs for your Paseo version, or start with the 0.8 beta 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: paseo CLI for daemon and agent workflows
  • packages/desktop: Electron desktop app
  • packages/relay: Relay transport and encryption used by the daemon and clients
  • packages/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

Related projects

License

Apache-2.0

Files in the repo

Repository payload40 top-level entries
  • .agents
  • .claude
  • .github
  • docker
  • docs
  • fastlane
  • nix
  • packages
  • patches
  • plugin-examples
  • public-docs
  • scripts
  • skills
  • .dockerignore
  • .gitignore
  • .mise.toml
  • .oxfmtrc.json
  • .oxlintrc.json
  • .tool-versions
  • AGENTS.md
  • CHANGELOG.md
  • CLAUDE.md
  • cli-client-id
  • CONTRIBUTING.md
  • flake.lock
  • flake.nix
  • knip.json
  • lefthook.yml
  • LICENSE
  • package-lock.json
  • package.json
  • paseo.json
  • README.ja.md
  • README.ko.md
  • README.md
  • README.zh-CN.md
  • SECURITY.md
  • tsconfig.base.json
  • tsconfig.json
  • vitest.config.ts

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More agents

Hmbown/
Codewhale

Open-source coding agent for your terminal, built in Rust and on a journey of continuous community improvement. Issues and PRs welcome.

41k

A lightweight alternative to OpenClaw that runs in containers for security. Connects to WhatsApp, Telegram, Slack, Discord, Gmail and other messaging apps,, has memory, scheduled jobs, and runs directly on Anthropic's Agents SDK

31k
TokenRhythm/
opensquilla

OpenSquilla — Token-Efficient AI Agent with same budget, higher intelligence density

7k

An open-source AI coding agent that lives in your terminal.

28k
Untrivial-ai/
agent-orchestrator

Run and supervise teams of coding agents from planning to merge. Any harness (Claude code, codex, +25 more). Desktop, web, mobile, and cloud agents.

11k