delimit_build_loop_daemon
Spawns a background daemon that runs governed build, social, or deploy loops at regular intervals. Use for continuous iteration, not one-shot tasks.
Instructions
Background auto-pull daemon for governed build/social/deploy loops (Pro).
When to use: to spawn a long-running daemon that ticks the governed loop every N seconds — the orchestrating Claude session tails ~/.delimit/logs/loop_daemon_.jsonl for triage. When NOT to use: for one-shot iteration (use delimit_build_loop) or to read loop metrics (delimit_loop_status).
Sibling contrast: delimit_build_loop is one iteration; this is the long-running daemon.
Side effects: action="start" spawns a daemon thread that calls run_governed_iteration / run_social_iteration on a cadence. action="stop" halts. Each tick logs returned task_id to a JSONL. Respects delimit_loop_config safeguards (cost_cap, error_threshold, max_iterations, status=paused/stopped) via loop_status before each tick. Gated by require_premium.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | "start", "stop", or "status" (default). | status |
| session_id | No | Session to run. Required for all actions. | |
| interval_seconds | No | Tick interval. Default 900 (15 min). Used on start. | |
| loop_type | No | "build" (default), "social", or "deploy". Used on start. | build |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||