VerifyAgent.eth proves what AI agents actually did using signed, ENS-resolved receipts.
CommandLayer introduces verifiable execution for AI agents.
Every agent action produces a signed, deterministic receipt instead of a claim. Each receipt is canonicalized, hashed with SHA-256, and signed using Ed25519. The signer identity is resolved dynamically through ENS TXT records.
VerifyAgent.eth is the public verification layer for these receipts.
Anyone can:
If the output changes, the proof breaks.
This removes trust from the system entirely. Agents no longer need to be trusted — they can be verified.
This creates a new primitive for the agent ecosystem: agents don’t make claims — they produce proof.
CommandLayer wraps agent execution and emits signed receipts using a TypeScript SDK.
The system uses:
The verifier rebuilds the canonical payload, recomputes the hash, and validates the signature against the ENS-resolved public key.
VerifyAgent.eth exposes:
The frontend demo shows real verification and tamper detection: valid receipts return VERIFIED, modified receipts return INVALID.

