Files
ai_soc_sw/.ai.backup/config/workflow.json
T
Dev AI fb348f3740 feat(P01): 迁移 Taro 小程序项目代码
- 迁移前端源码 (src/)
- 迁移后端服务 (server/)
- 迁移配置文件 (package.json, tsconfig.json 等)
- 更新需求概要文档
- 更新架构设计文档
- 更新接口定义文档
- 更新环境配置文档
- 创建测试目录结构和配置

项目技术栈:
- Taro 4.1.9 (跨端框架)
- React 18
- TypeScript
- NestJS (后端)
- Tailwind CSS 4
- shadcn/ui 组件库
2026-05-22 16:25:05 +08:00

53 lines
1.3 KiB
JSON

{
"workflow": "human-ai-collaboration",
"roles": ["human", "dev-ai", "qa-ai"],
"stages": [
{
"name": "需求分析",
"actor": "human",
"output": "review/{task_id}/task.md"
},
{
"name": "开发实现",
"actor": "dev-ai",
"input": "review/{task_id}/task.md",
"output": ["projects/*/src/", "projects/*/docs/"]
},
{
"name": "影响评估",
"actor": "dev-ai",
"output": "review/{task_id}/impact.md"
},
{
"name": "验收标准定义",
"actor": "dev-ai",
"output": "review/{task_id}/acceptance.md"
},
{
"name": "测试设计",
"actor": "qa-ai",
"input": ["review/{task_id}/task.md", "review/{task_id}/acceptance.md"],
"output": "projects/*/tests/"
},
{
"name": "测试执行",
"actor": "qa-ai",
"output": ["reports/test-results/", "reports/reviews/"]
},
{
"name": "反馈提交",
"actor": "qa-ai",
"output": "review/{task_id}/feedback/round{round}.md"
},
{
"name": "验收确认",
"actor": "human",
"input": ["review/{task_id}/feedback/", "reports/test-results/"]
}
],
"ci_triggers": {
"on_push_to_main": ["run-tests", "generate-reports"],
"on_pr_open": ["run-tests", "code-review"],
"on_task_update": ["notify-qa-ai"]
}
}