Skip to content

Architecture Graph

Devrajsinh Gohil edited this page Aug 30, 2026 · 1 revision

Dual-Tier Graph Architecture

AgentMesh maintains a dual-tier graph model: WorkflowGraph.


Static Spec Graph

  • Immutable blueprint of tasks and directed dependencies.
  • Validated at construction time for cycles, orphan nodes, and invalid entry points using GraphValidator.

Dynamic Trace Graph

  • Instantiated per workflow execution.
  • Tracks dynamic subtask unrolling, conditional branch activations, and reflection loop iterations.
  • Allows cyclic execution patterns while preserving an acyclic execution trace for auditing and persistence.\n

Clone this wiki locally