Coding

Settlement Witness

Verify SAR v0.1 receipt digests and Ed25519 signatures locally before acting on signed claims.

What it does

Verify SAR v0.1 receipt JSON entirely on your machine by recomputing the RFC 8785 canonical digest, checking the receipt ID, and validating the Ed25519 signature against a public key registry. JSON results report validity, receipt ID, key ID, signed verdict, and specific errors. Network access is optional for receipt issuance, ID resolution, registry refreshes, and chain or correlation lookups.

When to use it

  • Checking an agent’s task-complete claim
  • Gating downstream actions on signed output
  • Validating a receipt before citing it as evidence
  • Reviewing settlement- or payment-adjacent claims

The skill document

New in 0.1.0: local-first verification. Receipt cryptography is verified entirely on your machine — no network required. Network is optional and only used when you explicitly request remote receipt issuance or resolution.

SettlementWitness

Verify SAR v0.1 settlement receipts locally. Optionally request DefaultVerifier-signed receipts.

When to use

  • Before trusting a task-complete claim from another agent
  • Before chaining downstream actions to an agent output
  • Before using a receipt as evidence
  • Before acting on a settlement- or payment-adjacent claim
  • When you prefer a local, offline verifier

First run (offline, no network needed)

Run the self-test against all bundled fixtures:

python3 scripts/verify_receipt.py --self-test

Expected output: self_test_passed: true with all four fixtures [OK].

Verify a single receipt

python3 scripts/verify_receipt.py fixtures/sar-v0.1-pass.json

Returns JSON:

{
  "valid": true,
  "receipt_id": "sha256:...",
  "kid": "sar-prod-ed25519-01",
  "verdict": "PASS",
  "errors": []
}

Tamper test (should fail)

python3 scripts/verify_receipt.py fixtures/tampered-receipt.json

Returns valid: false with errors listing the digest mismatch and signature failure. This proves the verifier actually rejects tampered receipts.

How to interpret results

FieldMeaning
valid: trueReceipt digest and Ed25519 signature both verified
valid: falseReceipt failed cryptographic verification
verdict: PASSThe signed outcome claims the spec was met
verdict: FAILThe signed outcome claims the spec was not met
verdict: INDETERMINATEThe issuer signed an honest uncertainty state
errors: [...]What specifically failed

PASS, FAIL, and INDETERMINATE are all valid signed outcomes when valid: true — they represent what the issuer attested, not post-hoc interpretation.

What works offline vs what uses the network

Fully offline (no network):

  • Parsing a SAR v0.1 receipt JSON
  • Recomputing the canonical digest from signed core fields
  • Verifying receipt_id matches the digest
  • Verifying the Ed25519 signature against the bundled public key registry
  • All four bundled fixture checks (--self-test)

Optional network (only when you explicitly ask):

  • Requesting a new DefaultVerifier-signed receipt — signing keys stay server-side by design, so issuance requires the remote service
  • Resolving a receipt ID
  • Refreshing the public key registry
  • Chain or correlation lookups

If DefaultVerifier is offline, local verification of existing receipts still works. The service being unavailable does not invalidate receipts you already have.

Optional remote receipt issuance

To request a signed receipt from DefaultVerifier (requires network):

curl -sS https://defaultverifier.com/settlement-witness \
  -H "Content-Type: application/json" \
  -d '{"task_id":"your-task-id","spec":{"expected":"value"},"output":{"expected":"value"}}'

The REST endpoint returns a signed SAR v0.1 receipt. You can then verify it locally with scripts/verify_receipt.py.

Public key registry: https://defaultverifier.com/.well-known/sar-keys.json
Receipt explorer: https://defaultverifier.com/verified

Safety boundaries

DefaultVerifier issues signed evidence about whether a receipt is cryptographically valid. It does not:

  • Execute user tasks
  • Approve or reject actions
  • Release, hold, or custody funds
  • Prove legal settlement finality
  • Prove payment finality
  • Control downstream agent behavior

Acting on a verified receipt is the responsibility of the system or agent that reads it.

Environment

Override the public key registry path if needed:

SAR_KEYS_REGISTRY_PATH=/path/to/keys.json python3 scripts/verify_receipt.py receipt.json

Provenance

Operator: Default Settlement Verifier
Repository: https://github.com/nutstrut/default-settlement-verifier
Homepage: https://defaultverifier.com

Questions people ask

What does a valid PASS receipt prove?
It proves that the receipt digest and Ed25519 signature verified, and that the issuer signed a PASS outcome claiming the specification was met. It does not prove legal or payment finality.
Can I verify receipts without network access?
Yes. Parsing, digest recomputation, receipt ID checks, signature verification against the bundled key registry, and the four-fixture self-test all run locally.
Does a valid receipt have to contain PASS?
No. PASS, FAIL, and INDETERMINATE are all valid signed outcomes when `valid` is true; they record what the issuer attested.

Related skills

Inspect skill packages locally and produce a structured report on capabilities, risks, warnings, and trust dependencies.

128 installs

Publish services, find marketplace work, manage delivery, and route non-custodial crypto payments through hosted MCP.

87 installs3 stars

Run a headless wallet across 22+ EVM chains for payments, swaps, bridges, identity, DeFi, and trading.

51 installs1 stars

Fill sensitive forms from saved user data and gate consequential actions with typed approval.

65 installs

Connect agents directly with encrypted messaging, NAT traversal, CRDT sync, and group communication.

65 installs1 stars

Form an agent identity in SOUL.md, archive it, revisit its past self, and track how it changes.

190 installs4 stars