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.
23 lines
557 B
YAML
23 lines
557 B
YAML
name: frozen-fixture-emit
|
|
version: 1
|
|
description: Emit frozen test fixtures for test-needed items
|
|
runtime: script
|
|
input:
|
|
state: scoped-tagged
|
|
tags_required: [test-needed]
|
|
required_artifacts: [impl_skeleton]
|
|
output:
|
|
state: test-skeleton-ready
|
|
scope_budget:
|
|
files_modified_max: 2
|
|
lines_diff_max: 200
|
|
wall_clock_seconds_max: 600
|
|
nodes:
|
|
- id: frozen-fixture-emit
|
|
kind: script
|
|
cmd: scripts/workflow/frozen-fixture-emit
|
|
on_fail: refuse_dispatch
|
|
- id: state-tx
|
|
kind: script
|
|
cmd: scripts/workflow/state-tx
|
|
on_fail: continue |