Children never commit (their prompts forbid git add/commit, overriding project instructions) so the commit is deterministic. At the phase commit point (00_phase.md final pass) the harness makes ONE atomic commit: the phase's code changes, the todo→complete file move, and the executor reports, together. - Scoped staging: a worktree snapshot taken at the phase's first unit (phase-sessions/dirty-<phase>, always kept) is subtracted, so the owner's pre-existing uncommitted work is left alone; runtime artifacts are never staged. The commit prints exactly what went in. - Verified: the moved phase file (and report, unless gitignored) must be in the index before committing. - Loud on failure: a commit failure prints the git error + hand-fix and stops the run; the phase stays complete, the miss is never swept into a later phase. - PHASE_COMMIT_SUBJECT (default 'phase: <phase>'); the executor's final report becomes the commit body; --no-gpg-sign always passed. - PHASE_COMMIT defaults to 1: completed phases are committed by default. Explicit PHASE_COMMIT=0 opts out with a loud warning that the phase is complete but uncommitted — a completed phase is never left uncommitted silently (that gap let four phases pile up uncommitted in brain_of_reese).
48 lines
2.3 KiB
Bash
Executable File
48 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# auto-phase.sh — run the full phased pipeline, no LLM in the loop.
|
|
#
|
|
# Processes every pending task in .agents/phases/todo/ in pipeline order
|
|
# (phase order, then task order within each phase). Each task runs in its
|
|
# own pi process (fresh context); .agents/validate.sh runs after EVERY task.
|
|
# On failure the executor's session is resumed for up to MAX_FIX_ATTEMPTS
|
|
# fixer rounds. A task moves to .agents/phases/complete/ only after the
|
|
# child exits 0 AND validation passes; a phase completes when its
|
|
# 00_phase.md final pass succeeds (legacy phases: when their file moves).
|
|
# Stops at the first task that cannot be completed — re-run this script to
|
|
# continue where it stopped.
|
|
#
|
|
# Env: see SKILL.md (MAX_FIX_ATTEMPTS, PHASE_MODEL, PHASE_THINKING,
|
|
# PHASE_COMMIT, PI_TRUST, FRESH_FIX).
|
|
set -uo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "$SCRIPT_DIR/lib.sh"
|
|
|
|
# Make interruptions visible: state stays in .agents/phases/todo, and the
|
|
# failed executor's session is still resumable on the next run.
|
|
trap 'echo; echo "✗ ERROR: interrupted (SIGINT) — ${unit:-the pipeline} is left in $PHASE_TODO/; re-run to continue where it stopped" >&2; exit 130' INT
|
|
trap 'echo; echo "✗ ERROR: interrupted (SIGTERM) — ${unit:-the pipeline} is left in $PHASE_TODO/; re-run to continue where it stopped" >&2; exit 143' TERM
|
|
|
|
cd "$(find_root)" || die "no .agents/phases/todo found in this or parent directories (run /to-phase or /audit-create first)"
|
|
|
|
build_pi_args
|
|
delivered=()
|
|
while unit="$(next_unit)"; do
|
|
[[ -n "$unit" ]] || break
|
|
if ! execute_unit "$unit"; then
|
|
# execute_unit printed the failure detail (task failure: errors, logs,
|
|
# resume command — or phase-commit failure: the hand-fix command).
|
|
echo "✗ ERROR: pipeline stopped — $unit did not complete (see the error output above)" >&2
|
|
echo " re-run this script to continue where it stopped" >&2
|
|
exit 1
|
|
fi
|
|
delivered+=("$unit")
|
|
# Notify after every unit completes: a phase-end (00_phase.md / legacy file)
|
|
# announces the phase; a normal task file announces the task.
|
|
if is_phase_end "$unit"; then notify_task "$unit" phase; else notify_task "$unit" task; fi
|
|
done
|
|
|
|
echo
|
|
echo "✓ pipeline done — ${#delivered[@]} task(s) delivered this run: ${delivered[*]:-none}"
|
|
remaining="$(count_units)"
|
|
echo " remaining in $PHASE_TODO/: $remaining task(s)"
|