mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-09 02:24:11 +08:00
Key changes: 1. Add CRITICAL section for command substitution rules - Document why escape characters (\$, \", \') break commands - Explain correct syntax without quotes in $(cat ...) paths - Provide clear correct vs wrong examples 2. Fix all template references in examples - Remove single quotes from $(cat '...') → $(cat ...) - Ensure all 4 occurrences use correct syntax (lines 331, 356, 366, 379) 3. Add best practice guideline - Add warning in General Guidelines about escape characters - Emphasize this applies to all CLI command execution Problem solved: Prevent automatic escape character insertion that breaks shell command substitution and path expansion in actual CLI execution.