Loki Mode v7.117.1
Immutable
release. Only release title and notes can be modified.
Fixed
- CI: fix ShellCheck RED on completion-council.sh and test-heal-assess-readiness.sh.
autonomy/completion-council.shlines 1768-1774: apython3 -c "..."invocation
had Python comment lines containing literal double-quotes (pass:"inconclusive",
status:"no_tests_run",runner=="none"). Those unescaped"prematurely closed
the shell double-quoted string, causing SC2140 + SC1078 warnings that failed the
CI ShellCheck gate. Fixed by converting the invocation to a quoted heredoc
(python3 <<'PYEOF' ... PYEOF) which makes ALL inner quotes safe. Behavior is
identical: zero-test INCONCLUSIVE routing (anti-fake-green, #82) is preserved.
tests/test-heal-assess-readiness.shlines 100 and 240:cd "$FIX"inside
subshells lacked|| exit 1, triggering SC2164. Fixed inline.
Non-regression verified: 5 test cases (pass:true/PASS, pass:false/FAIL,
pass:"inconclusive"+status:"no_tests_run"/INCONCLUSIVE, runner=="none"/PASS,
malformed-JSON/INCONCLUSIVE) all produce outputs identical to pre-fix baseline.