personal memory agent
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(transparency): source the head-log filename from HEAD_LOG in all messages

Three operator messages hardcoded the filename; HEAD_LOG is now the single source across scripts and tests.

+5 -5
+3 -4
scripts/transparency_publish.py
··· 351 351 ), 352 352 repair=( 353 353 "stop and audit immutable entries, ledger.jsonl, latest pointer, " 354 - "and transparency-head-log.jsonl for deletion/rollback/split-view " 355 - "before publishing" 354 + f"and {HEAD_LOG} for deletion/rollback/split-view before publishing" 356 355 ), 357 356 ) 358 357 ··· 470 469 actual=f"{record.entry['version']} {record.sha256}", 471 470 repair=( 472 471 "stop and audit immutable entries, ledger.jsonl, latest pointer, " 473 - "and transparency-head-log.jsonl before publishing" 472 + f"and {HEAD_LOG} before publishing" 474 473 ), 475 474 ) 476 475 missing_from_version = str(record.entry["version"]) ··· 908 907 actual=_describe_remote_prefix(probe), 909 908 repair=( 910 909 "stop and audit immutable entries, ledger.jsonl, latest pointer, " 911 - "and transparency-head-log.jsonl before publishing" 910 + f"and {HEAD_LOG} before publishing" 912 911 ), 913 912 ) 914 913
+2 -1
tests/test_transparency_publish.py
··· 15 15 from scripts.transparency_core import ( 16 16 ENTRY_OBJECT_NAME, 17 17 ENTRY_SIGNATURE_NAME, 18 + HEAD_LOG, 18 19 LATEST_OBJECT_NAME, 19 20 LATEST_SIGNATURE_NAME, 20 21 LEDGER_OBJECT_NAME, ··· 1934 1935 assert ( 1935 1936 failure.repair 1936 1937 == "stop and audit immutable entries, ledger.jsonl, latest pointer, " 1937 - "and transparency-head-log.jsonl for deletion/rollback/split-view before publishing" 1938 + f"and {HEAD_LOG} for deletion/rollback/split-view before publishing" 1938 1939 ) 1939 1940 1940 1941