getpaseo/paseo

Orchestrate multiple coding agents from desktop and mobile

Paseo – a self‑hosted hub for coding‑assistant agents

Paseo is an open‑source platform that lets you run AI‑powered coding agents (Claude Code, OpenAI Codex, GitHub Copilot, OpenCode, Pi) on your own machine and control them from any device – desktop, web, mobile, or the command line.

What it does

  • Runs a local daemon that orchestrates one or many agents and exposes a WebSocket‑based API.
  • Unified interface – the same UI/CLI works for all supported providers, so you can pick the model that fits each task.
  • Cross‑device access – pair phones, tablets, or remote servers to the daemon via encrypted relay, TCP, Tailscale, etc.
  • Voice mode – dictate tasks or discuss problems hands‑free.
  • Privacy‑first – everything stays on your hardware; no telemetry or forced log‑ins.
  • Extensible via plugins – add themes, panels, custom commands, or new agent providers with trusted TypeScript plugins.

How you use it

  1. Install the agent CLIs you need (Claude Code, Codex, Copilot, OpenCode, Pi) and configure their credentials.
  2. Start the Paseo daemon – either by launching the desktop app, running the global npm CLI (npm i -g @getpaseo/cli && paseo), or via the provided Docker image.
  3. Connect a client – desktop, mobile, web, or the CLI. The client talks to the daemon over a secure channel.
  4. Run commands such as:
    paseo run --provider codex/gpt-5.5 "implement feature X"
    paseo ls                     # list active agents
    paseo attach abc123          # stream live output
    
  5. Or integrate programmatically with the TypeScript SDK (@getpaseo/client) to create agents, feed prompts, and retrieve results.

Extensibility

  • Plugins (installed with paseo plugin add <source>) can provide new UI panels, workspace tools, or additional agent back‑ends.
  • Skills – small command‑line helpers (npx skills add getpaseo/paseo) that add shortcuts like /paseo-handoff (hand off work between agents) or /paseo-committee (run a pair of agents for analysis).

Deployment options

  • Native – run the daemon directly on macOS/Linux/Windows.
  • Docker – a ready‑to‑run container (ghcr.io/getpaseo/paseo:latest) that exposes the web UI on port 6767 and can be extended with the agent CLIs you need.

Who it’s for

  • Developers who want AI coding assistance but keep their code and credentials on‑premise.
  • Teams that need a shared, self‑hosted AI assistant that can be accessed from any device.
  • Anyone who wants to experiment with multiple coding‑agent models without juggling separate tools.

License

Apache‑2.0 – free to use, modify, and redistribute.


Bottom line: Paseo bundles the major AI coding assistants into a single, self‑hosted, privacy‑focused system with a unified UI, voice control, and extensibility through plugins and a TypeScript SDK.

Related

  • Dispatch
  • Project
  • Project
  • Project
  • Project