WARDEN-WP-0029: implement plan front door, org posture, desk, freshness
All checks were successful
CI Smoke / host-smoke (push) Successful in 1s
CI Smoke / container-smoke (push) Successful in 2s

Ship posture-aware access planning: organization_posture=build (axis C),
catalog freshness warnings, warden plan verdicts, localhost founder desk,
and playbook/agent guidance that retire /tmp file-drop patterns.

Compose route catalog + handoff rather than a second routing layer.
This commit is contained in:
tegwick 2026-07-18 16:59:37 +02:00
parent 5c6b71b83b
commit 5149946a4c
18 changed files with 1690 additions and 102 deletions

View file

@ -102,7 +102,11 @@ def test_run_scorecard_clean(tmp_path):
results = run_scorecard(tmp_path, inv)
assert all(r.passed for r in results)
# cert-side checks + catalog_rotation_coverage (WP-0026 T06)
assert len(results) == 7
# + organization_posture + catalog_freshness (WP-0029)
assert len(results) == 9
names = {r.name for r in results}
assert "organization_posture" in names
assert "catalog_freshness" in names
# ---------------------------------------------------------------------------