- scaffolding-repo + test-writing-repo: anthropic-cloud-paul-oauth -> minimax + minimax-m3-max - merge@1: new best-practices-minimax-repo composite (impl-review stays Sonnet) - spec-draft-opus@1: Opus -> Fable 5 low effort via new fable-low-effort/v1 env context (ANTHROPIC_MODEL=claude-fable-5, MAX_THINKING_TOKENS=1024) + spec-writing-fable-low-repo composite - review-spec-arch-opus@1: Qwen3.6/airouter -> Fable 5 low effort via best-practices-fable-low-repo (arch review was on the cheapest model) Template names kept (trigger rules reference them). Node model: fields removed where env pins the model — a --model flag overrides ANTHROPIC_MODEL. Claude-Session: https://claude.ai/code/session_019tJk7P8tZzJ24PvtgoGhLN
27 lines
1.1 KiB
YAML
27 lines
1.1 KiB
YAML
name: merge
|
|
version: 1
|
|
description: Prepare a reviewed implementation for merge — runs pre-merge checks and marks item merge-ready
|
|
# MiniMax M3 (2026-09-02): merge prep is mechanical (checklist + verdict);
|
|
# moved off the Anthropic subscription. impl-review stays on Sonnet.
|
|
runtime: best-practices-minimax-repo
|
|
input:
|
|
state: impl-reviewed
|
|
tags_forbidden: []
|
|
required_artifacts: []
|
|
output:
|
|
state: merge-ready
|
|
scope_budget:
|
|
files_modified_max: 1
|
|
lines_diff_max: 200
|
|
wall_clock_seconds_max: 600
|
|
nodes:
|
|
- id: agent
|
|
kind: agent
|
|
template: best-practices-minimax-repo
|
|
runtime_env:
|
|
AGENT_REPO_URL: "git@gitea.oreillyit.nz-ai-enablement:skynet/agent-runtimes-agents.git"
|
|
AGENT_BRANCH: "task/${item.uuid}"
|
|
AGENT_SKIP_BRANCH_PUSH: "true"
|
|
AGENT_EMPTY_DELIVERABLE_CHECK: "false"
|
|
prompt: "Review the implementation for '${item.title}' (project: ${item.project_id}). Write a concise merge checklist to /workspace/.agent-output/merge-checklist.md covering: (1) tests pass, (2) scope matches spec, (3) no regressions. End with MERGE_READY or NEEDS_REWORK."
|