Add the sbom-nexus catch_up resolver contract and the daily replacement for weekly-sbom-staleness, both disabled until CUST-WP-0062-T03 lands. The weekly check used `for_each: context.repos.repos` and emitted one task per stale repo — 75 tasks on 2026-08-17 against 111/111 stale repos. The replacement asks sbom-nexus for only the N oldest-stale repos in one ranked call and carries no rule block at all, so tasks_spawned is 0 by construction. - context_resolvers/sbom_nexus.py: source type `sbom-nexus`, query `catch_up`, GET /sbom/catch-up?limit=N. Read-only; ingest is T02. Limit bounded 1..25 and the response truncated to it so an over-long reply cannot widen T02's side-effect. - activity-definitions/daily-sbom-catchup.md: weekdays 09:15 Berlin, enabled: false, deterministic sbom_catchup progress sink. - rules/executor.py: the deterministic report builder only special-cased context.repos, which would have emitted a contentless progress event for this definition. _sbom_catchup_report names the selected repos and reads updated/skipped from context when T02 populates them. - 17 tests against a test double; no live nexus exists yet. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
5.4 KiB
| id | type | title | domain | repo | status | owner | topic_slug | created | updated | parent_workplan | related | state_hub_workstream_id | |||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ACTIVITY-WP-0030 | workplan | Daily bounded SBOM catch-up via sbom-nexus | infotech | activity-core | active | grok | infotech | 2026-08-18 | 2026-08-21 | CUST-WP-0062 |
|
bfe2945e-38df-40d1-94d4-6e4a003ef66d |
Daily bounded SBOM catch-up via sbom-nexus
Goal
Replace weekly-sbom-staleness / flag-stale-sbom with a daily
ActivityDefinition that:
- Evaluates fleet SBOM freshness through sbom-nexus (one ranked catch-up
call, not a per-repo walk and not a
for_eachover every stale repo). - Updates N SBOM snapshots for the repos that have lacked a current SBOM
the longest. N defaults to 3 (
catch_up_limit).
Parent coordination: CUST-WP-0062. Parked 2026-08-18 — do not start until that parent is unblocked. Do not enable this schedule until the catch-up API exists.
Current failure mode
Monday 2026-08-17 prod fire spawned 75 Run SBOM rescan for {slug} tasks.
The rule is for_each: context.repos.repos where
context.repo.sbom_age_days > 30. On 2026-08-18 the hub listed 111 / 111
repos stale or never scanned. The weekly check reports the backlog; it does
not close it.
repo_sbom_status bulk mode already uses GET /repos/ (age from
last_sbom_at) rather than N /sbom/{slug} calls. That is still the wrong
shape for catch-up: the worker materialises every repo, then emits one task
each. The replacement must ask sbom-nexus for only N targets and then
ingest them.
Tasks
Draft definition and resolver contract
id: ACTIVITY-WP-0030-T01
status: done
priority: high
state_hub_task_id: "b216976e-5402-4e40-b282-78c5d021df72"
Write activity-definitions/daily-sbom-catchup.md (enabled: false until
cutover): weekday or daily cron, Berlin morning after triage is fine.
Context source: sbom-nexus catch_up with limit default 3. Deterministic
progress (event_type: sbom_catchup) listing selected / updated / skipped.
No for_each over the full stale set.
Resolver contract (implement against a test double until CUST-WP-0062-T03 lands):
- input:
{limit: 3} - output:
{repos: [...], stale_count, never_count, total_count, limit} - each repo:
repo_slug,last_sbom_at,sbom_age_days,has_sbom,checkout_availableif known
Done 2026-08-21 against a test double — CUST-WP-0062-T03 has not landed, so
there is no live nexus yet and the definition stays enabled: false:
activity-definitions/daily-sbom-catchup.md— weekdays 09:15 Berlin, onesbom-nexus / catch_upsource bound tocontext.catchup, no rule block (tasks_spawnedstays 0 by construction), deterministicsbom_catchupprogress sink.src/activity_core/context_resolvers/sbom_nexus.py— source typesbom-nexus, querycatch_up,GET /sbom/catch-up?limit=NagainstSBOM_NEXUS_URL. Read-only; ingest is T02. Limit is bounded 1..25 and the response is truncated to it so an over-long reply cannot widen T02's side-effect._sbom_catchup_reportinrules/executor.py— the existing deterministic builder only special-casedcontext.repos, which would have emitted a contentless progress event. The new branch names selected repos and readsupdated/skippedfrom context when T02 populates them.tests/test_sbom_nexus_context_resolver.py— 17 tests: contract shape, default N=3, bounding, truncation, partial-entry normalisation, malformed responses, progress content, and definition boundedness.
Implement ingest side-effect for N targets
id: ACTIVITY-WP-0030-T02
status: wait
priority: high
state_hub_task_id: "0d09c0d3-74bd-4f4d-8b27-5006ba010fa3"
Wait on CUST-WP-0062-T03. Bounded side-effect (SCOPE: declared purpose only):
for each of the N repos, call sbom-nexus ingest using the registered checkout
when present. Record skip reasons (no-checkout, no-manifest, ingest-error)
in the run artefact and progress event. Do not spawn Forgejo issues
(ACTIVITY-WP-0022). Do not retry a recorded skip as if it were still the
oldest never-scanned repo.
Retire weekly task flood
id: ACTIVITY-WP-0030-T03
status: progress
priority: high
state_hub_task_id: "18bcfc21-616a-48a2-aac3-cdcef7579913"
Emergency containment began 2026-08-20 under ACTIVITY-WP-0031: set
weekly-sbom-staleness enabled: false in source and production before the
bounded replacement is available. Keep or drop the weekly summary report only
if it no longer emits one task per repo. After the daily job is proven on
railiance01, update the runbook / playbook and prove one Monday window with zero
SBOM task spawns and a successful daily catch-up the same week.
Prod enable and evidence
id: ACTIVITY-WP-0030-T04
status: wait
priority: medium
state_hub_task_id: "f09144f6-c7f9-41d4-b466-d8a6288e6a21"
Project the definition into k8s/railiance/20-runtime.yaml, sync schedules,
and capture prod evidence via ./scripts/prod_automation_status.sh plus the
sbom_catchup progress event. Confirm tasks_spawned is 0 and N updates
(or documented skips) appear per fire.
Acceptance
- Daily definition exists; weekly flood is off
- Evaluation is one sbom-nexus catch-up call
- Each fire updates at most N repos (default 3)
- Progress names the repos and skip reasons
- Railiance01 evidence for at least two successful daily fires