Files
pi-skill/agents/pipeline-team.yaml
2026-05-25 16:41:08 +07:00

46 lines
1.4 KiB
YAML

plan-build-review:
description: "Plan, implement, and review — the standard development cycle"
review_max_loops: 3
phases:
- name: understand
description: "Clarify the task and gather context"
mode: interactive
agents:
- role: scout
task_template: "Explore the codebase and clarify the task. Summarize what needs to be done."
- name: plan
description: "Create an implementation plan"
mode: interactive
agents:
- role: planner
task_template: "Create a detailed implementation plan for: $INPUT"
- name: build
description: "Implement the plan"
mode: interactive
agents:
- role: builder
task_template: "Implement the following plan:\n\n$INPUT"
- name: review
description: "Review for quality and correctness"
mode: interactive
agents:
- role: reviewer
task_template: "Review this implementation for bugs, style, and correctness:\n\n$INPUT"
plan-build:
description: "Plan then build — fast two-step without review"
review_max_loops: 1
phases:
- name: plan
description: "Create implementation plan"
mode: interactive
agents:
- role: planner
task_template: "Plan the implementation for: $INPUT"
- name: build
description: "Implement"
mode: interactive
agents:
- role: builder
task_template: "Implement this plan:\n\n$INPUT"