34 lines
926 B
YAML
34 lines
926 B
YAML
name: "team-code-plan"
|
|
agents_dir: "/home/muc/.npm/_npx/097cc02411e2da65/node_modules/agency-orchestrator/agency-agents"
|
|
|
|
llm:
|
|
provider: "custom"
|
|
base_url: "http://127.0.0.1:3000/v1"
|
|
api_key: "0ExNiLblJvIWBDpkS50fwOBw4MmqLyKdHJK5iQtlw9dOMWBP"
|
|
model: "mistralai/mistral-large-3-675b-instruct-2512"
|
|
max_tokens: 8192
|
|
|
|
concurrency: 2
|
|
|
|
inputs:
|
|
- name: goal
|
|
required: true
|
|
|
|
steps:
|
|
- id: architect
|
|
role: "engineering/engineering-software-architect"
|
|
task: |-
|
|
目标: {{goal}}
|
|
任务: 设计技术方案,包括架构图、组件划分、数据流。
|
|
输出: 300字内的方案概要。
|
|
output: plan
|
|
|
|
- id: planner
|
|
role: "project-management/project-manager-senior"
|
|
task: |-
|
|
基于以下技术方案,拆解为可执行的任务列表,标注优先级和依赖关系。
|
|
方案: {{plan}}
|
|
输出: 任务列表。
|
|
depends_on: [architect]
|
|
output: tasks
|