ワンクリックで
machine-setup-devbox
Use when onboarding or repairing devbox and workstation configuration for Pigeon daemon, hooks, and worker connectivity
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when onboarding or repairing devbox and workstation configuration for Pigeon daemon, hooks, and worker connectivity
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when deploying pigeon code changes across all machines after merging to main
Use when you need to understand worker architecture, endpoint flow, and command routing behavior before making changes
Use when you need to understand daemon route flow, storage model, worker connectivity, and command injection architecture before making changes
Use when you need to understand the OpenCode plugin event lifecycle, session state transitions, and daemon API contracts
Use when developing or refactoring OpenCode plugin handlers, tests, and daemon integration payloads
Use when you need to understand the swarm IPC subsystem — tables, routes, the per-target arbiter, the session→directory registry, and the wire envelope — before changing it
| name | machine-setup-devbox |
| description | Use when onboarding or repairing devbox and workstation configuration for Pigeon daemon, hooks, and worker connectivity |
Use this for new machine onboarding or broken environment recovery.
cd ~/projects/workstationsudo nixos-rebuild switch --flake .#devboxcd ~/projects/pigeonnpm installsystemctl status pigeon-daemon.service --no-pager
curl -s http://127.0.0.1:4731/health
systemctl status opencode-serve.service --no-pager
curl -s http://127.0.0.1:4096/global/health
test -r /run/secrets/ccr_api_key && echo ok
curl -s -o /tmp/sessions.json -w "%{http_code}" -H "Authorization: Bearer $(cat /run/secrets/ccr_api_key)" "https://ccr-router.jonathan-mohrbacher.workers.dev/sessions"
Expected:
{"healthy":true,...}