takt/e2e/fixtures/pieces/multi-step-parallel.yaml

57 lines
1.3 KiB
YAML

name: e2e-multi-step-parallel
description: Multi-step piece with parallel sub-movements for E2E testing
piece_config:
provider_options:
codex:
network_access: true
opencode:
network_access: true
max_movements: 10
initial_movement: plan
movements:
- name: plan
persona: ../agents/test-coder.md
edit: true
required_permission_mode: edit
instruction_template: |
Create a plan for the task.
rules:
- condition: "Plan complete"
next: review
- name: review
parallel:
- name: arch-review
persona: ../agents/test-reviewer-a.md
instruction_template: |
Review the architecture.
rules:
- condition: approved
- condition: needs_fix
- name: security-review
persona: ../agents/test-reviewer-b.md
instruction_template: |
Review security.
rules:
- condition: approved
- condition: needs_fix
rules:
- condition: all("approved")
next: COMPLETE
- condition: any("needs_fix")
next: fix
- name: fix
persona: ../agents/test-coder.md
edit: true
required_permission_mode: edit
instruction_template: |
Fix the issues found in review.
rules:
- condition: "Fix applied"
next: review