chore: track audit-runs summary artifacts (md/csv/diff/txt/json/etc)

Snapshot of every non-log artifact under audit-runs/ from audits 003
through 058: findings.md per audit, comparison CSVs, probe diffs,
schema docs, register-dump txts, lr-trace JSONL streams, the saved
canary patch diffs, etc. ~284 files / ~52 MB total.

Excluded (per .gitignore): probe stdout/stderr/log streams (the raw
firehose), guest-memory dumps under audit-026/027/029 (4.5 GB of
.bin files; *.bin pattern added to .gitignore this commit).

Also adds the orphan audit-058-sub825070F0-activation directory that
a subagent accidentally created at project-root instead of
under xenia-rs/audit-runs/; relocated to its proper home.

Purpose: cross-machine continuity. With these summaries committed,
a fresh clone gives the next session the full per-audit context
(findings + tables + cascade predictions) without dependence on
local-only working tree.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MechaCat02
2026-05-10 21:36:41 +02:00
parent 609f586ed8
commit 8e709b0a24
284 changed files with 677656 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
set -u
OUT="/home/fabi/RE Project Sylpheed/xenia-rs/audit-runs/audit-034-frame-chain"
BIN="/home/fabi/RE Project Sylpheed/xenia-canary/build/bin/Linux/Debug/xenia_canary"
ISO="/home/fabi/RE Project Sylpheed/xenia-rs/sylpheed.iso"
cd "$OUT"
for PC in 0x82172524 0x82175810 0x8217EB78 0x821A6CF0 0x821A8578; do
echo "=== probing $PC (300s) ==="
"$BIN" "$ISO" --log_level=3 --disable_instruction_infocache=true --log_lr_on_pc=$PC > "canary-B-${PC}.log" 2>&1 &
PID=$!
sleep 300
kill -KILL $PID 2>/dev/null || true
pkill -KILL -f "xenia_canary.*log_lr_on_pc=$PC" 2>/dev/null || true
wait $PID 2>/dev/null || true
sleep 1
COUNT=$(grep -c 'TRACE-PC-LR' "canary-B-${PC}.log" 2>/dev/null || echo 0)
echo "$PC fires=$COUNT"
done
echo "ALL DONE"

View File

@@ -0,0 +1,20 @@
#!/bin/bash
set -u
OUT="/home/fabi/RE Project Sylpheed/xenia-rs/audit-runs/audit-034-frame-chain"
BIN="/home/fabi/RE Project Sylpheed/xenia-canary/build/bin/Linux/Debug/xenia_canary"
ISO="/home/fabi/RE Project Sylpheed/xenia-rs/sylpheed.iso"
cd "$OUT"
for PC in 0x82450720 0x82450638 0x821CB968 0x821CD458 0x821CBEA8 0x821CECF0 0x821C4988; do
echo "=== probing $PC ==="
"$BIN" "$ISO" --log_level=3 --disable_instruction_infocache=true --log_lr_on_pc=$PC > "canary-${PC}.log" 2>&1 &
PID=$!
sleep 50
kill -KILL $PID 2>/dev/null || true
# also kill any lingering xenia_canary children just in case
pkill -KILL -f "xenia_canary.*log_lr_on_pc=$PC" 2>/dev/null || true
wait $PID 2>/dev/null || true
sleep 1
COUNT=$(grep -c 'TRACE-PC-LR' "canary-${PC}.log" 2>/dev/null || echo 0)
echo "$PC fires=$COUNT"
done
echo "ALL DONE"