Orchestrate multiple coding agents from desktop and mobile
$ npx -y skills add getpaseo/paseo --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: getpaseo/paseo
What's inside
Run agents in parallel on your own machines. Ship from your phone or your desk.
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.
You need at least one agent CLI installed and configured with your credentials:
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.
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:
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.
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.4 --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
paseo --host workstation.local:6767 run "run the full test suite"
See the full CLI reference for more.
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-loop โ loop an agent against clear acceptance criteria (aka Ralph loops), optionally with a verifier./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.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 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
AGPL-3.0
.agents/
skills/
release-beta/
SKILL.md
release-stable/
SKILL.md
.claude/
skills/
release-beta
release-stable
.dockerignore
.github/
ci-paths.yml
FUNDING.yml
ISSUE_TEMPLATE/
bug-report.yml
config.yml
PULL_REQUEST_TEMPLATE.md
workflows/
android-apk-release.yml
ci.yml
deploy-app.yml
deploy-relay.yml
deploy-website.yml
desktop-release.yml
desktop-rollout.yml
docker.yml
nix-update-hash.yml
nix.yml
release-notes-sync.yml
.gitignore
.mise.toml
.oxfmtrc.json
.oxlintrc.json
.tool-versions
AGENTS.md
CHANGELOG.md
CLAUDE.md
cli-client-id
CONTRIBUTING.md
docker/
base/
Dockerfile
rootfs/
usr/
local/
bin/
paseo-docker-entrypoint
docker-compose.example.yml
Dockerfile.agents.example
README.md
docs/
ad-hoc-daemon-testing.md
agent-lifecycle.md
android.md
architecture.md
browser-capture-harness.md
coding-standards.md
custom-providers.md
data-model.md
design.md
development.md
docker.md
expo-router.md
file-icons.md
floating-panels.md
forge-providers.md
forms.md
glossary.md
hover.md
hub.md
i18n.md
menus.md
mobile-panels.md
mobile-testing.md
opencode-global-event-baseline.md
product.md
protocol-compatibility.md
protocol-validation.md
providers.md
qa.md
refactors/
session-decomposition-plan.md
release.md
rpc-namespacing.md
service-proxy.md
terminal-activity.md
terminal-performance.md
testing.md
timeline-sync.md
unistyles.md
flake.lock
flake.nix
knip.json
lefthook.yml
LICENSE
nix/
desktop-package.nix
module.nix
npm-deps.hash
package.nix
package-lock.json
package.json
packages/
app/
.eas/
workflows/
release-ios-beta.yml
release-mobile.yml
resubmit-ios-review.yml
.gitignore
app.config.js
assets/
audio/
thinking-tone.wav
icons/
claude.svg
codex.svg
images/
android-icon-foreground.png
butterfly-green.svg
butterfly-white.svg
editor-apps/
antigravity.png
cursor.png
file-explorer.png
finder.png
vscode.png
webstorm.png
zed.png
favicon-dark-attention.png
favicon-dark-attention.svg
favicon-dark-running.png
favicon-dark-running.svg
favicon-dark.png
favicon-dark.svg
favicon-light-attention.png
favicon-light-attention.svg
favicon-light-running.png
favicon-light-running.svg
favicon-light.png
favicon-light.svg
favicon.png
icon.png
notification-icon.png
splash-icon.png
babel.config.js
e2e/
browser/
acp-permission-choices.real.spec.ts
acp-provider-catalog.spec.ts
add-changed-file-to-chat.spec.ts
add-project-flow.spec.ts
add-project-github.real.spec.ts
agent-consecutive-turns.spec.ts
agent-message-rewind.spec.ts
agent-message-submission.spec.ts
agent-scroll-return.spec.ts
agent-stream-ui.spec.ts
agent-tab-image-stability.spec.ts
agent-timeline-pagination-old-daemon.spec.ts
agent-timeline-pagination.spec.ts
agent-timeline-resume.spec.ts
appearance-theme-picker.spec.ts
archive-tab.spec.ts
archived-codex-agent.real.spec.ts
assistant-fork-menu.spec.ts
assistant-selection-copy.spec.ts
auto-archive-after-merge.real.spec.ts
bottom-sheet-reopen.spec.ts
branch-switcher.spec.ts
changes-pane.spec.ts
chat-outline.spec.ts
claude-workflow-project-inspection.real.spec.ts
claude-workflow-subagent.real.spec.ts
client-slash-commands.spec.ts
codex-plan-approval.spec.ts
command-center-agent-controls.spec.ts
command-center-host.spec.ts
command-center-scroll.spec.ts
command-center-workspace-actions.spec.ts
command-center-workspaces.spec.ts
commit-diff-panel.spec.ts
composer-attachments.spec.ts
composer-autocomplete.spec.ts
composer-control-density.spec.ts
directory-bootstrap.spec.ts
empty-project-persists.spec.ts
file-change-conflicts.spec.ts
file-editing.spec.ts
file-explorer-collapse.spec.ts
host-appearance.spec.ts
import-session.opencode.real.spec.ts
launcher-tab.spec.ts
new-workspace-codex-mode-preferences.spec.ts
new-workspace-composer-draft.spec.ts
new-workspace-dictation-submit.spec.ts
new-workspace-entry.spec.ts
new-workspace-host-project-preservation.spec.ts
new-workspace-isolation-memory.spec.ts
new-workspace-launch-composer.spec.ts
new-workspace-launch-memory.spec.ts
new-workspace-launch-terminal.spec.ts
new-workspace-meta-row-layout.spec.ts
new-workspace-mode-cycle-safety.spec.ts
new-workspace-preselect.spec.ts
new-workspace.spec.ts
out-of-band-command.codex.real.spec.ts
pair-device-relay.spec.ts
pr-pane.spec.ts
project-status-badge.spec.ts
projects-settings.spec.ts
provider-removal.spec.ts
provider-settings-refresh.spec.ts
provider-subagents.real.spec.ts
provider-usage-settings.spec.ts
provider-usage-tooltip.spec.ts
question-prompt-pagination.spec.ts
relay-deployment-reconnect.real.spec.ts
rewind-flow.claude.real.spec.ts
rewind-flow.codex.real.spec.ts
rewind-flow.opencode.real.spec.ts
rewind-flow.pi.real.spec.ts
rewind-flow.shared.ts
rewind-menu.ui-contract.spec.ts
same-directory-workspaces.spec.ts
schedules-edit-model-hydration.spec.ts
schedules-project-target.spec.ts
sessions-empty.spec.ts
sessions-search-hosts.spec.ts
sessions-search.spec.ts
settings-host-page.spec.ts
settings-host-selection.spec.ts
settings-i18n.spec.ts
settings-navigation.spec.ts
settings-toggle-tab-regression.spec.ts
sidebar-context-menu.spec.ts
sidebar-help.spec.ts
sidebar-host-filter-multi.spec.ts
sidebar-mobile-menu-sheets.spec.ts
sidebar-model-b.spec.ts
sidebar-project-grouping.spec.ts
sidebar-reorder.spec.ts
sidebar-resize-handle.spec.ts
sidebar-workspace-pin-shortcut.spec.ts
sidebar-workspace-rename.spec.ts
sidebar-workspace.spec.ts
startup-loading.spec.ts
startup-wire-metrics.spec.ts
subagent-detach.spec.ts
terminal-activity-indicators.spec.ts
terminal-alternate-screen.spec.ts
terminal-keystroke-stress.spec.ts
terminal-performance.spec.ts
terminal-protocol-query.spec.ts
terminal-split-resize.spec.ts
terminal-stuck-size.spec.ts
tool-call-shimmer.spec.ts
user-message-contract.ui-contract.spec.ts
viewed-agent-timelines.spec.ts
workspace-agent-tab-rename.spec.ts
workspace-agent-title-handoff.spec.ts
workspace-archive-shortcut.spec.ts
workspace-cwd.spec.ts
workspace-draft-thinking-preferences.spec.ts
workspace-focus-mode.spec.ts
workspace-lifecycle.spec.ts
workspace-model-regressions.spec.ts
workspace-model-restart.spec.ts
workspace-multiplicity.spec.ts
workspace-navigation-regression.spec.ts
workspace-pane-remount.spec.ts
workspace-pins.spec.ts
workspace-scripts-menu-resize.spec.ts
workspace-setup-runtime.spec.ts
workspace-setup-streaming.spec.ts
workspace-tab-switcher-rename.spec.ts
workspace-terminal-tab-rename.spec.ts
worktree-archive-risk-warning.spec.ts
worktree-archive.spec.ts
worktree-restore-after-restart.spec.ts
worktree-restore.spec.ts
fixtures/
claude-workflow/
inspect-project.js
one-child.js
helpers/
project-status-badge.ts
mobile/
agent-device/
file-context-menu.ios.ad
native-terminal-basic.android.ad
native-terminal-basic.ios.ad
native-terminal-hardware-keyboard.ios.ad
native-terminal-scroll.ios.ad
native-terminal-selection-panels.android.ad
native-terminal-selection-panels.ios.ad
support/
fixtures/
fixtures.ts
recording.baseline.txt
recording.wav
recording.webm
global-setup.ts
helpers/
add-project-flow.ts
agent-bottom-anchor.ts
agent-message-gate.ts
agent-stream.ts
agent-timeline-gate.ts
app.ts
archive-tab.ts
assistant-fork.ts
assistant-images.ts
branch-switcher.ts
chat-outline.ts
claude-workflow.ts
command-center-agent-controls.ts
command-center-scroll.ts
command-center-workspace-actions.ts
command-center.ts
composer-control-density.ts
composer.ts
daemon-client-loader.ts
daemon-port.ts
daemon-registry.ts
daemon-update.ts
daemon-websocket-gate.ts
directory-bootstrap-scenario.ts
e2e-worker.ts
file-callouts.ts
file-explorer.ts
github-fixtures.ts
hosts.ts
isolated-host-daemon.ts
launcher.ts
local-elixir-relay.ts
mock-agent.ts
new-workspace-launch.ts
new-workspace.ts
no-truncation.ts
node-ws-factory.ts
packaged-web-daemon.ts
pair-device.ts
paseo-home-fork.ts
permissions.ts
pins.ts
pr-pane.ts
project-grouping.ts
project-ownership.ts
project-picker-fixture.ts
project-picker-ui.ts
project-settings.ts
project-view-key.ts
provider-usage.ts
questions.ts
regex.ts
relay-deployment.ts
rename.ts
rewind-flow.ts
route-assertions.ts
schedule-fake-host.ts
seed-client.ts
server-id.ts
settings.ts
settled.ts
sheet-layout.ts
sidebar.ts
speech-env.ts
startup-dsl.ts
subagents.ts
terminal-dsl.ts
terminal-perf.ts
terminal-probes.ts
timeline-delivery.ts
timeline-pagination.ts
timeline-resume.ts
with-workspace.ts
workspace-lifecycle.ts
workspace-setup.ts
workspace-tabs.ts
workspace-ui.ts
workspace.ts
eas.json
eslint.config.js
fastlane/
Appfile
Fastfile
Gemfile
global.d.ts
index.ts
maestro/
.gitignore
assert-online.yaml
command-autocomplete.yaml
flows/
android-dev-client.yaml
connect-direct-if-welcome.yaml
dev-client.yaml
land-in-chat.yaml
... 1600 moreShowing a partial view of a very large repo.
FAQ
paseo is a Claude Code plugin with 5 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes paseo-advisor, paseo-committee, paseo-handoff. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.