nousresearch's hermes-agent repo has an open issue requesting sha-256 hash-chained action logs for tamper-proof agent accountability. the issue cites openfang as inspiration. this is proof the demand for cryptographic audit trails is framework-level now. here's what the issue asks for: every action the agent takes gets logged each log entry includes a sha-256 hash of the previous entry the chain is append-only — no edits, no deletions the agent itself can't modify the chain that's exactly what mnemopay's merkleaudit does, but we layer it on top of agent payments. when the agent proposes a transaction through fiscalgate, both the proposal and the decision get written to the merkle chain. each entry includes the agent's request, the policy check result, the timestamp, and a hash linking it to the previous entry. if someone later claims the agent did something it didn't do, you can produce the full chain and verify every hash. tampering breaks the chain.…