From c2894b69dd15a1c7e79c7883c6319f458ec72e33 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 41cc6058e..b4cb0b430 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]