From 34c62395675c3d2a0e4addf168f73e6ad8619602 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sun, 14 Sep 2025 15:05:22 +0800 Subject: [PATCH] fix: Correct mermaid diagram syntax in WORKFLOW_DIAGRAMS.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix syntax error on lines 215 and 226 where @{pattern} caused parsing issues - Wrap pattern strings in quotes to treat them as literal text labels - Resolves "Parse error on line 21: Expecting 'SQE', 'DOUBLECIRCLEEND'..." error - Ensures proper rendering of workflow diagrams in GitHub and other mermaid renderers 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- WORKFLOW_DIAGRAMS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WORKFLOW_DIAGRAMS.md b/WORKFLOW_DIAGRAMS.md index efbdfd64..3b501daf 100644 --- a/WORKFLOW_DIAGRAMS.md +++ b/WORKFLOW_DIAGRAMS.md @@ -212,7 +212,7 @@ graph TB subgraph "Gemini Features" ALL_FILES[--all-files Mode] - PATTERNS[@{pattern} Mode] + PATTERNS["@{pattern} Mode"] TEMPLATES[Template Integration] end end @@ -223,7 +223,7 @@ graph TB CONTEXT_AWARE[Context-Aware Execution] subgraph "Codex Features" - EXPLICIT_PATTERNS[@{pattern} Control] + EXPLICIT_PATTERNS["@{pattern} Control"] AUTONOMOUS[Full Autonomous Mode] TEMPLATE_INTEGRATION[Template Support] end