원클릭으로
dev
Start or health-check docketeer in dev mode
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Start or health-check docketeer in dev mode
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | dev |
| description | Start or health-check docketeer in dev mode |
Start docketeer in dev mode (with live reload) as a background process so you can monitor its output during development.
Ensure infrastructure is running: Run docker compose -f /home/chris/src/github.com/chrisguidry/docketeer/docker-compose.yml up -d to start Redis and any other backing services. This is idempotent — it will start containers if needed or report they're already running.
Check if already running: Use pgrep -af "docketeer start" | grep -v pgrep to see if a docketeer process exists (the grep filters out pgrep matching its own command line).
If running, check if it's ours: Try to match the PID to one of our background tasks (use TaskOutput with block=false). If it's not one of our background tasks (e.g. started from another terminal), kill it and start fresh — we need to own the process to monitor it.
If ours, health-check it: Read the tail of the background task output. Look for signs it's healthy vs borked:
If borked, not ours, or not running:
pkill -f "docketeer start" (and wait a moment for cleanup)uv run docketeer start --dev in the background using Bash with run_in_background: trueIf healthy: Just report that it's already running and looks good. Show a few recent lines of output so the user can see its state.
Report: Tell the user the background task ID and whether this was a fresh start or an existing healthy process.