- Remove OutputContractLabelPath (label:path format), unify to OutputContractItem only - Add required format field and use_judge flag to output contracts - Add getJudgmentReportFiles() to filter reports eligible for Phase 3 status judgment - Add supervisor-validation output contract, remove review-summary - Enhance output contracts with finding_id tracking (new/persists/resolved sections) - Move runtime environment directory from .runtime to .takt/.runtime - Update all builtin pieces, e2e fixtures, and tests
244 lines
5.6 KiB
YAML
244 lines
5.6 KiB
YAML
name: e2e-test
|
|
description: E2E test focused piece (E2E analysis → E2E implementation → review → fix)
|
|
piece_config:
|
|
provider_options:
|
|
codex:
|
|
network_access: true
|
|
opencode:
|
|
network_access: true
|
|
max_movements: 20
|
|
initial_movement: plan_test
|
|
loop_monitors:
|
|
- cycle:
|
|
- ai_review
|
|
- ai_fix
|
|
threshold: 3
|
|
judge:
|
|
persona: supervisor
|
|
instruction_template: |
|
|
The ai_review ↔ ai_fix loop has repeated {cycle_count} times.
|
|
|
|
Review the reports from each cycle and determine whether this loop
|
|
is healthy (making progress) or unproductive (repeating the same issues).
|
|
|
|
**Reports to reference:**
|
|
- AI Review results: {report:04-ai-review.md}
|
|
|
|
**Judgment criteria:**
|
|
- Are new issues being found/fixed in each cycle?
|
|
- Are the same findings being repeated?
|
|
- Are fixes actually being applied?
|
|
rules:
|
|
- condition: Healthy (making progress)
|
|
next: ai_review
|
|
- condition: Unproductive (no improvement)
|
|
next: review_test
|
|
movements:
|
|
- name: plan_test
|
|
edit: false
|
|
persona: test-planner
|
|
policy: testing
|
|
knowledge:
|
|
- architecture
|
|
- backend
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
- Bash
|
|
- WebSearch
|
|
- WebFetch
|
|
rules:
|
|
- condition: Test plan complete
|
|
next: implement_test
|
|
- condition: User is asking a question (not an E2E test task)
|
|
next: COMPLETE
|
|
- condition: Requirements unclear, insufficient info
|
|
next: ABORT
|
|
appendix: |
|
|
Clarifications needed:
|
|
- {Question 1}
|
|
- {Question 2}
|
|
instruction: plan-e2e-test
|
|
output_contracts:
|
|
report:
|
|
- name: 00-test-plan.md
|
|
format: test-plan
|
|
- name: implement_test
|
|
edit: true
|
|
persona: coder
|
|
policy:
|
|
- coding
|
|
- testing
|
|
session: refresh
|
|
knowledge:
|
|
- backend
|
|
- architecture
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
- Edit
|
|
- Write
|
|
- Bash
|
|
- WebSearch
|
|
- WebFetch
|
|
required_permission_mode: edit
|
|
rules:
|
|
- condition: Test implementation complete
|
|
next: ai_review
|
|
- condition: No implementation (report only)
|
|
next: ai_review
|
|
- condition: Cannot proceed, insufficient info
|
|
next: ai_review
|
|
- condition: User input required
|
|
next: implement_test
|
|
requires_user_input: true
|
|
interactive_only: true
|
|
instruction: implement-e2e-test
|
|
output_contracts:
|
|
report:
|
|
- name: coder-scope.md
|
|
format: coder-scope
|
|
- name: coder-decisions.md
|
|
format: coder-decisions
|
|
- name: ai_review
|
|
edit: false
|
|
persona: ai-antipattern-reviewer
|
|
policy:
|
|
- review
|
|
- ai-antipattern
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
- WebSearch
|
|
- WebFetch
|
|
rules:
|
|
- condition: No AI-specific issues
|
|
next: review_test
|
|
- condition: AI-specific issues found
|
|
next: ai_fix
|
|
instruction: ai-review
|
|
output_contracts:
|
|
report:
|
|
- name: 04-ai-review.md
|
|
format: ai-review
|
|
- name: ai_fix
|
|
edit: true
|
|
persona: coder
|
|
policy:
|
|
- coding
|
|
- testing
|
|
session: refresh
|
|
knowledge:
|
|
- backend
|
|
- architecture
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
- Edit
|
|
- Write
|
|
- Bash
|
|
- WebSearch
|
|
- WebFetch
|
|
required_permission_mode: edit
|
|
pass_previous_response: false
|
|
rules:
|
|
- condition: AI issues fixed
|
|
next: ai_review
|
|
- condition: No fix needed (verified target files/spec)
|
|
next: ai_no_fix
|
|
- condition: Cannot proceed, insufficient info
|
|
next: ai_no_fix
|
|
instruction: ai-fix
|
|
- name: ai_no_fix
|
|
edit: false
|
|
persona: architecture-reviewer
|
|
policy: review
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
rules:
|
|
- condition: ai_review's findings are valid (fix required)
|
|
next: ai_fix
|
|
- condition: ai_fix's judgment is valid (no fix needed)
|
|
next: review_test
|
|
instruction: arbitrate
|
|
- name: review_test
|
|
edit: false
|
|
persona: qa-reviewer
|
|
policy:
|
|
- review
|
|
- qa
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
- WebSearch
|
|
- WebFetch
|
|
rules:
|
|
- condition: approved
|
|
next: supervise
|
|
- condition: needs_fix
|
|
next: fix
|
|
instruction: review-test
|
|
output_contracts:
|
|
report:
|
|
- name: 05-qa-review.md
|
|
format: qa-review
|
|
- name: fix
|
|
edit: true
|
|
persona: coder
|
|
policy:
|
|
- coding
|
|
- testing
|
|
session: refresh
|
|
knowledge:
|
|
- backend
|
|
- architecture
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
- Edit
|
|
- Write
|
|
- Bash
|
|
- WebSearch
|
|
- WebFetch
|
|
required_permission_mode: edit
|
|
pass_previous_response: false
|
|
rules:
|
|
- condition: Fix complete
|
|
next: review_test
|
|
- condition: Cannot proceed, insufficient info
|
|
next: plan_test
|
|
instruction: fix
|
|
- name: supervise
|
|
edit: false
|
|
persona: supervisor
|
|
policy: review
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
- Bash
|
|
- WebSearch
|
|
- WebFetch
|
|
pass_previous_response: false
|
|
rules:
|
|
- condition: All checks passed
|
|
next: COMPLETE
|
|
- condition: Requirements unmet, tests failing, build errors
|
|
next: plan_test
|
|
instruction: supervise
|
|
output_contracts:
|
|
report:
|
|
- name: supervisor-validation.md
|
|
format: supervisor-validation
|
|
- name: summary.md
|
|
format: summary
|
|
use_judge: false
|