diff --git a/agents/DEV_AGENT.md b/agents/DEV_AGENT.md index 19e360b..43f150d 100644 --- a/agents/DEV_AGENT.md +++ b/agents/DEV_AGENT.md @@ -126,9 +126,11 @@ python scripts/agent_poller.py --action get --issue N 1. git pull origin main 2. git checkout -b dev/issue-N- 3. 修改功能代码 + 更新/补充 UT 和接口集成测试 -4. python -m pytest -v # 本地全量测试 -5. git commit -m "fix: <描述> - Closes #N" -6. git push origin dev/issue-N- +4. python -m pytest -v # 本地全量 UT/集成测试 +5. python scripts/run_pipeline.py --input "input/<文档>.docx" # 运行完整 pipeline +6. python -m pytest tests/acceptance/ -v --run-acceptance # e2e 验收 (Layer A+B+C) +7. git commit -m "fix: <描述> - Closes #N" +8. git push origin dev/issue-N- ``` **开发原则:** @@ -137,6 +139,7 @@ python scripts/agent_poller.py --action get --issue N - 关注 IR 一致性:对同一输入的多次运行结果应尽量稳定 - 关注功能覆盖率:确保 IR 覆盖了输入文档中的功能点 - **验证是实际功能验证,不是 dry-run**:`pytest` 通过只是门槛,必须用真实输入文档实际运行 pipeline 确认功能生效 +- **PR 前必须通过 e2e 验收 (Layer A+B+C)**:防止修复引入回归。若无法运行完整 pipeline(API 不可用等),至少在 PR 描述中注明 ### 4. 提交 PR