๐ง Core Architecture
Corva agents are spawned from signed instructions and exist within an execution graph. The runtime stack consists of:
AgentNode: Minimal self-executing units
Mesh DAG: Directed acyclic graph of composable logic
Volatile Memory Runtime: Ephemeral compute layer (RAM only)
Execution Registry: On-chain control for TTL, access, and state hashes
graph TD; Wallet -->|spawn| AgentNode; AgentNode -->|executes| Task; AgentNode -->|passes| Context; Task -->|triggers| Expiry; Expiry -->|burns| AgentNode;
Last updated