mirror of
https://github.com/sweetwisdom/everything-claude-code-zh.git
synced 2026-03-22 06:20:10 +00:00
21 lines
636 B
Markdown
21 lines
636 B
Markdown
# 开发上下文(Development Context)
|
||
|
||
模式(Mode):活跃开发(Active development)
|
||
重心(Focus):实现、编码、功能构建
|
||
|
||
## 行为规范(Behavior)
|
||
- 先写代码,后解释
|
||
- 优先交付可运行的方案,而非过度追求完美
|
||
- 修改后立即运行测试
|
||
- 保持提交(Commits)的原子性
|
||
|
||
## 优先级(Priorities)
|
||
1. 确保运行正常(Get it working)
|
||
2. 确保逻辑正确(Get it right)
|
||
3. 确保代码整洁(Get it clean)
|
||
|
||
## 推荐工具(Tools to favor)
|
||
- `Edit`, `Write` 用于代码变更
|
||
- `Bash` 用于运行测试/构建
|
||
- `Grep`, `Glob` 用于查找代码
|