Skip to content

fix(review): correct stale-base grounding fact + close the mergeable_state blind spot - #7686

Merged
JSONbored merged 1 commit into
mainfrom
claude/loopover-gittensory-orb-bugs-a63c52
Jul 21, 2026
Merged

fix(review): correct stale-base grounding fact + close the mergeable_state blind spot#7686
JSONbored merged 1 commit into
mainfrom
claude/loopover-gittensory-orb-bugs-a63c52

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

Summary

Follow-up to #7670. While building a related feature I found a real correctness bug in what shipped there, and fixed it alongside the new feature it directly motivates:

  • Bug fix: the stale-base grounding fact anchored its GitHub compare-API read on a PR's own base.sha. GitHub keeps that field pointed at the live tip of the target branch as it moves, so comparing it against the current default branch reads ~0 regardless of how stale a PR's actual code is -- the fact was effectively dead on arrival. Now anchored on the PR's HEAD commit instead, which the compare API resolves via a true git merge-base, independent of that metadata timing.
  • New feature: gate.staleBaseAheadByThreshold -- an opt-in per-repo commit-count threshold. When set, the pre-review readiness gate (prReadyForReview) forces an update_branch once the repository's default branch has advanced at least that many commits beyond a PR's head, using the same (now-correct) compare-API read. This closes a real blind spot in the existing BEHIND-base auto-rebase path: mergeable_state: "behind" only ever fires when a repo's branch protection has "require branches up to date before merging" enabled -- a repo without that setting can have a PR genuinely dozens of commits behind and GitHub will never surface it, so the existing auto-rebase-before-review flow silently never fires. This is config-as-code only (mirrors requireFreshRebaseWindowMinutes's own shape/rationale): DB column + migration, settings resolver, .loopover.yml gate: schema (engine package + docs), API/OpenAPI schema, and the behavioral wiring, fully wired end to end.

Scope

  • The PR title follows type(scope): short summary Conventional Commit format.
  • This PR is focused (one related bug fix + the feature it directly enables) and does not mix in unrelated backend, UI, MCP, docs, dependency, or deploy changes.
  • This follows CONTRIBUTING.md and does not reintroduce GitHub Pages, VitePress, site/, or CNAME.
  • I linked a currently open issue this PR resolves -- no issue exists; found and fixed via direct maintainer investigation, not the contributor pipeline.

Validation

  • git diff --check
  • npm run actionlint, npm run lint:composite-actions
  • npm run db:migrations:check, npm run db:schema-drift:check
  • npm run selfhost:env-reference:check, npm run miner:env-reference:check
  • npm run selfhost:validate-observability
  • npm run cf-typegen:check
  • npm run typecheck
  • npm run test:coverage (unsharded) -- every line/branch touched by this diff verified 100% covered directly against lcov.info, not just the console table
  • npm run test:engine-parity, npm run test:live-gate-parity, npm run test:driver-parity
  • npm run test --workspace @loopover/engine
  • npm run test:workers
  • npm run build:mcp, npm run test:mcp-pack
  • npm run ui:openapi:check, npm run ui:openapi:settings-parity
  • npm run docs:drift-check, npm run manifest:drift-check, npm run engine-parity:drift-check
  • npm run command-reference:check, npm run branding-drift:check, npm run engines-nvmrc:check, npm run release-manifest:sync:check
  • npm run ui:lint, npm run ui:typecheck, npm run ui:build
  • npm audit --audit-level=moderate -- 0 vulnerabilities
  • A full, clean npm run test:ci run caught and this PR fixes a real config/examples/loopover.full.yml drift (the new .loopover.yml.example doc block needed the same addition in its byte-matched sibling) -- confirmed green after the fix.
  • New/changed behavior has unit/integration tests for new branches, fallback paths, and sanitizer boundaries, including the config-as-code round-trip at every layer (engine parser/serializer, DB CRUD, settings resolver, API route) and the new prReadyForReview branches (threshold met/not-met/unconfigured/no-default-branch/denied-autonomy), mirroring requireFreshRebaseWindowMinutes's own existing test coverage pattern site-by-site.

Safety

  • No secrets, wallet details, hotkeys, coldkeys, user PATs, private keys, raw trust scores, private rankings, or private maintainer evidence are exposed.
  • Public GitHub text stays sanitized, low-noise, and does not imply compensation guarantees or optimization tactics.
  • Auth, cookie, CORS, GitHub App, Cloudflare, or session changes include negative-path tests. -- N/A, no such changes.
  • API/OpenAPI/MCP behavior is updated and tested where needed (new settings field, npm run ui:openapi regenerated).
  • UI changes use live API data or real empty/error/loading states -- N/A, no UI changes (settings field is dashboard-settable via the existing generic settings API, no new UI surface added in this PR).
  • Visible UI changes include a UI Evidence section -- N/A, no UI changes.
  • Public docs/changelogs are updated where needed (.loopover.yml.example + its byte-matched config/examples/loopover.full.yml sibling); changelog itself intentionally not touched (release-prep only).

Notes

The new staleBaseAheadByThreshold setting is opt-in and defaults to null (off) for every existing repo -- zero behavior change until a repo's .loopover.yml (or the dashboard/API settings) explicitly sets it. Activating it for any of the maintainer's own gated repos is a private server-config change, not something this PR does.

…eable_state blind spot it depends on

The base-branch staleness fact shipped in #7670 anchored its compare-API
read on a PR's own base.sha -- but GitHub keeps that field pointed at the
live tip of the target branch as it moves, so comparing it against the
current default branch would read ~0 regardless of how stale a PR's
actual code is, making the fact effectively dead. Anchors on the PR's
HEAD instead, which the compare API resolves via a true git merge-base,
independent of that metadata timing.

Also adds gate.staleBaseAheadByThreshold: when a repo opts in, the
pre-review readiness gate (prReadyForReview) forces an update_branch
once the default branch has advanced at least that many commits beyond
a PR's head -- the same action the existing BEHIND-base path takes, but
triggered by the same compare-API read rather than GitHub's own
mergeable_state, which only ever reports "behind" when a repo's branch
protection requires branches to be up to date before merging. A repo
without that setting can have a PR genuinely dozens of commits behind
and never see it auto-rebased before review otherwise.
@superagent-security

Copy link
Copy Markdown
Contributor

Superagent didn't find any vulnerabilities or security issues in this PR.

@JSONbored JSONbored self-assigned this Jul 21, 2026
@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
loopover-ui 4c15edd Commit Preview URL

Branch Preview URL
Jul 21 2026, 08:11 AM

@JSONbored
JSONbored merged commit 9e6691a into main Jul 21, 2026
15 checks passed
@JSONbored
JSONbored deleted the claude/loopover-gittensory-orb-bugs-a63c52 branch July 21, 2026 08:11
@codecov

codecov Bot commented Jul 21, 2026

Copy link
Copy Markdown

Bundle Report

Changes will increase total bundle size by 308 bytes (0.0%) ⬆️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.42MB 308 bytes (0.0%) ⬆️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-DehStkjt.js (New) 2.17MB 2.17MB 100.0% 🚀
assets/tanstack-vendor-DHuPn6jb.js (New) 809.54kB 809.54kB 100.0% 🚀
openapi.json 178 bytes 523.01kB 0.03%
assets/docs.fumadocs-spike-api-reference-Dsbd0cS0.js (New) 442.92kB 442.92kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-cxZ8H46D.js (New) 201.71kB 201.71kB 100.0% 🚀
assets/modal-aiMZG_Yr.js (New) 184.38kB 184.38kB 100.0% 🚀
assets/client-DMJMz7Ta.js (New) 146.06kB 146.06kB 100.0% 🚀
assets/maintainer-panel-C4OO29PK.js (New) 78.53kB 78.53kB 100.0% 🚀
assets/ui-vendor-6IrZhy9r.js (New) 57.04kB 57.04kB 100.0% 🚀
assets/routes-Bs55Exk5.js (New) 34.83kB 34.83kB 100.0% 🚀
assets/owner-panel-DAAwVGFe.js (New) 27.23kB 27.23kB 100.0% 🚀
assets/app-CXwWa9Lk.js (New) 25.65kB 25.65kB 100.0% 🚀
assets/app.runs-CxjFFGok.js (New) 23.55kB 23.55kB 100.0% 🚀
assets/miner-panel-C7R8uTGl.js (New) 20.25kB 20.25kB 100.0% 🚀
assets/api._op-CUWJ9eGl.js (New) 17.55kB 17.55kB 100.0% 🚀
assets/self-hosting-docs-audit-BBnD1cBT.js (New) 16.63kB 16.63kB 100.0% 🚀
assets/app.index-CPMFA8Zr.js (New) 15.62kB 15.62kB 100.0% 🚀
assets/playground-panel-dO7FkdYn.js (New) 14.49kB 14.49kB 100.0% 🚀
assets/app.audit-954y5aYb.js (New) 10.11kB 10.11kB 100.0% 🚀
assets/extension-P-M1Bg1V.js (New) 10.04kB 10.04kB 100.0% 🚀
assets/app.config-generator-GEwsefra.js (New) 9.88kB 9.88kB 100.0% 🚀
assets/fairness-B8FzC_kv.js (New) 8.34kB 8.34kB 100.0% 🚀
assets/maintainers-CGKNeFV0.js (New) 8.03kB 8.03kB 100.0% 🚀
assets/miners-BZ8p0ulN.js (New) 7.85kB 7.85kB 100.0% 🚀
assets/agents-Ba_vuilX.js (New) 7.76kB 7.76kB 100.0% 🚀
assets/commands-panel-1Vdhn4_5.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/maintainer-workflow-CMpW_3yM.js (New) 6.5kB 6.5kB 100.0% 🚀
assets/roadmap-BUHO9-C4.js (New) 6.33kB 6.33kB 100.0% 🚀
assets/digest-panel-Dv2amj1a.js (New) 6.18kB 6.18kB 100.0% 🚀
assets/repos._owner._repo.quality-4_vIHF46.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs.index-CX15QXCj.js (New) 5.55kB 5.55kB 100.0% 🚀
assets/api.index-Bo8nzfZ7.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/api-C8vXK240.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-D85RtHib.js (New) 2.67kB 2.67kB 100.0% 🚀
assets/app.workbench-OFRA09y0.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/session-rWZvbXwQ.js (New) 1.45kB 1.45kB 100.0% 🚀
assets/tooltip-C0kV3YNj.js (New) 1.45kB 1.45kB 100.0% 🚀
assets/tabs-D8t7mYV2.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-xgyB2w3-.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-Bj0jZ38n.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-DvY-LRbN.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/docs.ai-summaries-COdROiHH.js (New) 506 bytes 506 bytes 100.0% 🚀
assets/app.maintainer-BXEB2mA5.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/docs.branch-analysis-skQ1kTyF.js (New) 499 bytes 499 bytes 100.0% 🚀
assets/docs.scoreability-C44eH2CE.js (New) 499 bytes 499 bytes 100.0% 🚀
assets/docs.upstream-drift-DYJs0R04.js (New) 499 bytes 499 bytes 100.0% 🚀
assets/docs.federated-fleet-intelligence-U1kQECAE.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.maintainer-install-trust-QwrEywh8.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-ai-providers-Di1lMH4s.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-backup-scaling-xq5iv9MG.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-configuration-PIS8U8eq.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-docs-audit-DYL-gx3s.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-github-app-BtbIMr9x.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-quickstart-DTeRNME0.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-rag-C5VZ_jDt.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-rees-CL5aETu_.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-rees-analyzers-YG4cz4UT.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-release-checklist-9K7fGvoW.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-releases-Ce88AzII.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-security-_1fEql2z.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-troubleshooting-DQCEKPpU.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-unified-ams-orb-NrJ5i4E_.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.ams-config-precedence-DySjgDJI.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-deployment-B_AMxHe8.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-discovery-plane-BF0-iMna.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-env-reference-fGnxjQYG.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-fleet-manifest-BL3Do4EW.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-goal-spec-C6UzfOlL.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-kill-switch-incident-KDF_jg02.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-observability-RV4O9s79.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-operations-runbook-CALS9f9j.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-sizing-DwB6ZP2C.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-unattended-scheduling-spfhoOAE.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.beta-onboarding-CbZvWP9V.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.capacity-C8yXWKjX.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.maintainer-self-hosting-Ckp4twWr.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.mcp-clients-EqHvTY6x.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.owner-checklist-BwXPZ4vx.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.quickstart-BAYfL_MB.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.github-app-CLKbV6Mv.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.maintainer-workflow-C9ZIM4wO.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.privacy-security-CFzry8CV.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.troubleshooting--AIvIsik.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.tuning-xgVvnQkc.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.loopover-commands-Cnc7uUBB.js (New) 494 bytes 494 bytes 100.0% 🚀
assets/sparkles-D8oFjPQm.js (New) 494 bytes 494 bytes 100.0% 🚀
assets/docs.how-reviews-work-Db4d5LPq.js (New) 493 bytes 493 bytes 100.0% 🚀
assets/app.owner-O4jBVHMn.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-85EnfIIY.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-D81vratW.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/reveal-DbGGNZup.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-0qhMpYeZ.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-BZGB-mdY.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-BXBfOQfm.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-DyrR8m85.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-B6ONhngp.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-DUlaN2bD.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-DUjkuNX7.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-DNDG7hsN.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-DSSSn5GB.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/wrench-BQ59sH-X.js (New) 303 bytes 303 bytes 100.0% 🚀
assets/list-checks-ocZDGmNr.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/shield-Bc5wAQy2.js (New) 272 bytes 272 bytes 100.0% 🚀
assets/workflow-Ds5uLbFc.js (New) 265 bytes 265 bytes 100.0% 🚀
assets/compass-BIRSJD0E.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-DU_5akHE.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/activity-pqngf3UD.js (New) 234 bytes 234 bytes 100.0% 🚀
assets/message-square-CUBLpzKU.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-BS77Yhjj.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-jqxC5p8C.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-DuAuXi_F.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-DTwZb4R6.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-qDg4YTnT.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/circle-5YINuqBx.js (New) 130 bytes 130 bytes 100.0% 🚀
assets/add-scalar-classes-CdnefLtl.js (Deleted) -2.17MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-bReUQ4HX.js (Deleted) -809.44kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-DC7WJlZu.js (Deleted) -442.92kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-Bhk54Fn3.js (Deleted) -201.71kB 0 bytes -100.0% 🗑️
assets/modal-0PQbyMGy.js (Deleted) -184.38kB 0 bytes -100.0% 🗑️
assets/client-BfRMLiKS.js (Deleted) -146.06kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-XUrfquu0.js (Deleted) -78.53kB 0 bytes -100.0% 🗑️
assets/ui-vendor-vOl27Dqx.js (Deleted) -57.04kB 0 bytes -100.0% 🗑️
assets/routes-hZGN4JWZ.js (Deleted) -34.83kB 0 bytes -100.0% 🗑️
assets/owner-panel-6VLLHl-h.js (Deleted) -27.2kB 0 bytes -100.0% 🗑️
assets/app-n7bsQVT5.js (Deleted) -25.65kB 0 bytes -100.0% 🗑️
assets/app.runs-BREvWWIc.js (Deleted) -23.55kB 0 bytes -100.0% 🗑️
assets/miner-panel-DiE1ElEH.js (Deleted) -20.25kB 0 bytes -100.0% 🗑️
assets/api._op-a_JQOKqV.js (Deleted) -17.55kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-CjYV7eoV.js (Deleted) -16.63kB 0 bytes -100.0% 🗑️
assets/app.index-D3H0j43j.js (Deleted) -15.62kB 0 bytes -100.0% 🗑️
assets/playground-panel-CnlMbSNf.js (Deleted) -14.49kB 0 bytes -100.0% 🗑️
assets/app.audit-C1Ujdzbt.js (Deleted) -10.11kB 0 bytes -100.0% 🗑️
assets/extension-Bg3No7dX.js (Deleted) -10.04kB 0 bytes -100.0% 🗑️
assets/app.config-generator-DXn9-Vjh.js (Deleted) -9.88kB 0 bytes -100.0% 🗑️
assets/fairness-CX1hN0F2.js (Deleted) -8.34kB 0 bytes -100.0% 🗑️
assets/maintainers-OkyB5lZY.js (Deleted) -8.03kB 0 bytes -100.0% 🗑️
assets/miners-Ixhi73P4.js (Deleted) -7.85kB 0 bytes -100.0% 🗑️
assets/agents-kk0h2Yet.js (Deleted) -7.76kB 0 bytes -100.0% 🗑️
assets/commands-panel-Dg6YjX2T.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-xYvaRgYB.js (Deleted) -6.5kB 0 bytes -100.0% 🗑️
assets/roadmap-Cr-UEzT6.js (Deleted) -6.33kB 0 bytes -100.0% 🗑️
assets/digest-panel-C12nJfOE.js (Deleted) -6.18kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-CnssmfRh.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs.index-Dv3Lpu7a.js (Deleted) -5.55kB 0 bytes -100.0% 🗑️
assets/api.index-G29XxyXo.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/api-BQTz4j4B.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-DIYQNEEG.js (Deleted) -2.67kB 0 bytes -100.0% 🗑️
assets/app.workbench-jc_fY84s.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/session-D7d8cvYE.js (Deleted) -1.45kB 0 bytes -100.0% 🗑️
assets/tooltip-CDE3JsZP.js (Deleted) -1.45kB 0 bytes -100.0% 🗑️
assets/tabs-j_-ne-YH.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-CQd-81wR.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-CA848D7J.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-CcVngVHn.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/docs.ai-summaries-CsjsRL3C.js (Deleted) -506 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-DjgXniDu.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/docs.branch-analysis-CpoeFNO1.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.scoreability-DFRrGmKL.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.upstream-drift-eGNIByfA.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.federated-fleet-intelligence-Dja6Aw67.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-install-trust-_fKrFMTK.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-ai-providers-BrbsHVDk.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-backup-scaling-BKNvzAup.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-configuration-DmtNd9lG.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-docs-audit-0u0EU32R.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-github-app-CKr6pn-U.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-quickstart-BrocR8fs.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rag-D9CMAuan.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rees-C7RXmLud.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rees-analyzers-ZUd56Ish.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-release-checklist-BeJ7EjnY.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-releases-Coub14_6.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-security-RzujkCTW.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-troubleshooting-zF2iypo0.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-unified-ams-orb-BA7_Ckkc.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-config-precedence-P9Ny0ODc.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-deployment-ilB7vQl1.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-discovery-plane-yQYxlnde.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-env-reference-D8cSRaS8.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-fleet-manifest-BgdIzXjC.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-goal-spec-w78Czsmn.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-kill-switch-incident-DtbC9dd1.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-observability-DYSux4Mu.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-operations-runbook-C1UwsLtG.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-sizing-CDwWWlwp.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-unattended-scheduling-BOPElerN.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.beta-onboarding-Bwf63VTb.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.capacity-CrXCysDc.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-self-hosting-BodG9Stu.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.mcp-clients-yCnzyn8e.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.owner-checklist-BVL5-qwm.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.quickstart-CUthprro.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.github-app-e23HT0kH.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-workflow-ChiRvGem.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.privacy-security-BfKg3fsZ.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.troubleshooting-CV0FX1ZD.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.tuning-CVXk56fF.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.loopover-commands-BP5BuO5I.js (Deleted) -494 bytes 0 bytes -100.0% 🗑️
assets/sparkles-CzduQuHH.js (Deleted) -494 bytes 0 bytes -100.0% 🗑️
assets/docs.how-reviews-work-BLY4YXB0.js (Deleted) -493 bytes 0 bytes -100.0% 🗑️
assets/app.owner-BcdmvIin.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-ReqTUbGt.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground--xoDkox7.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/reveal-1UfMwl9D.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-BW88lzPq.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-DCzHs85h.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-D0beH0wE.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-BN66qTuJ.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-CekPtc51.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-Djbym8qK.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-Bm8mE4i2.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-BYEzz24N.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-B9jBRWmc.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/wrench-Be4l0IF8.js (Deleted) -303 bytes 0 bytes -100.0% 🗑️
assets/list-checks-DnRAeu5Z.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/shield-BxfBYK7e.js (Deleted) -272 bytes 0 bytes -100.0% 🗑️
assets/workflow-_P9p80J6.js (Deleted) -265 bytes 0 bytes -100.0% 🗑️
assets/compass-Dr0KXmT9.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-BcuCLESQ.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/activity-DpQ2MaUX.js (Deleted) -234 bytes 0 bytes -100.0% 🗑️
assets/message-square-OjEv-3EK.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-B0HfFKaX.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-1FJp3H_b.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-B3yCE8GX.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-nMdCr77q.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-w346dLVN.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️
assets/circle-DVwt3zRo.js (Deleted) -130 bytes 0 bytes -100.0% 🗑️

@codecov

codecov Bot commented Jul 21, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 88.55%. Comparing base (76f5065) to head (4c15edd).
⚠️ Report is 3 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #7686   +/-   ##
=======================================
  Coverage   88.54%   88.55%           
=======================================
  Files         725      725           
  Lines       76170    76183   +13     
  Branches    22671    22677    +6     
=======================================
+ Hits        67446    67461   +15     
  Misses       7680     7680           
+ Partials     1044     1042    -2     
Flag Coverage Δ
shard-1 33.26% <21.05%> (-0.01%) ⬇️
shard-2 36.22% <15.78%> (-0.01%) ⬇️
shard-3 36.00% <89.47%> (+0.03%) ⬆️
shard-4 40.81% <0.00%> (-0.01%) ⬇️
shard-5 29.40% <10.52%> (-0.01%) ⬇️
shard-6 32.03% <15.78%> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
packages/loopover-engine/src/focus-manifest.ts 98.49% <100.00%> (+<0.01%) ⬆️
src/api/routes.ts 95.09% <ø> (ø)
src/db/repositories.ts 96.74% <ø> (ø)
src/db/schema.ts 72.97% <ø> (ø)
src/github/backfill.ts 95.96% <ø> (ø)
src/openapi/schemas.ts 100.00% <ø> (ø)
src/queue/ai-review-orchestration.ts 100.00% <ø> (ø)
src/queue/processors.ts 95.75% <100.00%> (+0.04%) ⬆️
src/review/grounding-wire.ts 98.00% <100.00%> (+1.00%) ⬆️
src/review/review-grounding.ts 98.80% <ø> (ø)
... and 2 more

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant