with one click
dev
Start or health-check docketeer in dev mode
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Start or health-check docketeer in dev mode
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| 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.