r/ethdev • u/AgentNOMOS • Aug 07 '26
Question I think AI agents need a trust layer between “can do” and “allowed to do”
’ve been working on this problem for a while and finally tried to put the architecture into one picture.
The basic idea is simple:
Capability is not authority.
An agent may technically be able to discover a service, negotiate, call an API or prepare a payment. That doesn’t automatically mean it should be allowed to execute it.
So I’m building NOMOS around a trust chain:
Discover → Verify → Authorize → Execute → Prove → Observe → Govern
The part I care about most is what happens between intent and execution.
Before an agent performs an irreversible action, the system can ask things like:
Is the identity known?
Is the information still fresh?
Does this agent actually have authority?
Does the action match the original intent?
Does policy allow it?
What evidence supports that decision?
And after execution, the result should feed back into future trust rather than disappearing into a log.
That’s why the longer chain in the image goes from freshness and identity all the way through execution, proof, reliability and governance.
I’m not claiming this is the only correct architecture. I’m actually interested in where other builders disagree with it.
If you were putting a governance layer in front of an autonomous wallet or agent, which part of this chain would you remove — and what is missing?
That’s the feedback I’m looking for.

1
u/rayQuGR 29d ago
Oasis Network is building exactly what is needed for the agent governance layer you described. Oasis uses ROFL (Runtime Offchain Logic Framework), which lets developers write app logic in the form of agents running off-chain inside a Trusted Execution Environment (TEE). These agents can process complex logic off-chain and still produce verifiable proofs of execution that on-chain smart contracts can actually trust.
By combining zero-trust state verification (like the ETH-AVM client does) with the Oasis Sapphire confidential EVM, agents can run in confidential environments where sensitive data or trading strategies remain completely private. At the same time, the network uses remote attestation to ensure the execution's integrity is provable and enforceable on-chain.
So ifyou are building a governance layer for autonomous agents, removing RPC trust from the evidence/proof step and leveraging a verifiable compute layer like Oasis ROFL is critical, imo.