{"slug": "paseo-beautiful-open-source-coding-agent-interface-desktop-mobile-cli", "title": "Paseo – Beautiful open-source coding agent interface (desktop, mobile, CLI)", "summary": "Paseo has launched as an open-source coding agent interface that unifies Claude Code, Codex, Copilot, OpenCode, and Pi agents into a single platform with desktop, mobile, and CLI access. The self-hosted tool runs agents locally on users' machines with full development environments, supports voice control, and operates across iOS, Android, desktop, web, and terminal without telemetry or forced log-ins. Developers can run multiple agents in parallel, hand off work between different AI models, and connect from any device including phones via QR code scanning.", "body_md": "One interface for Claude Code, Codex, Copilot, OpenCode, and Pi agents.\n\nRun agents in parallel on your own machines. Ship from your phone or your desk.\n\n**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.\n\nPaseo 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.\n\nYou need at least one agent CLI installed and configured with your credentials:\n\nDownload it from [paseo.sh/download](https://paseo.sh/download) or the [GitHub releases page](https://github.com/getpaseo/paseo/releases). Open the app and the daemon starts automatically. Nothing else to install.\n\nTo connect from your phone, scan the QR code shown in Settings.\n\nInstall the CLI and start Paseo:\n\n```\nnpm install -g @getpaseo/cli\npaseo\n```\n\nThis shows a QR code in the terminal. Connect from any client. This path is useful for servers and remote machines.\n\nFor full setup and configuration, see:\n\nEverything you can do in the app, you can do from the terminal.\n\n```\npaseo run --provider claude/opus-4.6 \"implement user authentication\"\npaseo run --provider codex/gpt-5.4 --worktree feature-x \"implement feature X\"\n\npaseo ls                           # list running agents\npaseo attach abc123                # stream live output\npaseo send abc123 \"also add tests\" # follow-up task\n\n# run on a remote daemon\npaseo --host workstation.local:6767 run \"run the full test suite\"\n```\n\nSee the [full CLI reference](https://paseo.sh/docs/cli) for more.\n\nSkills teach your agent to use Paseo to orchestrate other agents.\n\n```\nnpx skills add getpaseo/paseo\n```\n\nThen use them in any agent conversation:\n\n`/paseo-handoff`\n\n— hand off work between agents. I use this to plan with Claude and then handoff to Codex to implement.`/paseo-loop`\n\n— loop an agent against clear acceptance criteria (aka Ralph loops), optionally with a verifier.`/paseo-advisor`\n\n— spin up a single agent as an advisor for a second opinion, without delegating the work itself.`/paseo-committee`\n\n— form a committee of two contrasting agents to step back, do root cause analysis, and produce a plan.\n\nQuick monorepo package map:\n\n`packages/server`\n\n: Paseo daemon (agent process orchestration, WebSocket API, MCP server)`packages/app`\n\n: Expo client (iOS, Android, web)`packages/cli`\n\n:`paseo`\n\nCLI for daemon and agent workflows`packages/desktop`\n\n: Electron desktop app`packages/relay`\n\n: Relay package for remote connectivity`packages/website`\n\n: Marketing site and documentation (`paseo.sh`\n\n)\n\nCommon commands:\n\n```\n# run all local dev services\nnpm run dev\n\n# run individual surfaces\nnpm run dev:server\nnpm run dev:app\nnpm run dev:desktop\nnpm run dev:website\n\n# build the server stack\nnpm run build:server\n\n# repo-wide checks\nnpm run typecheck\n```\n\n[paseo-relay](https://github.com/zenghongtu/paseo-relay)— self-hosted relay in Go\n\nSelf-hosted relays use `ws://`\n\nunless TLS is opted in. For a relay behind nginx on 443, start the daemon with:\n\n```\nPASEO_RELAY_ENDPOINT=127.0.0.1:8080 \\\nPASEO_RELAY_PUBLIC_ENDPOINT=relay.example.com:443 \\\nPASEO_RELAY_USE_TLS=true \\\npaseo daemon start\n```\n\nEquivalent config:\n\n```\n{\n  \"daemon\": {\n    \"relay\": {\n      \"enabled\": true,\n      \"endpoint\": \"127.0.0.1:8080\",\n      \"publicEndpoint\": \"relay.example.com:443\",\n      \"useTls\": true\n    }\n  }\n}\n```\n\nMinimal nginx WebSocket proxy:\n\n```\nserver {\n  listen 443 ssl;\n  server_name relay.example.com;\n\n  ssl_certificate /etc/letsencrypt/live/relay.example.com/fullchain.pem;\n  ssl_certificate_key /etc/letsencrypt/live/relay.example.com/privkey.pem;\n\n  location /ws {\n    proxy_pass http://127.0.0.1:8080;\n    proxy_http_version 1.1;\n    proxy_set_header Upgrade $http_upgrade;\n    proxy_set_header Connection \"upgrade\";\n    proxy_set_header Host $host;\n  }\n}\n```\n\nAGPL-3.0", "url": "https://wpnews.pro/news/paseo-beautiful-open-source-coding-agent-interface-desktop-mobile-cli", "canonical_source": "https://github.com/getpaseo/paseo", "published_at": "2026-06-02 22:34:42+00:00", "updated_at": "2026-06-02 22:47:06.047700+00:00", "lang": "en", "topics": ["ai-agents", "ai-tools", "ai-products", "ai-infrastructure", "ai-startups"], "entities": ["Paseo", "Claude Code", "Codex", "Copilot", "OpenCode", "Pi", "GitHub", "npm"], "alternates": {"html": "https://wpnews.pro/news/paseo-beautiful-open-source-coding-agent-interface-desktop-mobile-cli", "markdown": "https://wpnews.pro/news/paseo-beautiful-open-source-coding-agent-interface-desktop-mobile-cli.md", "text": "https://wpnews.pro/news/paseo-beautiful-open-source-coding-agent-interface-desktop-mobile-cli.txt", "jsonld": "https://wpnews.pro/news/paseo-beautiful-open-source-coding-agent-interface-desktop-mobile-cli.jsonld"}}