mirror of
https://github.com/Druthulu/BFM-decomp
synced 2026-09-26 13:33:34 -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
564 B
Bash
10 lines
564 B
Bash
#!/bin/bash
|
|
# auto_stop.sh — request a SAFE exit of the unattended Phase-16 run. The driver finishes the
|
|
# current function (gate+propagate+commit), writes a final heartbeat, and exits cleanly; the
|
|
# supervisor sees the sentinel and does not relaunch. Safe to run anytime, with or without a
|
|
# Claude session. Remove .run/auto/STOP to allow a future run.
|
|
cd "$(dirname "$0")/.."
|
|
mkdir -p .run/auto && touch .run/auto/STOP
|
|
echo "STOP requested -> .run/auto/STOP . The run will halt safely at the next function boundary."
|
|
echo "(Remove it with: rm .run/auto/STOP)"
|