一键导入
worker-operations
Use when handling day-to-day worker operations such as health checks, log triage, incident response, and rollback
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when handling day-to-day worker operations such as health checks, log triage, incident response, and rollback
用 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 | worker-operations |
| description | Use when handling day-to-day worker operations such as health checks, log triage, incident response, and rollback |
Use this skill for production support and incident response, not feature implementation.
Use this skill for active operations, not feature development.
curl -s https://ccr-router.jonathan-mohrbacher.workers.dev/health
Expected: ok
Authenticated check:
curl -s -o /tmp/worker_sessions.json -w "%{http_code}" \
-H "Authorization: Bearer $(cat /run/secrets/ccr_api_key)" \
"https://ccr-router.jonathan-mohrbacher.workers.dev/sessions"
Expected: HTTP 200
/sessions with valid bearer).401200machines table for recent last_poll_at).cd ~/projects/pigeon/packages/worker
export CLOUDFLARE_API_TOKEN="$(cat /run/secrets/cloudflare_api_token)"
wrangler tail --format=pretty
When reading logs, prioritize:
After deploy:
GET /health returns ok./sessions returns 200.{ ok: true, messageId, token }.Use rollback if:
Then:
/run/secrets/ files over manual exports or shell history.curl -s https://ccr-router.jonathan-mohrbacher.workers.dev/health
Expected: ok