architecture.dot (621B)
1 digraph VET_DataFlow { 2 rankdir=TB; 3 node [shape=box, style=rounded]; 4 5 subgraph cluster_inputs { 6 label="Inputs"; 7 diff [label="Git diff"]; 8 goal [label="Goal\n(optional)", style=dashed]; 9 history [label="Conversation history\n(optional)", style=dashed]; 10 } 11 12 context [label="Repo snapshot"]; 13 checks [label="LLM checks"]; 14 post [label="Filter + deduplicate"]; 15 issues [label="Issues"]; 16 17 diff -> context; 18 diff -> checks; 19 goal -> checks [style=dashed]; 20 history -> checks [style=dashed]; 21 context -> checks; 22 23 checks -> post; 24 post -> issues; 25 }