Adds a scheduled GitHub Actions workflow that runs `core demo learning-arc --json`, writes the report to contemplation/runs/<stamp>.json, and opens a PR against main. Operator review on the PR is the ratification gate — preserves the HITL invariant from ADR-0150/0152. Workflow stays disabled until repo variable CONTEMPLATION_ENABLED is set to "true" (soft kill switch in repo settings). Default cadence is nightly; ADR includes a budget table for the 3000 Linux minutes/month available on GitHub Pro. CI never: - commits to main directly - mutates corpora/ or packs/ - ratifies proposals - registers recognizers CI only writes a report file under contemplation/runs/ and proposes the diff via PR. Determinism check (first-run verification): local + CI runs at same SHA must byte-match on proposal_id / trace_hash. Out of scope (noted in ADR): persisted engine_state across CI runs, auto-merge, cross-runner determinism, recognizer growth from CI synthetic traffic. To enable: 1. Repo Settings → Variables → CONTEMPLATION_ENABLED=true 2. Actions → contemplation → Run workflow 3. Review the resulting PR before merging
103 lines
3.4 KiB
YAML
103 lines
3.4 KiB
YAML
name: contemplation
|
|
|
|
# ADR-0155 — CI-driven contemplation runner.
|
|
#
|
|
# Runs `core demo learning-arc --json` on a schedule, writes the
|
|
# report to contemplation/runs/, and opens a PR against main for
|
|
# operator review. Never commits to main directly. Soft-killed
|
|
# by repo variable CONTEMPLATION_ENABLED (set to "true" to enable).
|
|
|
|
on:
|
|
schedule:
|
|
# 09:00 UTC = 01:00 PST. Nightly. Adjust cadence per ADR-0155
|
|
# budget table; do not exceed 3000 Linux minutes/month on Pro.
|
|
- cron: '0 9 * * *'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
concurrency:
|
|
group: contemplation
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
contemplate:
|
|
name: engine-authored proposal cycle
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
# Soft kill switch — set repo var CONTEMPLATION_ENABLED=true to enable.
|
|
# Empty / unset = workflow exits without consuming meaningful minutes.
|
|
if: ${{ vars.CONTEMPLATION_ENABLED == 'true' }}
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: set up uv
|
|
uses: astral-sh/setup-uv@v5
|
|
with:
|
|
python-version: '3.11'
|
|
enable-cache: true
|
|
|
|
- name: install dependencies
|
|
run: uv pip install -e ".[dev]" pyyaml
|
|
|
|
- name: run contemplation cycle
|
|
id: run
|
|
env:
|
|
PYTHONPATH: ${{ github.workspace }}
|
|
run: |
|
|
set -euo pipefail
|
|
mkdir -p contemplation/runs
|
|
STAMP=$(date -u +%Y-%m-%dT%H%M%SZ)
|
|
OUTPUT="contemplation/runs/${STAMP}.json"
|
|
uv run core demo learning-arc --json > "${OUTPUT}"
|
|
echo "output=${OUTPUT}" >> "${GITHUB_OUTPUT}"
|
|
echo "stamp=${STAMP}" >> "${GITHUB_OUTPUT}"
|
|
echo "## Contemplation report ${STAMP}" >> "${GITHUB_STEP_SUMMARY}"
|
|
# Operator-facing summary — top-level keys only, full report in PR.
|
|
uv run python -c "
|
|
import json, sys
|
|
r = json.load(open('${OUTPUT}'))
|
|
for k, v in r.items():
|
|
print(f'- **{k}**: {type(v).__name__}')
|
|
" >> "${GITHUB_STEP_SUMMARY}"
|
|
|
|
- name: open PR for operator review
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
commit-message: |
|
|
chore(contemplation): CI run ${{ steps.run.outputs.stamp }}
|
|
|
|
Engine-authored contemplation cycle. Operator review
|
|
required before any corpus mutation. ADR-0155.
|
|
branch: contemplation/${{ steps.run.outputs.stamp }}
|
|
base: main
|
|
title: 'contemplation: CI run ${{ steps.run.outputs.stamp }}'
|
|
body: |
|
|
Automated contemplation cycle per ADR-0155.
|
|
|
|
**Report:** `${{ steps.run.outputs.output }}`
|
|
|
|
**Trust boundary:** this PR proposes only the report
|
|
file under `contemplation/runs/`. No corpus, pack, or
|
|
engine_state mutation. Operator review is the
|
|
ratification gate.
|
|
|
|
Merge to accept (becomes part of the audit trail).
|
|
Close to reject.
|
|
|
|
Determinism check: this report's `proposal_id` and
|
|
`trace_hash` fields must byte-match a local
|
|
`core demo learning-arc --json` at the same commit SHA.
|
|
If they diverge, the workflow runner-class invariant
|
|
has broken — investigate before merging.
|
|
labels: |
|
|
contemplation
|
|
ci-authored
|
|
add-paths: |
|
|
contemplation/runs/
|