getpaseo/paseo

★ 17,806⑂ 2,031

Orchestrate multiple coding agents from desktop and mobile

About getpaseo/paseo

getpaseo/paseo is an open-source project on GitHub, mainly written in TypeScript. Orchestrate multiple coding agents from desktop and mobile It currently holds 17,806 stars and 2,031 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

AI Homed tracks it on the AI Coding Agents board.

GitHub Repository Details

Repository getpaseo/paseo · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

https://github.com/getpaseo/paseo/blob/HEAD/Paseo logo

Paseo

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

https://github.com/getpaseo/paseo/blob/HEAD/GitHub stars https://github.com/getpaseo/paseo/blob/HEAD/GitHub release https://github.com/getpaseo/paseo/blob/HEAD/X https://github.com/getpaseo/paseo/blob/HEAD/Discord https://github.com/getpaseo/paseo/blob/HEAD/Reddit

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

https://github.com/getpaseo/paseo/blob/HEAD/Paseo app screenshot

https://github.com/getpaseo/paseo/blob/HEAD/Paseo mobile app

Run agents in parallel on your own machines. Ship from your phone or your desk.

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 .

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:

Development

Quick monorepo package map:

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

GitHub Stars & Activity

17,806Stars
2,031Forks
0Open issues
TypeScriptLanguage

GitHub Popularity

GitHub stars17,806
Forks2,031
Open issues0
Primary languageTypeScript
License-
Stars gained today0
Created-
Last pushed-

Trending History

Trending statusnot on today's boards

Related AI Projects

1

thedotmack / claude-mem

TypeScript★ 94,310⑂ 8,324
2

Egonex-AI / Understand-Anything

TypeScript★ 83,393⑂ 7,038
3

stablyai / orca

TypeScript★ 73,154⑂ 4,785
4

ruvnet / ruflo

TypeScript★ 72,894⑂ 8,655
5

diegosouzapw / OmniRoute

TypeScript★ 68,420⑂ 9,682
6

CherryHQ / cherry-studio

TypeScript★ 52,015⑂ 4,981
7

chatboxai / chatbox

TypeScript★ 41,812⑂ 4,252
8

Yeachan-Heo / oh-my-claudecode

TypeScript★ 39,267⑂ 3,512

More AI Rankings