Initial commit

This commit is contained in:
Docker7530
2026-03-01 01:43:46 +08:00
commit c6125c117b
3840 changed files with 415340 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
Always respond in Chinese-simplified
有任何拿不定主意、不确定的地方、或者某些细节都需要使用AskUserQuestion询问我
# CRITICAL: File Editing on Windows
## ⚠️ MANDATORY: Always Use Backslashes on Windows for File Paths
**When using Edit or MultiEdit tools on Windows, you MUST use backslashes (`\`) in file paths, NOT forward slashes (`/`).**
**When using Edit or MultiEdit tools on Windows, you MUST use absolute paths, NOT relative paths.**
### ❌ WRONG - Will cause errors:
```
Edit(file_path: "D:/repos/project/file.tsx", ...)
Edit(file_path: "file.tsx", ...)
MultiEdit(file_path: "D:/repos/project/file.tsx", ...)
MultiEdit(file_path: "file.tsx", ...)
```
### ✅ CORRECT - Always works:
```
Edit(file_path: "D:\repos\project\file.tsx", ...)
MultiEdit(file_path: "D:\repos\project\file.tsx", ...)
```