anza-ed25519-verified/verification/lift-guard.sh

197 lines
11 KiB
Bash
Raw Normal View History

verification: derive lift dependencies instead of hand-keeping them Round-9 swept all ten instruments per fork instead of only the two buttons, and found selftest-axgate.sh red in all four. Root cause, identical to the KERNLOG defect fixed the day before: a self-test lifts one phase out of check.sh and supplies its variables from a HAND-WRITTEN preamble, and the phase later grew a dependency nobody told the preamble about. Phase 2b stopped globbing Proofs/*.olean and started reading $PROOFS by membership. Bash does not error on an unset array under `set -u` — it expands to nothing — so the gate silently received expected := [".olean"] one entry with an empty name, and rejected the baseline via its own fail-closed absence check. Exit code right, reason wrong. · lift-guard.sh (new, pinned): derives every variable the lifted payload reads, subtracts what the driver defines, and fails AT LIFT TIME naming the remainder. Wired into all five lifting self-tests; selftest-shapes.sh drops its inline copy. One implementation, not five, since drifting out of sync is the entire failure mode. · selftest-axgate.sh: lifts PROOFS verbatim, and its case 2 now poisons a MANIFESTED leaf module rather than adding a stray file. The stray-file attack was a no-op against membership semantics — that is the dead-file gate's job, proven by selftest-harness case 8 — and it is also the weaker attack, since adding files to Proofs/ must clear a gate that editing an already-manifested module does not. · Phase 2c's accounting identity moves behind its own marker with its own ACCTFAIL verdict, so the phase is liftable by construction rather than by a self-test knowing where to stop. Truncating the lift range alone would have dropped Phase 2c's own verdict and left the test unable to fail. · The other four lifting self-tests assert on the PAYLOAD rather than the assembled driver, so a marker in the preamble cannot satisfy a check meant to prove the lift landed. Certified: 8/8 self-tests green in all four forks (~212 assertions, none failing); check.sh bytes unchanged and still matching the pin written before the 3h08m round-9 sweep, whose 36 GREEN button rows therefore stand. --audit-only re-run against the new HARNESS.sha256 in every fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 11:07:28 +00:00
#!/usr/bin/env bash
# lift-guard.sh <payload> <driver> [<phase-label>]
#
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
# Every VARIABLE the LIFTED PAYLOAD reads must be one the DRIVER defines.
#
# VARIABLES ONLY — and the emphasis is a round-8 correction (Claude, N1). A
# lifted payload also inherits FUNCTIONS, shell options, traps and a working
# directory from the script it was cut out of. This tool models none of those.
# A lifted phase calling a function defined in a neighbouring phase fails with
# `command not found`, loud under `set -e`, which is why it is not urgent; but
# the banner used to read as a completeness claim about lifting and it is a
# completeness claim about variables.
#
verification: derive lift dependencies instead of hand-keeping them Round-9 swept all ten instruments per fork instead of only the two buttons, and found selftest-axgate.sh red in all four. Root cause, identical to the KERNLOG defect fixed the day before: a self-test lifts one phase out of check.sh and supplies its variables from a HAND-WRITTEN preamble, and the phase later grew a dependency nobody told the preamble about. Phase 2b stopped globbing Proofs/*.olean and started reading $PROOFS by membership. Bash does not error on an unset array under `set -u` — it expands to nothing — so the gate silently received expected := [".olean"] one entry with an empty name, and rejected the baseline via its own fail-closed absence check. Exit code right, reason wrong. · lift-guard.sh (new, pinned): derives every variable the lifted payload reads, subtracts what the driver defines, and fails AT LIFT TIME naming the remainder. Wired into all five lifting self-tests; selftest-shapes.sh drops its inline copy. One implementation, not five, since drifting out of sync is the entire failure mode. · selftest-axgate.sh: lifts PROOFS verbatim, and its case 2 now poisons a MANIFESTED leaf module rather than adding a stray file. The stray-file attack was a no-op against membership semantics — that is the dead-file gate's job, proven by selftest-harness case 8 — and it is also the weaker attack, since adding files to Proofs/ must clear a gate that editing an already-manifested module does not. · Phase 2c's accounting identity moves behind its own marker with its own ACCTFAIL verdict, so the phase is liftable by construction rather than by a self-test knowing where to stop. Truncating the lift range alone would have dropped Phase 2c's own verdict and left the test unable to fail. · The other four lifting self-tests assert on the PAYLOAD rather than the assembled driver, so a marker in the preamble cannot satisfy a check meant to prove the lift landed. Certified: 8/8 self-tests green in all four forks (~212 assertions, none failing); check.sh bytes unchanged and still matching the pin written before the 3h08m round-9 sweep, whose 36 GREEN button rows therefore stand. --audit-only re-run against the new HARNESS.sha256 in every fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 11:07:28 +00:00
# Prints the offending names and exits 1 if any are missing.
#
# ───────────────────────────────────────────────────────────────────────────
# WHY THIS EXISTS — 2026-08-02
#
# Five of this repository's self-tests work by lifting one phase out of
# check.sh and running it standalone against a deliberately corrupted tree.
# That is the right design: the test then attacks the SHIPPING gate rather
# than a re-implementation of it. But a lifted phase is a fragment, and it
# reads variables its neighbours defined. Each self-test therefore carries a
# hand-written preamble supplying them.
#
# A hand-written preamble is a hand-kept list, and hand-kept lists drift. Twice
# in two days a phase grew a dependency and no preamble was told:
#
# · Phase 2c grew an accounting block reading $KERNLOG, a file Phase 2b
# creates. selftest-shapes.sh died on its first expansion under `set -u`.
# It could not pass on any fork from the moment that block was added.
#
# · Phase 2b changed from globbing Proofs/*.lean to reading the $PROOFS
# membership manifest — the spelling-versus-ownership fix ScalarPackSpec
# forced. selftest-axgate.sh's preamble was never told. Bash does NOT
# error on an unset array expansion under `set -u`; it expands to nothing,
# so `printf '"%s.olean", ' "${PROOFS[@]}"` silently produced
# expected := [".olean"]
# — one entry, empty name — and the gate's own fail-closed absence check
# rejected it. The baseline went red and both attack cases were then
# rejected for the WRONG REASON.
#
# Both failed loudly rather than passing vacuously, which is the only reason
# they were not false assurance. That is luck, not design: a missing variable
# that happens to make an ATTACK case die still looks like the attack being
# caught, and only the substring assertions in each `expect` helper stand
# between that and a green test measuring nothing.
#
# The fix for the CLASS is to stop maintaining the list by hand. This tool
# derives the requirement from the two artifacts themselves, so a phase that
# grows a new dependency fails AT LIFT TIME, naming it, instead of dying
# mid-run or — worse — passing for the wrong reason.
#
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
# WHAT IT IS NOT. This is a shell-text approximation, not a bash parser. It
# still cannot see a name built at runtime or passed through `eval`, and it
# models variables only — not functions, shell options, traps or the working
# directory a lifted phase also inherits. It is a tripwire on failure modes
# that actually occurred, not a proof of closure.
#
# Where it CANNOT bound the reads it refuses rather than staying silent:
# indirect expansion (`${!name}`) is detected and fails the lift. That is the
# round-8 correction — a guard whose contract is "does not miss a dependency"
# must say so when it cannot honour it, instead of shrugging.
verification: derive lift dependencies instead of hand-keeping them Round-9 swept all ten instruments per fork instead of only the two buttons, and found selftest-axgate.sh red in all four. Root cause, identical to the KERNLOG defect fixed the day before: a self-test lifts one phase out of check.sh and supplies its variables from a HAND-WRITTEN preamble, and the phase later grew a dependency nobody told the preamble about. Phase 2b stopped globbing Proofs/*.olean and started reading $PROOFS by membership. Bash does not error on an unset array under `set -u` — it expands to nothing — so the gate silently received expected := [".olean"] one entry with an empty name, and rejected the baseline via its own fail-closed absence check. Exit code right, reason wrong. · lift-guard.sh (new, pinned): derives every variable the lifted payload reads, subtracts what the driver defines, and fails AT LIFT TIME naming the remainder. Wired into all five lifting self-tests; selftest-shapes.sh drops its inline copy. One implementation, not five, since drifting out of sync is the entire failure mode. · selftest-axgate.sh: lifts PROOFS verbatim, and its case 2 now poisons a MANIFESTED leaf module rather than adding a stray file. The stray-file attack was a no-op against membership semantics — that is the dead-file gate's job, proven by selftest-harness case 8 — and it is also the weaker attack, since adding files to Proofs/ must clear a gate that editing an already-manifested module does not. · Phase 2c's accounting identity moves behind its own marker with its own ACCTFAIL verdict, so the phase is liftable by construction rather than by a self-test knowing where to stop. Truncating the lift range alone would have dropped Phase 2c's own verdict and left the test unable to fail. · The other four lifting self-tests assert on the PAYLOAD rather than the assembled driver, so a marker in the preamble cannot satisfy a check meant to prove the lift landed. Certified: 8/8 self-tests green in all four forks (~212 assertions, none failing); check.sh bytes unchanged and still matching the pin written before the 3h08m round-9 sweep, whose 36 GREEN button rows therefore stand. --audit-only re-run against the new HARNESS.sha256 in every fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 11:07:28 +00:00
# ───────────────────────────────────────────────────────────────────────────
set -euo pipefail
PAYLOAD="${1:?usage: lift-guard.sh <payload> <driver> [phase-label]}"
DRIVER="${2:?usage: lift-guard.sh <payload> <driver> [phase-label]}"
LABEL="${3:-the lifted phase}"
for f in "$PAYLOAD" "$DRIVER"; do
[ -s "$f" ] || { echo "FATAL: lift-guard: '$f' is missing or empty."; exit 1; }
done
UNBOUND=$(python3 - "$PAYLOAD" "$DRIVER" <<'PYGUARD'
import re, sys
payload = open(sys.argv[1]).read()
driver = open(sys.argv[2]).read()
# What the payload READS. Deliberately over-approximates: a name mentioned in a
# comment costs one lifted definition, a name missed costs a broken self-test.
reads = set(re.findall(r'\$\{?([A-Za-z_][A-Za-z0-9_]*)', payload))
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
# ARITHMETIC CONTEXTS READ NAMES WITHOUT A `$`. Round-8 review (Claude, N1):
# echo $((X + 1)) reads X
# (( Y > 0 )) && ... reads Y
# and the pattern above cannot see either, because the character after `$` is
# `(`. This is the guard's own failure mode — a phase growing a dependency the
# guard is blind to — and `if [ $((inm + ins)) -eq 0 ]` is already live in
# check.sh's Phase 1b. Not lifted today, which made it latent, not absent.
for expr in (re.findall(r'\$\(\((.*?)\)\)', payload, re.S)
+ re.findall(r'(?<!\$)\(\((.*?)\)\)', payload, re.S)):
lift-guard: eleven more classes, two of them regressions I introduced Round-9 review (Claude, N1). The brief said "assume there are more"; there were eleven, and two were introduced by the round-8 fix itself. INTRODUCED BY THE ARITHMETIC TOKENISATION — the round-8 fix for a false NEGATIVE created two false POSITIVES. The interior of `$(( ))` was tokenised with `[A-Za-z_][A-Za-z0-9_]*`, which starts matching at the letter-bearing tail of a numeric literal: echo $((0x1F)) -> FATAL: reads x1F echo $((1e3)) -> FATAL: reads e3 Now anchored so a match cannot begin after a digit or word character. INTRODUCED BY THE INDIRECT-EXPANSION REFUSAL, and this is the one that matters. `${!...}` has three meanings and `re.search(r'\$\{!')` cannot tell them apart: ${!name} indirect expansion — genuinely unanalysable ${!arr[@]} ${!arr[*]} array KEY expansion — ordinary ${!prefix*} ${!prefix@} variable-NAME listing — ordinary A refusal is the most expensive verdict this tool has — it hard-fails the lift — and it was firing on two ordinary constructs with a diagnostic naming a feature they do not use. The reviewer found it LIVE: ltl-accumulator check.sh:274 is `for cert in "${!CONES[@]}"`, so the day lift-guard is ported there, any lift covering that line would have refused. The four forks carry five arrays each, so it was one ordinary edit away from firing there too. Now matched only for genuine `${!name}`. SEVEN MORE BINDING FORMS the driver uses and the guard demanded anyway: let FOO=1 · (( FOO = 1 )) · BAR+=b · FOO[0]=x for (( i=0; i<3; i++ )) · select FOO in · getopts "o" FOO Arithmetic contexts bind as well as read, so `(( i++ ))` and the C-style `for` now contribute to assigns — without that, the reads-extraction added by the round-8 fix demanded the very names those expressions assign. Verified: all eleven silent, genuine `${!n}` still refuses, `$((X+1))` and `((Y>0))` still caught by name, the whole round-8 matrix unchanged, a genuine missing variable still fails, and the four lifting self-tests green in all four forks. The reviewer also discarded one candidate rather than report it — `i=0; (( i++ ))` looks like a demand but is silent under driver ⊇ payload, which is how the self-tests invoke it. That restraint is worth recording: a guard edited twice for false alarms should not be handed a false alarm by its reviewer. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 19:03:35 +00:00
# NOT PRECEDED BY A DIGIT OR WORD CHARACTER. Round-9 review (Claude, N1):
# `$((0x1F))` was read as a variable `x1F`, and `$((1e3))` as `e3`, because
# the pattern happily starts matching at the letter-bearing tail of a
# numeric literal. Two false alarms introduced by the round-8 fix for a
# false NEGATIVE — the guard was made to see more and started seeing things
# that are not there, which is the failure mode that gets a guard deleted.
for tok in re.findall(r'(?<![0-9A-Za-z_])[A-Za-z_][A-Za-z0-9_]*', expr):
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
reads.add(tok)
verification: derive lift dependencies instead of hand-keeping them Round-9 swept all ten instruments per fork instead of only the two buttons, and found selftest-axgate.sh red in all four. Root cause, identical to the KERNLOG defect fixed the day before: a self-test lifts one phase out of check.sh and supplies its variables from a HAND-WRITTEN preamble, and the phase later grew a dependency nobody told the preamble about. Phase 2b stopped globbing Proofs/*.olean and started reading $PROOFS by membership. Bash does not error on an unset array under `set -u` — it expands to nothing — so the gate silently received expected := [".olean"] one entry with an empty name, and rejected the baseline via its own fail-closed absence check. Exit code right, reason wrong. · lift-guard.sh (new, pinned): derives every variable the lifted payload reads, subtracts what the driver defines, and fails AT LIFT TIME naming the remainder. Wired into all five lifting self-tests; selftest-shapes.sh drops its inline copy. One implementation, not five, since drifting out of sync is the entire failure mode. · selftest-axgate.sh: lifts PROOFS verbatim, and its case 2 now poisons a MANIFESTED leaf module rather than adding a stray file. The stray-file attack was a no-op against membership semantics — that is the dead-file gate's job, proven by selftest-harness case 8 — and it is also the weaker attack, since adding files to Proofs/ must clear a gate that editing an already-manifested module does not. · Phase 2c's accounting identity moves behind its own marker with its own ACCTFAIL verdict, so the phase is liftable by construction rather than by a self-test knowing where to stop. Truncating the lift range alone would have dropped Phase 2c's own verdict and left the test unable to fail. · The other four lifting self-tests assert on the PAYLOAD rather than the assembled driver, so a marker in the preamble cannot satisfy a check meant to prove the lift landed. Certified: 8/8 self-tests green in all four forks (~212 assertions, none failing); check.sh bytes unchanged and still matching the pin written before the 3h08m round-9 sweep, whose 36 GREEN button rows therefore stand. --audit-only re-run against the new HARNESS.sha256 in every fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 11:07:28 +00:00
# What the DRIVER defines, in every form these scripts actually use.
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
# `TIMEOUT=$T; CORES="$C"` is one line with two assignments, and a
# start-anchored pattern sees only the first.
# An assignment may open a line or follow `;`, `&&`, `||`, `then`, `do`, `{`,
# and — round-8 review (Claude, N1) — `else`, a `case` branch's `)`, and `!`.
# Six false-positive classes were demonstrated. A guard that cries wolf gets
# edited away, so over-strictness here is not the safe direction.
verification: derive lift dependencies instead of hand-keeping them Round-9 swept all ten instruments per fork instead of only the two buttons, and found selftest-axgate.sh red in all four. Root cause, identical to the KERNLOG defect fixed the day before: a self-test lifts one phase out of check.sh and supplies its variables from a HAND-WRITTEN preamble, and the phase later grew a dependency nobody told the preamble about. Phase 2b stopped globbing Proofs/*.olean and started reading $PROOFS by membership. Bash does not error on an unset array under `set -u` — it expands to nothing — so the gate silently received expected := [".olean"] one entry with an empty name, and rejected the baseline via its own fail-closed absence check. Exit code right, reason wrong. · lift-guard.sh (new, pinned): derives every variable the lifted payload reads, subtracts what the driver defines, and fails AT LIFT TIME naming the remainder. Wired into all five lifting self-tests; selftest-shapes.sh drops its inline copy. One implementation, not five, since drifting out of sync is the entire failure mode. · selftest-axgate.sh: lifts PROOFS verbatim, and its case 2 now poisons a MANIFESTED leaf module rather than adding a stray file. The stray-file attack was a no-op against membership semantics — that is the dead-file gate's job, proven by selftest-harness case 8 — and it is also the weaker attack, since adding files to Proofs/ must clear a gate that editing an already-manifested module does not. · Phase 2c's accounting identity moves behind its own marker with its own ACCTFAIL verdict, so the phase is liftable by construction rather than by a self-test knowing where to stop. Truncating the lift range alone would have dropped Phase 2c's own verdict and left the test unable to fail. · The other four lifting self-tests assert on the PAYLOAD rather than the assembled driver, so a marker in the preamble cannot satisfy a check meant to prove the lift landed. Certified: 8/8 self-tests green in all four forks (~212 assertions, none failing); check.sh bytes unchanged and still matching the pin written before the 3h08m round-9 sweep, whose 36 GREEN button rows therefore stand. --audit-only re-run against the new HARNESS.sha256 in every fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 11:07:28 +00:00
assigns = set(re.findall(
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
r'(?:^|;|&&|\|\||\)|!|\bthen\b|\bdo\b|\belse\b|\{)\s*'
r'([A-Za-z_][A-Za-z0-9_]*)=', driver, re.M))
# `mapfile`/`readarray` and `printf -v` bind a name without an `=` at all.
assigns |= set(re.findall(
r'\b(?:mapfile|readarray)\b(?:\s+-[A-Za-z]\s*\S*)*\s+([A-Za-z_][A-Za-z0-9_]*)',
driver))
assigns |= set(re.findall(r'\bprintf\b[^\n]*?\s-v\s+([A-Za-z_][A-Za-z0-9_]*)', driver))
lift-guard: eleven more classes, two of them regressions I introduced Round-9 review (Claude, N1). The brief said "assume there are more"; there were eleven, and two were introduced by the round-8 fix itself. INTRODUCED BY THE ARITHMETIC TOKENISATION — the round-8 fix for a false NEGATIVE created two false POSITIVES. The interior of `$(( ))` was tokenised with `[A-Za-z_][A-Za-z0-9_]*`, which starts matching at the letter-bearing tail of a numeric literal: echo $((0x1F)) -> FATAL: reads x1F echo $((1e3)) -> FATAL: reads e3 Now anchored so a match cannot begin after a digit or word character. INTRODUCED BY THE INDIRECT-EXPANSION REFUSAL, and this is the one that matters. `${!...}` has three meanings and `re.search(r'\$\{!')` cannot tell them apart: ${!name} indirect expansion — genuinely unanalysable ${!arr[@]} ${!arr[*]} array KEY expansion — ordinary ${!prefix*} ${!prefix@} variable-NAME listing — ordinary A refusal is the most expensive verdict this tool has — it hard-fails the lift — and it was firing on two ordinary constructs with a diagnostic naming a feature they do not use. The reviewer found it LIVE: ltl-accumulator check.sh:274 is `for cert in "${!CONES[@]}"`, so the day lift-guard is ported there, any lift covering that line would have refused. The four forks carry five arrays each, so it was one ordinary edit away from firing there too. Now matched only for genuine `${!name}`. SEVEN MORE BINDING FORMS the driver uses and the guard demanded anyway: let FOO=1 · (( FOO = 1 )) · BAR+=b · FOO[0]=x for (( i=0; i<3; i++ )) · select FOO in · getopts "o" FOO Arithmetic contexts bind as well as read, so `(( i++ ))` and the C-style `for` now contribute to assigns — without that, the reads-extraction added by the round-8 fix demanded the very names those expressions assign. Verified: all eleven silent, genuine `${!n}` still refuses, `$((X+1))` and `((Y>0))` still caught by name, the whole round-8 matrix unchanged, a genuine missing variable still fails, and the four lifting self-tests green in all four forks. The reviewer also discarded one candidate rather than report it — `i=0; (( i++ ))` looks like a demand but is silent under driver ⊇ payload, which is how the self-tests invoke it. That restraint is worth recording: a guard edited twice for false alarms should not be handed a false alarm by its reviewer. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 19:03:35 +00:00
# SEVEN MORE BINDING FORMS — round-9 review (Claude, N1). Each was a false
# alarm: the driver binds the name and the guard demanded it anyway. Listed in
# the order reported, so the next reader can check the list against that report.
assigns |= set(re.findall(r'\blet\s+([A-Za-z_][A-Za-z0-9_]*)\s*=', driver))
assigns |= set(re.findall(r'\bselect\s+([A-Za-z_][A-Za-z0-9_]*)\s+in\b', driver))
assigns |= set(re.findall(r'\bgetopts\b\s+\S+\s+([A-Za-z_][A-Za-z0-9_]*)', driver))
assigns |= set(re.findall(r'(?:^|;|&&|\|\||\)|!|\bthen\b|\bdo\b|\belse\b|\{)\s*'
r'([A-Za-z_][A-Za-z0-9_]*)\+=', driver, re.M)) # BAR+=b
assigns |= set(re.findall(r'(?:^|;|&&|\|\||\)|!|\bthen\b|\bdo\b|\belse\b|\{)\s*'
r'([A-Za-z_][A-Za-z0-9_]*)\[[^]]*\]=', driver, re.M)) # FOO[0]=x
# Arithmetic CONTEXTS BIND TOO — `(( FOO = 1 ))`, `(( i++ ))`, and the C-style
# `for (( i=0; i<3; i++ ))`. The reads-extraction above adds every identifier it
# finds inside `(( ))`, so without this the guard demands the very names those
# expressions assign.
for expr in (re.findall(r'\$\(\((.*?)\)\)', driver, re.S)
+ re.findall(r'(?<!\$)\(\((.*?)\)\)', driver, re.S)):
assigns |= set(re.findall(r'(?<![0-9A-Za-z_])([A-Za-z_][A-Za-z0-9_]*)\s*(?:=[^=]|\+\+|--)', expr))
verification: derive lift dependencies instead of hand-keeping them Round-9 swept all ten instruments per fork instead of only the two buttons, and found selftest-axgate.sh red in all four. Root cause, identical to the KERNLOG defect fixed the day before: a self-test lifts one phase out of check.sh and supplies its variables from a HAND-WRITTEN preamble, and the phase later grew a dependency nobody told the preamble about. Phase 2b stopped globbing Proofs/*.olean and started reading $PROOFS by membership. Bash does not error on an unset array under `set -u` — it expands to nothing — so the gate silently received expected := [".olean"] one entry with an empty name, and rejected the baseline via its own fail-closed absence check. Exit code right, reason wrong. · lift-guard.sh (new, pinned): derives every variable the lifted payload reads, subtracts what the driver defines, and fails AT LIFT TIME naming the remainder. Wired into all five lifting self-tests; selftest-shapes.sh drops its inline copy. One implementation, not five, since drifting out of sync is the entire failure mode. · selftest-axgate.sh: lifts PROOFS verbatim, and its case 2 now poisons a MANIFESTED leaf module rather than adding a stray file. The stray-file attack was a no-op against membership semantics — that is the dead-file gate's job, proven by selftest-harness case 8 — and it is also the weaker attack, since adding files to Proofs/ must clear a gate that editing an already-manifested module does not. · Phase 2c's accounting identity moves behind its own marker with its own ACCTFAIL verdict, so the phase is liftable by construction rather than by a self-test knowing where to stop. Truncating the lift range alone would have dropped Phase 2c's own verdict and left the test unable to fail. · The other four lifting self-tests assert on the PAYLOAD rather than the assembled driver, so a marker in the preamble cannot satisfy a check meant to prove the lift landed. Certified: 8/8 self-tests green in all four forks (~212 assertions, none failing); check.sh bytes unchanged and still matching the pin written before the 3h08m round-9 sweep, whose 36 GREEN button rows therefore stand. --audit-only re-run against the new HARNESS.sha256 in every fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 11:07:28 +00:00
assigns |= set(re.findall(r'\b(?:export|declare|local|readonly)\s+(?:-\w+\s+)*'
r'([A-Za-z_][A-Za-z0-9_]*)', driver))
assigns |= set(re.findall(r'\bfor\s+([A-Za-z_][A-Za-z0-9_]*)\s+in\b', driver))
# `read` binds names too, and it is almost never at end of line: the shape that
# matters here is `while read -r n; do`. An end-anchored pattern misses it and
# the guard then demands a definition for a loop variable the payload binds
# itself — a false alarm, which is the one failure a guard cannot afford.
for m in re.finditer(r'\bread\b((?:\s+-\w+)*(?:\s+[A-Za-z_][A-Za-z0-9_]*)+)', driver):
assigns |= set(re.findall(r'[A-Za-z_][A-Za-z0-9_]*', m.group(1)))
# Names the driver INHERITS rather than defines: the shell's own, and the ones
# `source ~/aeneas-toolchain/env.sh` puts in the environment. Keep this list
# short and justified — every entry is a hole in the guard.
ENV = {'PWD', 'HOME', 'PATH', 'IFS', 'PIPESTATUS', 'BASH_SOURCE', 'FUNCNAME',
'LINENO', 'RANDOM', 'SECONDS', 'OSTYPE', 'HOSTNAME', 'USER', 'SHELL',
'TMPDIR', 'LC_ALL', 'LANG', 'BASH_REMATCH', 'REPLY', 'PS4',
'AENEAS_HOME', 'LEAN_PATH', 'LEAN_MEM_MB', 'LEAN_TIMEOUT',
'LEAN_MAX_CORES'}
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
# INDIRECT EXPANSION DEFEATS TEXT ANALYSIS, so say so instead of staying
# silent. `n=Q; echo "${!n}"` reads Q, and no amount of pattern-matching
# recovers that from the source. The guard's contract is that it does not miss
# a dependency; where it cannot honour that it must refuse, not shrug.
lift-guard: eleven more classes, two of them regressions I introduced Round-9 review (Claude, N1). The brief said "assume there are more"; there were eleven, and two were introduced by the round-8 fix itself. INTRODUCED BY THE ARITHMETIC TOKENISATION — the round-8 fix for a false NEGATIVE created two false POSITIVES. The interior of `$(( ))` was tokenised with `[A-Za-z_][A-Za-z0-9_]*`, which starts matching at the letter-bearing tail of a numeric literal: echo $((0x1F)) -> FATAL: reads x1F echo $((1e3)) -> FATAL: reads e3 Now anchored so a match cannot begin after a digit or word character. INTRODUCED BY THE INDIRECT-EXPANSION REFUSAL, and this is the one that matters. `${!...}` has three meanings and `re.search(r'\$\{!')` cannot tell them apart: ${!name} indirect expansion — genuinely unanalysable ${!arr[@]} ${!arr[*]} array KEY expansion — ordinary ${!prefix*} ${!prefix@} variable-NAME listing — ordinary A refusal is the most expensive verdict this tool has — it hard-fails the lift — and it was firing on two ordinary constructs with a diagnostic naming a feature they do not use. The reviewer found it LIVE: ltl-accumulator check.sh:274 is `for cert in "${!CONES[@]}"`, so the day lift-guard is ported there, any lift covering that line would have refused. The four forks carry five arrays each, so it was one ordinary edit away from firing there too. Now matched only for genuine `${!name}`. SEVEN MORE BINDING FORMS the driver uses and the guard demanded anyway: let FOO=1 · (( FOO = 1 )) · BAR+=b · FOO[0]=x for (( i=0; i<3; i++ )) · select FOO in · getopts "o" FOO Arithmetic contexts bind as well as read, so `(( i++ ))` and the C-style `for` now contribute to assigns — without that, the reads-extraction added by the round-8 fix demanded the very names those expressions assign. Verified: all eleven silent, genuine `${!n}` still refuses, `$((X+1))` and `((Y>0))` still caught by name, the whole round-8 matrix unchanged, a genuine missing variable still fails, and the four lifting self-tests green in all four forks. The reviewer also discarded one candidate rather than report it — `i=0; (( i++ ))` looks like a demand but is silent under driver ⊇ payload, which is how the self-tests invoke it. That restraint is worth recording: a guard edited twice for false alarms should not be handed a false alarm by its reviewer. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 19:03:35 +00:00
# `${!...}` HAS THREE MEANINGS IN BASH and only one of them is indirection:
# ${!name} indirect expansion — genuinely unanalysable
# ${!arr[@]} ${!arr[*]} array KEY expansion — ordinary, and LIVE at
# ltl-accumulator check.sh:274, `for cert in
# "${!CONES[@]}"`
# ${!prefix*} ${!prefix@} variable-NAME listing — ordinary
# Round-9 review (Claude, N1). The round-8 refusal tested for `${!` and could
# not tell them apart, so a legitimate construct would have hard-failed a lift
# with a diagnostic naming a feature it does not use. A refusal is the most
# expensive verdict this tool has; it must be reserved for the case it is
# actually about.
INDIRECT = re.compile(r'\$\{!\s*[A-Za-z_][A-Za-z0-9_]*\s*\}')
if INDIRECT.search(payload):
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
print('INDIRECT-EXPANSION')
else:
print(' '.join(sorted(n for n in reads - assigns - ENV if not n.isdigit())))
verification: derive lift dependencies instead of hand-keeping them Round-9 swept all ten instruments per fork instead of only the two buttons, and found selftest-axgate.sh red in all four. Root cause, identical to the KERNLOG defect fixed the day before: a self-test lifts one phase out of check.sh and supplies its variables from a HAND-WRITTEN preamble, and the phase later grew a dependency nobody told the preamble about. Phase 2b stopped globbing Proofs/*.olean and started reading $PROOFS by membership. Bash does not error on an unset array under `set -u` — it expands to nothing — so the gate silently received expected := [".olean"] one entry with an empty name, and rejected the baseline via its own fail-closed absence check. Exit code right, reason wrong. · lift-guard.sh (new, pinned): derives every variable the lifted payload reads, subtracts what the driver defines, and fails AT LIFT TIME naming the remainder. Wired into all five lifting self-tests; selftest-shapes.sh drops its inline copy. One implementation, not five, since drifting out of sync is the entire failure mode. · selftest-axgate.sh: lifts PROOFS verbatim, and its case 2 now poisons a MANIFESTED leaf module rather than adding a stray file. The stray-file attack was a no-op against membership semantics — that is the dead-file gate's job, proven by selftest-harness case 8 — and it is also the weaker attack, since adding files to Proofs/ must clear a gate that editing an already-manifested module does not. · Phase 2c's accounting identity moves behind its own marker with its own ACCTFAIL verdict, so the phase is liftable by construction rather than by a self-test knowing where to stop. Truncating the lift range alone would have dropped Phase 2c's own verdict and left the test unable to fail. · The other four lifting self-tests assert on the PAYLOAD rather than the assembled driver, so a marker in the preamble cannot satisfy a check meant to prove the lift landed. Certified: 8/8 self-tests green in all four forks (~212 assertions, none failing); check.sh bytes unchanged and still matching the pin written before the 3h08m round-9 sweep, whose 36 GREEN button rows therefore stand. --audit-only re-run against the new HARNESS.sha256 in every fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 11:07:28 +00:00
PYGUARD
)
lift-guard: close all nine classes the reviewer demonstrated Round-8 review (Claude, register key `lift-guard-regex-both-directions`). Every class reproduced here before fixing, and re-tested after. THREE FALSE NEGATIVES — the payload reads a name and the guard stayed silent, which is the direction that costs something, because silence is what the tool exists to prevent: echo $((X + 1)) arithmetic expansion reads X without a `$` before the (( Y > 0 )) name, and the read pattern cannot match it: the character after `$` is `(`. Both contexts are now tokenised. `if [ $((inm + ins)) -eq 0 ]` is already live at check.sh:464 — not lifted today, so latent, not absent. n=Q; ${!n} indirect expansion defeats text analysis outright. The guard now REFUSES the lift rather than passing it. Its contract is "does not miss a dependency"; where it cannot honour that it must say so, not shrug. SIX FALSE POSITIVES — the driver defines the name and the guard cried wolf. This direction matters too: a guard that raises false alarms gets edited away, and then it guards nothing. case x in a) FOO=1 ;; `)` added to the assignment delimiters if …; else FOO=1; fi `else` added ! FOO=1 `!` added mapfile -t FOO binds a name with no `=` at all readarray -t FOO likewise printf -v FOO "x" likewise The banner also over-claimed. It read as a completeness statement about LIFTING; it is a completeness statement about VARIABLES. A lifted payload also inherits functions, shell options, traps and a working directory, and this tool models none of them — loud failures under `set -e`, but the header now says so rather than implying otherwise. Verified: all nine classes behave correctly, a genuine missing variable is still caught by name, and the seven lifting self-tests pass in dalek plus the four fast ones in each ported fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-03 11:14:20 +00:00
if [ "$UNBOUND" = "INDIRECT-EXPANSION" ]; then
cat <<EOF
FATAL: $LABEL uses indirect expansion (\${!name}).
The set of variables it reads cannot be derived from its text, so this
guard cannot certify that the lift carries them. Rewrite the phase
without indirection, or lift it with a driver that is known-complete by
other means and say so in the self-test.
EOF
exit 1
fi
verification: derive lift dependencies instead of hand-keeping them Round-9 swept all ten instruments per fork instead of only the two buttons, and found selftest-axgate.sh red in all four. Root cause, identical to the KERNLOG defect fixed the day before: a self-test lifts one phase out of check.sh and supplies its variables from a HAND-WRITTEN preamble, and the phase later grew a dependency nobody told the preamble about. Phase 2b stopped globbing Proofs/*.olean and started reading $PROOFS by membership. Bash does not error on an unset array under `set -u` — it expands to nothing — so the gate silently received expected := [".olean"] one entry with an empty name, and rejected the baseline via its own fail-closed absence check. Exit code right, reason wrong. · lift-guard.sh (new, pinned): derives every variable the lifted payload reads, subtracts what the driver defines, and fails AT LIFT TIME naming the remainder. Wired into all five lifting self-tests; selftest-shapes.sh drops its inline copy. One implementation, not five, since drifting out of sync is the entire failure mode. · selftest-axgate.sh: lifts PROOFS verbatim, and its case 2 now poisons a MANIFESTED leaf module rather than adding a stray file. The stray-file attack was a no-op against membership semantics — that is the dead-file gate's job, proven by selftest-harness case 8 — and it is also the weaker attack, since adding files to Proofs/ must clear a gate that editing an already-manifested module does not. · Phase 2c's accounting identity moves behind its own marker with its own ACCTFAIL verdict, so the phase is liftable by construction rather than by a self-test knowing where to stop. Truncating the lift range alone would have dropped Phase 2c's own verdict and left the test unable to fail. · The other four lifting self-tests assert on the PAYLOAD rather than the assembled driver, so a marker in the preamble cannot satisfy a check meant to prove the lift landed. Certified: 8/8 self-tests green in all four forks (~212 assertions, none failing); check.sh bytes unchanged and still matching the pin written before the 3h08m round-9 sweep, whose 36 GREEN button rows therefore stand. --audit-only re-run against the new HARNESS.sha256 in every fork. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 11:07:28 +00:00
if [ -n "$UNBOUND" ]; then
cat <<EOF
FATAL: $LABEL reads variables this lift does not define: $UNBOUND
Either lift their definitions too — VERBATIM from check.sh, with a
sed range, so this test cannot drift away from the button's idea of
them — or end the lift range before the block that uses them.
Do NOT stub them: a stub makes the test measure something the button
never runs, which is how a self-test becomes decoration.
EOF
exit 1
fi