Brings the framework CRS repo up to date with all content that was living in agent-runtimes (local-dev fallback) but hadn't been promoted. New composites: feature-delivery-loop, integration-direct, scaffolding-repo, sonnet-impl-narrow, sonnet-manager, test-writing-repo New contexts: integration/v1, scaffolding/v1, sonnet-manager/v1, z-ai/v1, airouter/v1/bin (anthropic-compat-wrapper.sh), cp-harness/v1/init.sh New task-templates: sonnet-integrator.yaml, workflow/* (17 typed workflow task templates for the Epic 1 pipeline) Updated: agent-repo/v1/finalize.sh — adds AR-38/F97 empty-deliverable audit (SKIP_BRANCH_PUSH support, boilerplate-path filtering, ci_metadata.json flag) Also adds MEMORY.md index and memory/ topic files for the framework repo.
28 lines
1014 B
YAML
28 lines
1014 B
YAML
name: merge
|
|
version: 1
|
|
description: Prepare a reviewed implementation for merge — runs pre-merge checks and marks item merge-ready
|
|
runtime: best-practices-airouter-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-airouter-repo
|
|
cli: agentic
|
|
model: Qwen3.6
|
|
labels: [airouter]
|
|
runtime_env:
|
|
AGENT_REPO_URL: "git@gitea.oreillyit.nz-ai-enablement:skynet/agent-runtimes-agents.git"
|
|
AGENT_BRANCH: "spec/auto-draft"
|
|
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."
|