48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: "team-parallel-review"
|
||
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: 3
|
||
|
||
inputs:
|
||
- name: topic
|
||
required: true
|
||
|
||
steps:
|
||
- id: tech_review
|
||
role: "engineering/engineering-software-architect"
|
||
task: |-
|
||
从技术架构角度评审: {{topic}}
|
||
输出: 3个要点(架构评价、技术风险、改进建议)
|
||
output: tech_view
|
||
|
||
- id: market_review
|
||
role: "product/product-trend-researcher"
|
||
task: |-
|
||
从市场角度评审: {{topic}}
|
||
输出: 3个要点(市场定位、竞品对比、机会)
|
||
output: market_view
|
||
|
||
- id: design_review
|
||
role: "design/design-ux-researcher"
|
||
task: |-
|
||
从用户体验角度评审: {{topic}}
|
||
输出: 3个要点(体验亮点、用户痛点、改进建议)
|
||
output: ux_view
|
||
|
||
- id: synthesis
|
||
role: "support/support-executive-summary-generator"
|
||
task: |-
|
||
综合以下三个角度的评审,输出整体评价和推荐行动。
|
||
技术: {{tech_view}}
|
||
市场: {{market_view}}
|
||
设计: {{ux_view}}
|
||
depends_on: [tech_review, market_review, design_review]
|
||
output: final
|