xiaowei-system/workflows/parallel-review.yaml

48 lines
1.3 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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