Files
multiAgentTry/.doc/workflow/dinner-decision.yaml
Claude Code 1719d1f1f9 重构 API 路由并新增工作流编排功能
后端:
- 重构 agents, heartbeats, locks, meetings, resources, roles, workflows 路由
- 新增 orchestrator 和 providers 路由
- 新增 CLI 调用器和流程编排服务
- 添加日志配置和依赖项

前端:
- 更新 AgentsPage、SettingsPage、WorkflowPage 页面
- 扩展 api.ts 新增 API 接口

其他:
- 清理测试 agent 数据文件
- 新增示例工作流和项目审计报告

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 16:36:25 +08:00

29 lines
937 B
YAML

# 晚饭决定工作流
# 多个 Agent 通过真实 AI CLI 协作讨论今晚吃什么
workflow_id: "dinner-decision"
name: "晚饭决定"
description: "团队协作决定今晚吃什么,通过 Claude/Kimi/OpenCode CLI 进行真实 AI 讨论"
meetings:
# 1. 提议阶段 - 每个 Agent 用不同 CLI 提出晚饭建议
- meeting_id: "dinner-proposals"
title: "晚饭提议"
node_type: "meeting"
attendees: ["chef-claude", "health-kimi", "budget-opencode"]
depends_on: []
# 2. 讨论与投票 - 综合讨论,达成共识
- meeting_id: "dinner-vote"
title: "讨论与投票"
node_type: "meeting"
attendees: ["chef-claude", "health-kimi", "budget-opencode"]
depends_on: ["dinner-proposals"]
# 3. 执行 - 确定最终方案
- meeting_id: "dinner-order"
title: "下单准备"
node_type: "execution"
attendees: ["chef-claude"]
min_required: 1
depends_on: ["dinner-vote"]