feat(ops): add signal freshness SLOs - #54
Merged
Merged
Conversation
JSONbored
previously requested changes
May 29, 2026
JSONbored
left a comment
Owner
There was a problem hiding this comment.
PR #54 — request changes
feat(ops): add signal freshness SLOs
Required changes:
- Do not make readyForPublicReview depend on optional/missing freshness signals unless they are truly launch-blocking.
- Avoid deriving global freshness from only the latest 200 signal snapshots; this can hide stale/missing per-repo/per-contributor data as the project grows.
- Connect SLO breaches to repair/alert behavior, not only readiness reporting.
- Add tests for optional bounty/decision-pack absence, large snapshot sets, stale per-repo signals beyond the recent sample window, and repair queue behavior.
Add freshness SLO readiness reporting, per-target snapshot freshness checks, and repair queue behavior for stale signal data. Keeps optional non-launch-blocking freshness signals visible without blocking public review readiness.
oktofeesh1
force-pushed
the
codex/signal-freshness-slos
branch
from
May 29, 2026 07:26
a8be2b7 to
fc51238
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds signal freshness SLO reporting so stale, blocked, or missing signal sources are visible before public-review readiness is considered healthy.
What changed
freshnessSloon readiness, sync status, and stale decision-pack refresh responses.signals.freshness_sloaudit event with redacted count/status/affected-area metadata.Why
Issue #40 needs freshness SLOs and alertable audit events so stale signal data cannot silently pass readiness checks.
Validation
npm run test:cinpx vitest run test/unit/data-quality.test.ts test/unit/queue.test.ts test/integration/api.test.ts test/unit/openapi.test.tsNotes
Closes #40