Agentic
L2 Topology (router)
L2: a router topology, where one agent dispatches to specialists.
- Format.puml
- Length31 lines
- LibraryAgentic notation
The source
31 lines of PlantUML, and pulls in Agentic notation. Copy it, or open the template inside Gnomon and render it as it is.
@startuml
!include <agentic/core>
title Support assistant — L2 Topology
' VIEWPOINT: Topology — what shape is this, and who routes? The orchestration
' spectrum runs scripted flow -> router -> supervisor -> swarm -> solo. This is
' a ROUTER: one classifier picks a specialist on a guard the author fixed.
' DONE WHEN: the position on the spectrum is declared and every route is typed.
'
' Rel_Expr is a deterministic guard, Rel_LLM is the model's judgement, and a
' bare Rel is an unguarded route.
Actor(customer, "Customer")
Channel(inbound, "Inbound request", "chat · carries intent, sensitivity")
Agent(router, "Router", "classifier · haiku-4-5 · effort low")
Agent(billing, "Billing specialist", "opus-5 · reads the ledger")
Agent(shipping, "Shipping specialist", "opus-5 · reads carrier tracking")
Exit_Human(human, "Escalate")
Exit_Complete(done, "Answered")
Rel(customer, inbound)
Rel(inbound, router)
Rel_Expr(router, billing, "intent == 'billing'")
Rel_Expr(router, shipping, "intent == 'shipping'")
Rel_LLM(router, human, "intent is unclear")
Rel(billing, done)
Rel(shipping, done)
@endumlRender this offline
This template ships in Gnomon and renders on your machine, with no account and nothing sent to a server. The browser editor is free and needs no install.
Others in Agentic architecture diagrams
- Agentic — L1 LandscapeL1: the whole estate. Which agents exist and who talks to whom.
- Agentic — L2 Topology (swarm)L2: a peer mesh with handoffs and no central coordinator.
- Agentic — L2 Capability matrixL2: what each agent may call, read and load. No sequence.
- Agentic — L3 FlowL3: one journey end to end, including how it exits.
- Agentic — L4 Control planeL4, the hook plane on its own: what runs before and after each turn.
- Agentic — Trust boundaryWhere untrusted input crosses into privileged capability.
- Agentic — Exit mapEvery way the system can stop. Usually the most revealing one to draw.