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.
31 lines
803 B
YAML
31 lines
803 B
YAML
name: test-validate
|
|
version: 1
|
|
description: Validate tests are runnable and non-failing by default
|
|
runtime: script
|
|
input:
|
|
state: test-write-pending
|
|
tags_required: []
|
|
required_artifacts: [test_file]
|
|
output:
|
|
state: test-validated
|
|
scope_budget:
|
|
files_modified_max: 1
|
|
lines_diff_max: 50
|
|
wall_clock_seconds_max: 600
|
|
nodes:
|
|
- id: preflight-test-collection
|
|
kind: script
|
|
cmd: scripts/workflow/preflight-test-collection
|
|
on_fail: refuse_dispatch
|
|
- id: preflight-fixture-lint
|
|
kind: script
|
|
cmd: scripts/workflow/preflight-fixture-lint
|
|
on_fail: refuse_dispatch
|
|
- id: preflight-test-fail-mode
|
|
kind: script
|
|
cmd: scripts/workflow/preflight-test-fail-mode
|
|
on_fail: continue
|
|
- id: state-tx
|
|
kind: script
|
|
cmd: scripts/workflow/state-tx
|
|
on_fail: continue |