6c48186f41
Integrate @xyflow/react for interactive architecture diagrams:
- FlowDiagram component with lazy loading (dynamic import)
- Markdoc tag: {% flowDiagram name="..." height="..." /%}
- Three initial diagrams: bead-lifecycle, adversarial-loop, convoy-execution
- Diagrams registry pattern for easy addition of new diagrams
- Replace TODO placeholders in concepts and code-review pages
The diagrams visualize the bead lifecycle state machine, the
micro-adversarial write/review/revise loop, and convoy DAG execution.
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
declare module "*.css" {
|
|
const content: Record<string, string>
|
|
export default content
|
|
}
|
|
|
|
declare module "@xyflow/react/dist/style.css" {
|
|
const content: string
|
|
export default content
|
|
}
|