mirror of
https://github.com/Druthulu/BFM-decomp
synced 2026-09-26 21:36:06 -04:00
c8c9fd20c1
- common.h: +NULL (byte-neutral; recovers 54/106 m2c CC1-fails that were just NULL-undeclared) - tools/auto_driver.py: never-stop worklist loop (m2c -> sig_unify -> byte-gate -> propagate -> commit), STOP-sentinel safe-exit at every fn boundary, heartbeat.json - tools/auto_supervisor.sh (pure-bash babysitter, relaunch-on-crash, reap permuters, MCP-off), auto_stop.sh (touch .run/auto/STOP), auto_status.sh (remote check-in) - p16_known_answer.py: +--gate (whole-binary capability test) - YIELD REALITY (honest, P9): macro+sig_unify whole-binary = 4/16 (25%) on KNOWN-matchable, ~1% on the unmatched hard tail. The permuter is the untested differentiator -> overnight test. - CURRENT_PHASE: full night's findings + Drew's never-stop/safe-exit/graduated-ladder refinements
10 lines
614 B
Bash
10 lines
614 B
Bash
#!/bin/bash
|
|
# auto_status.sh — show the unattended run's heartbeat + recent checkpoints (remote check-in).
|
|
cd "$(dirname "$0")/.."
|
|
echo "=== heartbeat (.run/auto/heartbeat.json) ==="
|
|
[ -f .run/auto/heartbeat.json ] && cat .run/auto/heartbeat.json || echo "(no heartbeat yet)"
|
|
echo; echo "=== STOP requested? ==="; [ -f .run/auto/STOP ] && echo "YES (.run/auto/STOP present)" || echo "no"
|
|
echo; echo "=== last 8 phase-16 checkpoints ==="
|
|
git log --oneline -8 --grep='phase-16' 2>/dev/null || git log --oneline -8
|
|
echo; echo "=== supervisor tail ==="; tail -6 .run/auto/supervisor.log 2>/dev/null || echo "(none)"
|