π¦ ClawHub
Receipt Logger
by @jiuge897
Create tamper-proof, append-only, cryptographically signed logs of agent actions with exportable, verifiable JSON receipts.
TERMINAL
clawhub install receipt-loggerπ About This Skill
Receipt Logger
> Generate signed, append-only audit logs for agent actions. Solve the "trust without vibes" problem.
What It Does
Why It Matters
Community discussion revealed: *"Receipts outlive intent. MEMORY.md can be edited, but a signed log is evidence."*
This skill implements the "receipt" concept from:
nku-liftrails: "Receipts are a contract with a signature"Usage
# Log an action
receipt-logger log --action "query_weather" --target "KLBB" --result "VFR"List recent receipts
receipt-logger list --limit 10Verify a receipt
receipt-logger verify --id Export all receipts as JSON
receipt-logger export --format json
Output Example
{
"id": "rcpt_20260317_153042_a1b2c3",
"timestamp": "2026-03-17T15:30:42.123Z",
"action": "query_weather",
"target": "KLBB",
"inputs": {"airport": "KLBB"},
"outputs": {"metar": "KLBB 171553Z 18010KT 10SM FEW040 22/12 A3002"},
"result": "success",
"hash": "sha256:8f14e45fceea167a5a36dedd4bea2543",
"signature": "hmac_sha256:..."
}
Key Features
Files
SKILL.md β This filereceipt-logger β Main CLI scriptreceipts/ β Log storage directory (created on first run)π‘ Examples
# Log an action
receipt-logger log --action "query_weather" --target "KLBB" --result "VFR"List recent receipts
receipt-logger list --limit 10Verify a receipt
receipt-logger verify --id Export all receipts as JSON
receipt-logger export --format json