From 3f2ded54ee8dedf817026c5dc282c5c14609b0ce Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 9 Jan 2026 17:24:03 +0900 Subject: [PATCH] fix(docs): escape special chars in Mermaid diagram Quote node label containing special characters to prevent Mermaid lexer error on line 9. --- docs/orchestration-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/orchestration-guide.md b/docs/orchestration-guide.md index 41cc6058..b4cb0b43 100644 --- a/docs/orchestration-guide.md +++ b/docs/orchestration-guide.md @@ -45,7 +45,7 @@ graph TD Metis --> Prometheus Prometheus --> Momus[Momus
Reviewer] Momus --> Prometheus - Prometheus --> PlanFile[/.sisyphus/plans/*.md] + Prometheus --> PlanFile["/.sisyphus/plans/{name}.md"] end PlanFile --> StartWork[/start-work]