Isomorphism of Intent is the property where a behavioral specification (expressed in natural language, Gherkin, or visual diagrams) maintains a one-to-one correspondence with its deterministic execution in a runtime system.
In formal terms: Given a specification S and an execution trace E, an agentic workflow exhibits isomorphism of intent when:
∀ s ∈ S, ∃! e ∈ E : φ(s) = ψ(e)
Where:
Traditional LLM-based automation suffers from the Intentionality Gap: the fidelity loss between what a human specifies and what the system executes.
When you specify “if payment fails, retry with exponential backoff”, you don’t want probabilistic interpretation. You want deterministic execution.
Isomorphism of Intent ensures that specification and execution are mathematically equivalent—no interpretation gap.
This is achieved through: