mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-10 02:24:35 +08:00
560 B
560 B
Windows Platform Guidelines
Path Format
- MCP Tools:
D:\\path\\file.txt - Bash:
D:/path/file.txtor/d/path/file.txt - Relative:
./src/index.ts
Bash Rules (Prevent Garbage Files)
- Null redirect:
command > NUL 2>&1 - Quote all:
echo "$VAR",cat "file name.txt" - Variable assignment:
export VAR=value && command - Regex escape:
grep -F "State<T>"orgrep "State\<T\>" - Pipe output:
command 2>&1 | ...(avoid bare command output)
Tool Priority
MCP Tools > PowerShell > Git Bash > cmd