Architecture Graphs
Interactive architecture topology graphs for technical implementation views.
Architecture Graphs
Architecture graphs are technical topology views. They follow the same interaction model as the Platform Spec map, while remaining a separate graph domain.
Use fenced code with language arch and Mermaid C4 syntax to render architecture graphs without importing Astro components:
C4ContainerSystem_Boundary(runtime, "Runtime stack") { Container(analysis, "Analyzer", "Rust crate", "Builds AST, symbols and diagnostics") Container(codegen, "Codegen", "Rust crate", "Lowers HIR into backend artifacts") Container(engine, "Execution engine", "Rust crate", "Executes JIT entrypoints and runtime calls")}Rel(analysis, codegen, "typed IR")Rel(codegen, engine, "codegen artifact")