feat: Update project documentation and workflow to reflect changes in task dispatching and testing processes

- Changed references from "kilo" to "Agent 子代理" in various documentation files to align with the new task dispatching method.
- Updated CLAUDE.md to reflect the new agent-based execution model and modified task dispatch template.
- Revised PROGRESS.md to indicate successful testing and acceptance of M1.2 with detailed results.
- Enhanced communication and workflow documentation to clarify the use of Agent 子代理 for real-time collaboration and task management.
- Updated team member soul files with lessons learned from recent testing and integration experiences.
- Refactored test files to remove unused code and improve clarity, ensuring compliance with zero warning standards.
- Documented specific experiences and lessons learned during M1.2 testing, including handling of edge cases and configuration validation.
This commit is contained in:
2026-07-03 14:14:50 +08:00
parent 5770b7007c
commit 2a6e14b976
19 changed files with 280 additions and 147 deletions

View File

@@ -72,8 +72,8 @@
## 工作方法
1. 收到 CEO 目标后,立即拆解为具体任务
2. 评估任务依赖关系,确定并行方案
3. 通过 kilo 派发任务,消息中包含:角色、上下文文件、具体要求、验收标准
4. **多线程思考**: 可以并行启动多个 kilo 进程探索方案或分析代码
3. 通过 Agent 子代理派发任务,提示词中包含:角色、上下文文件、具体要求、验收标准
4. **多线程思考**: 可以并行启动多个子代理探索方案或分析代码
5. 任务完成后运行 cargo check 验证
6. 初审通过后更新 PROGRESS.md向 CEO 汇报
7. 遇到技术难题或架构问题,立即上报 CEO
@@ -129,14 +129,12 @@
建议下一步: <PM 的建议>
```
### kilo 派发模板(含能动性要求)
### 任务派发模板(含能动性要求)
> 权威版本见 `CLAUDE.md`。此处保留副本供 PM 独立 session 使用。
> 权威版本见 `CLAUDE.md`。此处保留副本供 PM 独立 session 使用Agent 子代理提示词)
```bash
kilo run -m openai/gpt-5.4 --auto \
--dir /home/showen/Showen/ShowenV2 \
"你是<角色名>。
```text
你是<角色名>。
开工前必读:
1. souls/<name>.md你的灵魂文件
@@ -146,13 +144,13 @@ kilo run -m openai/gpt-5.4 --auto \
任务:<具体说明>
交付要求:
- 完成后执行 export PATH=\"/home/showen/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin:\$PATH\" && cargo check --workspace --all-targets
- 完成后执行 cargo check --workspace --all-targets
- 再执行 cargo test --workspace
- 两项都绿灯后,把输出贴在交付汇报中
- 修完 bug 检查同文件是否有类似问题
- 更新你的 soul 文件
验收标准:<具体标准>"
验收标准:<具体标准>
```
## 沟通协议
@@ -163,10 +161,9 @@ kilo run -m openai/gpt-5.4 --auto \
- 涉及状态变化、流程更新或复盘结论时,确保同步到规则文件或 soul 文件,避免信息只停留在聊天记录中。
## 记忆
- kilo 调用方式:`kilo run -m openai/gpt-5.4 --auto --dir /home/showen/Showen/ShowenV2 "消息"`
- 不使用 `-f` 参数,在消息中指示读取文件
- 派发方式Agent 子代理Claude Code Agent 工具),在提示词中指示读取文件
- 每个任务必须 cargo check 通过
- 编译环境:`export PATH="/home/showen/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin:$PATH"`
- Linux ARM64 目标机编译环境:`export PATH="/home/showen/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin:$PATH"`
## 复盘记录