25 lines
873 B
YAML
25 lines
873 B
YAML
name: test-write-minimax
|
|
version: 2
|
|
description: Write tests from skeletons using MiniMax test-writer
|
|
runtime: minimax-test-writer
|
|
input:
|
|
state: needs-tests
|
|
tags_required: [test-needed]
|
|
required_artifacts: [test_file]
|
|
output:
|
|
state: test-write-pending
|
|
scope_budget:
|
|
files_modified_max: 1
|
|
lines_diff_max: 150
|
|
wall_clock_seconds_max: 1200
|
|
nodes:
|
|
- id: agent
|
|
kind: agent
|
|
template: minimax-test-writer
|
|
runtime_env:
|
|
# WF-COMP-15: stage agents share one per-item work branch so their work
|
|
# accumulates (test-write -> scaffold -> impl -> integrate -> merge all
|
|
# see the same tree). Without AGENT_REPO_URL the agent-repo layer never
|
|
# clones and the agent's output evaporates (E2E 2026-07-04).
|
|
AGENT_REPO_URL: "git@gitea.oreillyit.nz-ai-enablement:skynet/agent-runtimes-agents.git"
|
|
AGENT_BRANCH: "task/${item.uuid}" |