docs: 完成所有文档的中文翻译并应用到项目

This commit is contained in:
xuxiang
2026-01-28 00:12:54 +08:00
parent 0ced59a26b
commit e133f58e1c
76 changed files with 6808 additions and 6170 deletions

View File

@@ -1,20 +1,20 @@
# Development Context
# 开发上下文(Development Context
Mode: Active development
Focus: Implementation, coding, building features
模式(Mode):活跃开发(Active development
重心(Focus):实现、编码、功能构建
## Behavior
- Write code first, explain after
- Prefer working solutions over perfect solutions
- Run tests after changes
- Keep commits atomic
## 行为规范(Behavior
- 先写代码,后解释
- 优先交付可运行的方案,而非过度追求完美
- 修改后立即运行测试
- 保持提交Commits的原子性
## Priorities
1. Get it working
2. Get it right
3. Get it clean
## 优先级(Priorities
1. 确保运行正常(Get it working
2. 确保逻辑正确(Get it right
3. 确保代码整洁(Get it clean
## Tools to favor
- Edit, Write for code changes
- Bash for running tests/builds
- Grep, Glob for finding code
## 推荐工具(Tools to favor
- `Edit`, `Write` 用于代码变更
- `Bash` 用于运行测试/构建
- `Grep`, `Glob` 用于查找代码