Skip to content

feat(review): add a config-as-code content-lane deliverable gate - #7703

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

feat(review): add a config-as-code content-lane deliverable gate#7703
JSONbored merged 3 commits into
mainfrom
claude/loopover-gittensory-orb-bugs-a63c52

Conversation

@JSONbored

@JSONbored JSONbored commented Jul 21, 2026

Copy link
Copy Markdown
Owner

Summary

Investigated a reported gate bug: for repos with a "one entry file per contribution" content lane (a registry where each PR is expected to add/edit one entry file matching a configured entryFileGlob), the gate's linked-issue satisfaction check only looks at CI-green + AI score + closing keywords -- it never checks whether the PR actually delivers the content the issue asked for. A PR that adds only a test file (or otherwise never touches the path the linked issue names) can still auto-merge and auto-close the issue, leaving the registry entry undelivered.

Root cause: there was no deterministic check anywhere in the pipeline that cross-references a linked issue's text against the PR's actual changed files for content-lane repos specifically.

Fix: a new, fully generic, spec-driven check --

  • checkContentLaneDeliverable(spec, issueText, changedFiles) (src/review/content-lane/registry-logic.ts) -- pure function, no repo-specific logic. It extracts path-shaped tokens from the linked issue's title/body, matches them against the repo's resolved RegistryLaneSpec (entry/provider/artifact patterns), and reports whether the PR's changed files touch the mentioned path.
  • Wired behind a new contentLaneDeliverableGateMode setting (off / advisory / block, off by default) -- the same three-state pattern every other gate dimension in this codebase already uses. Fully wired through the DB (migration + Drizzle schema), the engine's .loopover.yml focus-manifest parser/serializer, the OpenAPI schema, .loopover.yml.example/config/examples/loopover.full.yml, and the docs-drift manifest.
  • The check only runs for a repo that has an actual contentLane: spec resolved (via resolveRegistryLaneSpec) -- a repo with no content-lane config is always a no-op, so this adds zero behavior for the vast majority of repos LoopOver reviews.

A second, related report (a content-free "Registry surface review" hard-blocker rejecting PRs that correctly fill in previously-missing fields on existing entries) was investigated separately and traced to the same root cause already fixed and merged in #7670 (an in-place edit was being misread as a duplicate resubmission). No further code change was needed for that one; it's most likely still being observed live due to self-hosted deployment lag on the versioned Docker image.

Also fixed along the way (2 follow-up commits, caught by CI):

  • packages/loopover-engine/src/advisory/gate-advisory.ts is a hand-duplicated "twin" of src/rules/advisory.ts (the gate-decision logic), enforced by scripts/check-engine-parity.ts's version-skew check. My new contentLaneDeliverableGateMode branch only landed on the host copy at first -- CI correctly failed on the resulting skew. Mirrored it into the engine twin.
  • While in there, found that linkedIssueSatisfactionGateMode (feat(review): wire linked-issue satisfaction into the deterministic gate #4069, merged 2026-07-07) was also never mirrored into the engine twin, and has been silently drifted for two weeks -- CI's engine-parity check only diffs against each PR's own changed files, so a PR that touches only one twin without updating the other (and without bumping the engine package version) goes undetected once merged. Any self-hoster consuming @loopover/engine's predicted-gate logic directly would silently never predict a linked_issue_scope_mismatch blocker for a repo with linkedIssueSatisfaction: block configured. Backfilled it while already looking at this file.

Scope

  • The PR title follows type(scope): short summary Conventional Commit format.
  • This PR is focused (one new gate dimension + its full config-as-code wiring, plus two small directly-related engine-twin-parity fixes discovered while wiring it) 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 of a bug report, not the contributor pipeline.

Validation

  • git diff --check
  • npm run db:migrations:check, npm run db:schema-drift:check
  • npm run cf-typegen:check
  • npm run docs:drift-check, npm run manifest:drift-check, npm run engine-parity:drift-check
  • npx tsc --noEmit -p tsconfig.json -- clean
  • npm audit --audit-level=moderate -- 0 vulnerabilities
  • Every test file touched by this diff run directly (not sharded): 18 files, 1685 tests, all passing -- covers the new pure check, the processor wiring (mode gating, spec resolution, fetch failure/empty-text fail-open paths, advisory/block finding push), the gate-policy blocker mapping, the engine focus-manifest parser/serializer round-trip, the OpenAPI/settings-preview parity fix this PR also carries, and the docs-drift script's field-count fixtures.
  • test/unit/check-engine-parity-script.test.ts (38 tests), test/contract/engine-parity.test.ts (14 tests), npm run test --workspace @loopover/engine (5 tests) -- all passing after the twin-mirroring fixes.
  • Full unsharded npm run test:coverage -- not obtained clean this round: two unrelated test files (miner-repo-clone.test.ts, agent-sdk-driver.test.ts, both doing real git subprocess work) failed only under heavy concurrent load from multiple simultaneous full-suite runs on this machine, and passed cleanly every time re-run in isolation; a third, pre-existing failure in miner-cross-repo-evaluation.test.ts is unrelated to this diff (from feat(miner): add a dry-run full-execution mode to the cross-repo evaluation harness #7668, already flagged separately). Codecov's own codecov/patch check will independently verify patch coverage in CI.
  • New/changed behavior has unit tests for new branches, fail-safe/fail-open paths, and the mode-gating boundary, including a regression test reproducing the reported incident's exact shape (linked issue naming a path the PR's changed files never touch).

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, plus real doc-page mentions in how-reviews-work.mdx/tuning.mdx/github-app.mdx); changelog itself intentionally not touched.

Notes

contentLaneDeliverableGateMode is opt-in and defaults to off for every repo -- zero behavior change anywhere until a repo's .loopover.yml (or dashboard/API settings) explicitly sets it. Nothing in the check itself is specific to any one repo or registry; any repo with a contentLane: spec gets the same protection. Activating it for any specific repo is a private server-config change, not something this PR does.

The two engine-twin-parity fixes are pure backfills of already-shipped host behavior into the engine package copy -- no new gate behavior, no host-side change, just closing a silent drift gap so @loopover/engine consumers see the same gate predictions the live host does.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jul 21, 2026

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 e8fe3bb Commit Preview URL

Branch Preview URL
Jul 21 2026, 10:08 AM

@JSONbored JSONbored self-assigned this Jul 21, 2026
Registries with a "one entry file per contribution" content lane (e.g.
an issue naming a specific path under a configured entryFileGlob) could
have their linked issue auto-satisfied by a PR that never touches that
path -- a test-only or unrelated-file PR closes the issue without
delivering the content it asked for.

Add checkContentLaneDeliverable(), a pure, spec-driven check: it scans
the linked issue's text for a path token matching the resolved repo's
RegistryLaneSpec and verifies the PR's changed files actually touch it.
Wire it behind a new contentLaneDeliverableGateMode setting (off by
default, advisory/block like every other gate dimension), fully wired
through the DB, engine focus-manifest parser, OpenAPI schema, and
.loopover.yml -- no repo-specific logic anywhere in the check itself,
so any repo with a contentLane: config gets the same protection.
@superagent-security

Copy link
Copy Markdown
Contributor

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

@JSONbored
JSONbored force-pushed the claude/loopover-gittensory-orb-bugs-a63c52 branch from 715afc2 to 60afcee Compare July 21, 2026 09:48
@codecov

codecov Bot commented Jul 21, 2026

Copy link
Copy Markdown

Bundle Report

Changes will increase total bundle size by 4.76kB (0.06%) ⬆️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.43MB 4.76kB (0.06%) ⬆️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-mT3arFnH.js (New) 2.17MB 2.17MB 100.0% 🚀
assets/tanstack-vendor-91F8Hj6S.js (New) 809.78kB 809.78kB 100.0% 🚀
openapi.json 512 bytes 523.52kB 0.1%
assets/docs.fumadocs-spike-api-reference-CRFz54H5.js (New) 442.92kB 442.92kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-0LUg32Gc.js (New) 201.71kB 201.71kB 100.0% 🚀
assets/modal-BRUBaIfr.js (New) 184.38kB 184.38kB 100.0% 🚀
assets/client-O3_FDIbA.js (New) 146.06kB 146.06kB 100.0% 🚀
assets/maintainer-panel-bywd060y.js (New) 78.53kB 78.53kB 100.0% 🚀
assets/tuning-BEpwprKw.js (New) 64.47kB 64.47kB 100.0% 🚀
assets/ui-vendor-BToI_Rr-.js (New) 57.04kB 57.04kB 100.0% 🚀
assets/github-app-BdwQjGgm.js (New) 36.18kB 36.18kB 100.0% 🚀
assets/routes-DKiBjXkU.js (New) 34.83kB 34.83kB 100.0% 🚀
assets/how-reviews-work-C1lka94T.js (New) 33.07kB 33.07kB 100.0% 🚀
assets/owner-panel-CWmhSSXq.js (New) 27.26kB 27.26kB 100.0% 🚀
assets/app-BoMl6D6v.js (New) 25.65kB 25.65kB 100.0% 🚀
assets/app.runs-_5jGSvz2.js (New) 23.55kB 23.55kB 100.0% 🚀
assets/miner-panel-B7j8KcuC.js (New) 20.25kB 20.25kB 100.0% 🚀
assets/api._op-DhOc2KBx.js (New) 17.55kB 17.55kB 100.0% 🚀
assets/self-hosting-docs-audit-CDkDYc0e.js (New) 16.63kB 16.63kB 100.0% 🚀
assets/app.index-BYU3PH2D.js (New) 15.62kB 15.62kB 100.0% 🚀
assets/playground-panel-Hyb8Qczo.js (New) 14.49kB 14.49kB 100.0% 🚀
assets/app.audit-BABSCoU-.js (New) 10.11kB 10.11kB 100.0% 🚀
assets/extension-BiIBP-VT.js (New) 10.04kB 10.04kB 100.0% 🚀
assets/app.config-generator-DsqBs7G6.js (New) 9.88kB 9.88kB 100.0% 🚀
assets/fairness-BdE4Dosg.js (New) 8.34kB 8.34kB 100.0% 🚀
assets/maintainers-B9qlrQPO.js (New) 8.03kB 8.03kB 100.0% 🚀
assets/miners-BGrusgIe.js (New) 7.85kB 7.85kB 100.0% 🚀
assets/agents-Afm0M7fj.js (New) 7.76kB 7.76kB 100.0% 🚀
assets/commands-panel-BFfziyND.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/maintainer-workflow-BwY8MW3l.js (New) 6.5kB 6.5kB 100.0% 🚀
assets/roadmap-qLs29k8n.js (New) 6.33kB 6.33kB 100.0% 🚀
assets/digest-panel-BTbSjlvv.js (New) 6.18kB 6.18kB 100.0% 🚀
assets/repos._owner._repo.quality-Bhn4iHBV.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs.index-DA2n2RPW.js (New) 5.55kB 5.55kB 100.0% 🚀
assets/api.index-CbOJg-UG.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/api-CiEXhUXG.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-CFQJxg0_.js (New) 2.67kB 2.67kB 100.0% 🚀
assets/app.workbench-C9rPW1zE.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/session-B4fqfm-H.js (New) 1.45kB 1.45kB 100.0% 🚀
assets/tooltip-CyPWU8HK.js (New) 1.45kB 1.45kB 100.0% 🚀
assets/tabs-vxGZW4ce.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-Bh7cO0ld.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-CPu4Ici-.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-B0VkvB0y.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/docs.ai-summaries-CvRYsKhY.js (New) 506 bytes 506 bytes 100.0% 🚀
assets/app.maintainer-B_LsUkOl.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/docs.branch-analysis-NHumCPW4.js (New) 499 bytes 499 bytes 100.0% 🚀
assets/docs.scoreability-xLanr8GZ.js (New) 499 bytes 499 bytes 100.0% 🚀
assets/docs.upstream-drift-BlOBRpzK.js (New) 499 bytes 499 bytes 100.0% 🚀
assets/docs.federated-fleet-intelligence-cEA9XbSI.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.maintainer-install-trust-B5JTC1FP.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-ai-providers-BYO5vkRr.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-backup-scaling-BzOVk_19.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-configuration-B96OEAPE.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-docs-audit-Wka7Gq1b.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-github-app-n6ltd6v_.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-quickstart-CBT7hjPJ.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-rag-D1oSropK.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-rees-BRONlh59.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-rees-analyzers-BwRFFfc3.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-release-checklist-BZGXssM6.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-releases-Bb6Gk6ha.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-security-CwInjCG5.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-troubleshooting-Dd8fpgft.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.self-hosting-unified-ams-orb-BcCDKi-N.js (New) 498 bytes 498 bytes 100.0% 🚀
assets/docs.ams-config-precedence-DZ5YDyRH.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-deployment-C0ZmlJK2.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-discovery-plane-C0XD_O1B.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-env-reference-C1qZKhDB.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-fleet-manifest-DAwrMu5Q.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-goal-spec-BFVv7oDP.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-kill-switch-incident-B-dlXD5i.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-observability-B-sviUjr.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-operations-runbook-C5g_1Iav.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-sizing-xq3fU_ib.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.ams-unattended-scheduling-kgpTQ7hZ.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.beta-onboarding-ByXG3ktE.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.capacity-Na6e24jy.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.maintainer-self-hosting-BV-anPBe.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.mcp-clients-COZVEuGg.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.owner-checklist-D-X6rV41.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.quickstart-DfAv1cB-.js (New) 497 bytes 497 bytes 100.0% 🚀
assets/docs.github-app--UTU5QHj.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.maintainer-workflow-BmFFMiJ7.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.privacy-security-Bhr_pXxX.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.troubleshooting-o_GDq1AT.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.tuning-BcRO-hnq.js (New) 495 bytes 495 bytes 100.0% 🚀
assets/docs.loopover-commands-a8QoS4IF.js (New) 494 bytes 494 bytes 100.0% 🚀
assets/sparkles-CeGd07Mz.js (New) 494 bytes 494 bytes 100.0% 🚀
assets/docs.how-reviews-work-BFYB_Z-_.js (New) 493 bytes 493 bytes 100.0% 🚀
assets/app.owner-D6U5B_76.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-BO8LafTI.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-B5EpYq5X.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/reveal-CB6Jgv-3.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-CqM8vKsb.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-DNcWfumR.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-D1GfaDzR.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-CaDS1zuj.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-2wkRh5JO.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-CCA_Ff72.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-DAaafQOz.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-DpMtKJVC.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-ClYYJGjj.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/wrench-CQ7umDXH.js (New) 303 bytes 303 bytes 100.0% 🚀
assets/list-checks-CCdzZrff.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/shield-kBDJAjKW.js (New) 272 bytes 272 bytes 100.0% 🚀
assets/workflow-qNgzaD4h.js (New) 265 bytes 265 bytes 100.0% 🚀
assets/compass-Djr26apy.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-C2xa12fd.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/activity-DdRWYt0R.js (New) 234 bytes 234 bytes 100.0% 🚀
assets/message-square-D0RMOQ1G.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-Dh0Va5RR.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-CKVKwPov.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-CstfYeWd.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-D6_C1hZR.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-B67E1Udd.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/circle-RzJWX8sk.js (New) 130 bytes 130 bytes 100.0% 🚀
assets/add-scalar-classes-DehStkjt.js (Deleted) -2.17MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-DHuPn6jb.js (Deleted) -809.54kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-Dsbd0cS0.js (Deleted) -442.92kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-cxZ8H46D.js (Deleted) -201.71kB 0 bytes -100.0% 🗑️
assets/modal-aiMZG_Yr.js (Deleted) -184.38kB 0 bytes -100.0% 🗑️
assets/client-DMJMz7Ta.js (Deleted) -146.06kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-C4OO29PK.js (Deleted) -78.53kB 0 bytes -100.0% 🗑️
assets/tuning-B0nxqzvj.js (Deleted) -63.29kB 0 bytes -100.0% 🗑️
assets/ui-vendor-6IrZhy9r.js (Deleted) -57.04kB 0 bytes -100.0% 🗑️
assets/github-app-Rd1m4Ogz.js (Deleted) -35.05kB 0 bytes -100.0% 🗑️
assets/routes-Bs55Exk5.js (Deleted) -34.83kB 0 bytes -100.0% 🗑️
assets/how-reviews-work-IEFrV_-a.js (Deleted) -31.4kB 0 bytes -100.0% 🗑️
assets/owner-panel-DAAwVGFe.js (Deleted) -27.23kB 0 bytes -100.0% 🗑️
assets/app-CXwWa9Lk.js (Deleted) -25.65kB 0 bytes -100.0% 🗑️
assets/app.runs-CxjFFGok.js (Deleted) -23.55kB 0 bytes -100.0% 🗑️
assets/miner-panel-C7R8uTGl.js (Deleted) -20.25kB 0 bytes -100.0% 🗑️
assets/api._op-CUWJ9eGl.js (Deleted) -17.55kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-BBnD1cBT.js (Deleted) -16.63kB 0 bytes -100.0% 🗑️
assets/app.index-CPMFA8Zr.js (Deleted) -15.62kB 0 bytes -100.0% 🗑️
assets/playground-panel-dO7FkdYn.js (Deleted) -14.49kB 0 bytes -100.0% 🗑️
assets/app.audit-954y5aYb.js (Deleted) -10.11kB 0 bytes -100.0% 🗑️
assets/extension-P-M1Bg1V.js (Deleted) -10.04kB 0 bytes -100.0% 🗑️
assets/app.config-generator-GEwsefra.js (Deleted) -9.88kB 0 bytes -100.0% 🗑️
assets/fairness-B8FzC_kv.js (Deleted) -8.34kB 0 bytes -100.0% 🗑️
assets/maintainers-CGKNeFV0.js (Deleted) -8.03kB 0 bytes -100.0% 🗑️
assets/miners-BZ8p0ulN.js (Deleted) -7.85kB 0 bytes -100.0% 🗑️
assets/agents-Ba_vuilX.js (Deleted) -7.76kB 0 bytes -100.0% 🗑️
assets/commands-panel-1Vdhn4_5.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-CMpW_3yM.js (Deleted) -6.5kB 0 bytes -100.0% 🗑️
assets/roadmap-BUHO9-C4.js (Deleted) -6.33kB 0 bytes -100.0% 🗑️
assets/digest-panel-Dv2amj1a.js (Deleted) -6.18kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-4_vIHF46.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs.index-CX15QXCj.js (Deleted) -5.55kB 0 bytes -100.0% 🗑️
assets/api.index-Bo8nzfZ7.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/api-C8vXK240.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-D85RtHib.js (Deleted) -2.67kB 0 bytes -100.0% 🗑️
assets/app.workbench-OFRA09y0.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/session-rWZvbXwQ.js (Deleted) -1.45kB 0 bytes -100.0% 🗑️
assets/tooltip-C0kV3YNj.js (Deleted) -1.45kB 0 bytes -100.0% 🗑️
assets/tabs-D8t7mYV2.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-xgyB2w3-.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-Bj0jZ38n.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-DvY-LRbN.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/docs.ai-summaries-COdROiHH.js (Deleted) -506 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-BXEB2mA5.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/docs.branch-analysis-skQ1kTyF.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.scoreability-C44eH2CE.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.upstream-drift-DYJs0R04.js (Deleted) -499 bytes 0 bytes -100.0% 🗑️
assets/docs.federated-fleet-intelligence-U1kQECAE.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-install-trust-QwrEywh8.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-ai-providers-Di1lMH4s.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-backup-scaling-xq5iv9MG.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-configuration-PIS8U8eq.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-docs-audit-DYL-gx3s.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-github-app-BtbIMr9x.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-quickstart-DTeRNME0.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rag-C5VZ_jDt.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rees-CL5aETu_.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-rees-analyzers-YG4cz4UT.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-release-checklist-9K7fGvoW.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-releases-Ce88AzII.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-security-_1fEql2z.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-troubleshooting-DQCEKPpU.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.self-hosting-unified-ams-orb-NrJ5i4E_.js (Deleted) -498 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-config-precedence-DySjgDJI.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-deployment-B_AMxHe8.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-discovery-plane-BF0-iMna.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-env-reference-fGnxjQYG.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-fleet-manifest-BL3Do4EW.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-goal-spec-C6UzfOlL.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-kill-switch-incident-KDF_jg02.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-observability-RV4O9s79.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-operations-runbook-CALS9f9j.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-sizing-DwB6ZP2C.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.ams-unattended-scheduling-spfhoOAE.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.beta-onboarding-CbZvWP9V.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.capacity-C8yXWKjX.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-self-hosting-Ckp4twWr.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.mcp-clients-EqHvTY6x.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.owner-checklist-BwXPZ4vx.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.quickstart-BAYfL_MB.js (Deleted) -497 bytes 0 bytes -100.0% 🗑️
assets/docs.github-app-CLKbV6Mv.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.maintainer-workflow-C9ZIM4wO.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.privacy-security-CFzry8CV.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.troubleshooting--AIvIsik.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.tuning-xgVvnQkc.js (Deleted) -495 bytes 0 bytes -100.0% 🗑️
assets/docs.loopover-commands-Cnc7uUBB.js (Deleted) -494 bytes 0 bytes -100.0% 🗑️
assets/sparkles-D8oFjPQm.js (Deleted) -494 bytes 0 bytes -100.0% 🗑️
assets/docs.how-reviews-work-Db4d5LPq.js (Deleted) -493 bytes 0 bytes -100.0% 🗑️
assets/app.owner-O4jBVHMn.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-85EnfIIY.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground-D81vratW.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/reveal-DbGGNZup.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-0qhMpYeZ.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-BZGB-mdY.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-BXBfOQfm.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-DyrR8m85.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-B6ONhngp.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-DUlaN2bD.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-DUjkuNX7.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-DNDG7hsN.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-DSSSn5GB.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/wrench-BQ59sH-X.js (Deleted) -303 bytes 0 bytes -100.0% 🗑️
assets/list-checks-ocZDGmNr.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/shield-Bc5wAQy2.js (Deleted) -272 bytes 0 bytes -100.0% 🗑️
assets/workflow-Ds5uLbFc.js (Deleted) -265 bytes 0 bytes -100.0% 🗑️
assets/compass-BIRSJD0E.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-DU_5akHE.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/activity-pqngf3UD.js (Deleted) -234 bytes 0 bytes -100.0% 🗑️
assets/message-square-CUBLpzKU.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-BS77Yhjj.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-jqxC5p8C.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-DuAuXi_F.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-DTwZb4R6.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-qDg4YTnT.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️
assets/circle-5YINuqBx.js (Deleted) -130 bytes 0 bytes -100.0% 🗑️

@codecov

codecov Bot commented Jul 21, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 84.84848% with 5 lines in your changes missing coverage. Please review.
✅ Project coverage is 88.56%. Comparing base (ce48673) to head (e8fe3bb).
⚠️ Report is 2 commits behind head on main.
✅ All tests successful. No failed tests found.

Files with missing lines Patch % Lines
...ages/loopover-engine/src/advisory/gate-advisory.ts 0.00% 0 Missing and 2 partials ⚠️
src/queue/processors.ts 90.00% 1 Missing and 1 partial ⚠️
packages/loopover-engine/src/focus-manifest.ts 0.00% 0 Missing and 1 partial ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #7703      +/-   ##
==========================================
- Coverage   88.56%   88.56%   -0.01%     
==========================================
  Files         725      725              
  Lines       76266    76299      +33     
  Branches    22705    22721      +16     
==========================================
+ Hits        67544    67572      +28     
- Misses       7680     7681       +1     
- Partials     1042     1046       +4     
Flag Coverage Δ
shard-1 55.95% <78.78%> (+3.11%) ⬆️
shard-2 49.74% <12.12%> (-2.21%) ⬇️
shard-3 49.49% <24.24%> (+1.01%) ⬆️

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

Files with missing lines Coverage Δ
src/api/routes.ts 95.09% <ø> (ø)
src/db/repositories.ts 96.74% <100.00%> (+<0.01%) ⬆️
src/db/schema.ts 72.97% <ø> (ø)
src/openapi/schemas.ts 100.00% <ø> (ø)
src/queue/gate-checks.ts 100.00% <ø> (ø)
src/review/content-lane/registry-logic.ts 100.00% <100.00%> (ø)
src/rules/advisory.ts 97.78% <100.00%> (+<0.01%) ⬆️
src/settings/agent-actions.ts 98.00% <ø> (ø)
src/signals/focus-manifest.ts 99.58% <100.00%> (+<0.01%) ⬆️
src/signals/settings-preview.ts 98.78% <ø> (ø)
... and 4 more

…ngine twin

packages/loopover-engine/src/advisory/gate-advisory.ts is a hand-duplicated
twin of src/rules/advisory.ts (#4518's gate-decision twin pair), enforced by
scripts/check-engine-parity.ts's version-skew check. The new
contentLaneDeliverableGateMode field and its isConfiguredGateBlocker branch
were added to the host copy but never mirrored to the engine copy, so
self-hosters consuming @loopover/engine directly would silently lack the
new gate dimension, and CI's engine-parity check correctly failed the PR.
@loopover-orb loopover-orb Bot added the gittensor:feature Gittensor-scored feature linked to a feature issue — scores a 0.25x multiplier. label Jul 21, 2026
… from the engine twin

While mirroring contentLaneDeliverableGateMode into gate-advisory.ts, found that
linkedIssueSatisfactionGateMode (#4069, merged 2026-07-07) was never mirrored either
-- CI's engine-parity check only diffs against each PR's own changed files, so a
prior PR that touched only the host twin without updating the engine twin (and
without bumping packages/loopover-engine/package.json) went undetected. Any
self-hoster consuming @loopover/engine's predicted-gate logic directly would
silently never predict a linked_issue_scope_mismatch blocker for a repo with
linkedIssueSatisfaction: block configured. Backfilled now while in the area.
@JSONbored
JSONbored merged commit 6c31631 into main Jul 21, 2026
17 of 18 checks passed
@JSONbored
JSONbored deleted the claude/loopover-gittensory-orb-bugs-a63c52 branch July 21, 2026 10:18
This was referenced Jul 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

gittensor:feature Gittensor-scored feature linked to a feature issue — scores a 0.25x multiplier.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant