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).
54 lines
2.2 KiB
Bash
Executable File
54 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# run-phase.sh — run every remaining task of one phase to completion.
|
|
#
|
|
# Each task runs in its own pi process (fresh context) with the
|
|
# .agents/validate.sh gate after every task; the phase ends with its
|
|
# 00_phase.md final pass.
|
|
#
|
|
# Usage:
|
|
# run-phase.sh # next phase with pending work, to completion
|
|
# run-phase.sh 03_api # a specific phase (warns if out of order)
|
|
# run-phase.sh 03_api.md # a legacy single-file phase
|
|
#
|
|
# 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) — ${phase:-this phase} is left in $PHASE_TODO/; re-run to continue" >&2; exit 130' INT
|
|
trap 'echo; echo "✗ ERROR: interrupted (SIGTERM) — ${phase:-this phase} is left in $PHASE_TODO/; re-run to continue" >&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)"
|
|
|
|
phase="${1:-}"
|
|
if [[ -n "$phase" ]]; then
|
|
phase="${phase%/}"; phase="${phase%.md}"; phase="${phase%%/*}"
|
|
[[ -d "$PHASE_TODO/$phase" || -f "$PHASE_TODO/$phase.md" ]] || die "$phase not found in $PHASE_TODO/"
|
|
first="$(next_unit)"
|
|
if [[ -n "$first" && "${first%%/*}" != "$phase" ]]; then
|
|
warn "dependency order: $first is pending before $phase — running out of order"
|
|
fi
|
|
else
|
|
unit="$(next_unit)"
|
|
[[ -n "$unit" ]] || { echo "✓ no pending tasks in $PHASE_TODO/ — project complete."; exit 0; }
|
|
phase="$(unit_phase "$unit")"
|
|
fi
|
|
|
|
build_pi_args
|
|
failed=0
|
|
while unit="$(phase_next_unit "$phase")"; do
|
|
[[ -n "$unit" ]] || break
|
|
execute_unit "$unit" || { failed=1; break; }
|
|
done
|
|
if (( failed )); then
|
|
# execute_unit printed the failure detail (task failure: errors, logs,
|
|
# resume command — or phase-commit failure: the hand-fix command).
|
|
echo "✗ ERROR: phase $phase did not complete — see the error output above" >&2
|
|
exit 1
|
|
fi
|
|
echo "✓ phase $phase complete"
|
|
exit 0
|