long-running-orchestrator¶
Run multi-hour or multi-session work safely by combining the ledger, checkpoints, cost-ceiling guard, and resumable progress notes.
Workflow¶
- Initialize the ledger: ensure
ledger/current.mdexists; write objective + success criteria + plan checklist. - Run small, durable steps. After each meaningful step, append a dated note to
ledger/current.md(or runbash scripts/checkpoint.sh). - Update
ledger/verification.mdwhenever a test/build run produces a meaningful result. - Cost-ceiling guard (long-running-pack hook) protects against runaway loops.
- On forced stop or session end, summarize state in
ledger/current.mdbefore doing anything else. - First action of any resume session is to read
ledger/current.mdandledger/decisions.md. - Complete only when the objective is met, verification has run, and a summary is written.
Constraints¶
- Never claim progress that is not in the ledger.
- Never silently widen scope; for related-but-different work, write a new objective.
Install¶
gh skill install s-hiraoku/claude-harnesses long-running-orchestrator --scope project
Part of long-running-pack. Pair with /checkpoint and the SessionStart context injector.