HN 표시: Paseo – 휴대폰, 데스크톱 또는 단말기(FOSS)에서 코딩 에이전트 실행
hackernews
|
|
📦 오픈소스
#ai 딜
#claude
#gpt-5
#셀프 호스팅
#오픈소스
#코딩 에이전트
#클로드 코드
원문 출처: hackernews · Genesis Park에서 요약 및 분석
요약
Paseo는 사용자가 휴대폰, 데스크톱, 터미널 등 다양한 기기에서 코딩 에이전트를 실행하고 관리할 수 있도록 돕는 오픈소스 도구입니다. 자체 호스팅 방식을 통해 Claude Code, Codex 등 다양한 모델을 사용자의 로컬 개발 환경에서 병렬로 실행할 수 있으며, 음성 제어 및 크로스 플랫폼 기능을 제공합니다. 데스크톱 앱을 통해 손쉽게 설치할 수 있으며, 모든 소스 코드는 AGPL-3.0 라이선스 하에 GitHub에서 공개되어 있습니다.
본문
One interface for all your Claude Code, Codex and OpenCode agents. 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, and OpenCode 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. 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, scan the QR code shown in Settings. Install the CLI and start Paseo: npm install -g @getpaseo/cli paseo This shows a QR code in the terminal. Connect from any client. This path is useful for servers and remote machines. For full setup and configuration, see: 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. Experimental skills that teach agents how to use the Paseo CLI to orchestrate other agents. I am updating these very frequently as I learn new things, expect changes without notice, might be coupled to my own setup, use at your own risk. npx skills add getpaseo/paseo Then use them in any agent conversation: # Use handoff when you discuss something with an agent but want another one to implement. # I use this to plan with Claude and then handoff to Codex to implement. /paseo-handoff hand off the authentication fix to codex 5.4 in a worktree # Use loops when you have clear acceptance criteria (aka Ralph loops). /paseo-loop loop a codex agent to fix the backend tests, use sonnet to verify, max 10 iterations # Orchestrator teaches the agent how to create teams and manage them via a chat room. # Very opinionated and expects both Codex and Claude to work. /paseo-orchestrator spin up a team to implement the database refactor, use chat to coordinate. use claude to plan and codex to implement and review 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 package for remote connectivitypackages/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 daemon npm run build:daemon # repo-wide checks npm run typecheck AGPL-3.0
Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.
공유