Skip to content

refactor(openapi): replace the settings-parity script with a compile-time schema/type assertion (#9531) - #9585

Merged
JSONbored merged 1 commit into
mainfrom
refactor/openapi-settings-parity-9531
Jul 28, 2026
Merged

refactor(openapi): replace the settings-parity script with a compile-time schema/type assertion (#9531)#9585
JSONbored merged 1 commit into
mainfrom
refactor/openapi-settings-parity-9531

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

Summary

Published-spec defects the key-set diff was structurally unable to see

All five turned up the moment the assertion compiled. Every one of them is a spec-vs-payload mismatch a generated client (including @loopover/mcp) would have been wrong about:

Field Defect
autonomy advertised "suggest" / "propose", removed from AutonomyLevel by #4620 (both were behaviorally identical to observe from day one) and dropped on persist ever since
contributorBlacklist[].githubId the immutable numeric id the API has returned since #9125 was absent from the schema entirely
moderationRules omitted "copycat", a real ModerationRuleType since #1969
expectedCiContexts declared | null and read as a distinct value from absent (focus-manifest.ts's !== null gate), but the schema never said nullable — unlike its identically-shaped sibling advisoryCheckRuns
settings-preview.aiReviewConfirmedContributorsOnly advertised a null that buildRepoSettingsPreview's ?? false makes unreachable

Making the types state what the read paths already guarantee

Reaching parity meant closing the gap between what the settings types declare and what both getRepositorySettings paths always return:

  • 13 config-as-code fields (typeLabelsEnabled, linkedIssueLabelPropagation, linkedIssueHardRules, commandAuthorization, contributorBlacklist, blacklistLabel, autonomy, moderationGateMode, fairnessAnalyticsMode, reviewEvasionProtection, draftPrClosePolicy, synchronizeClosePolicy, screenshotTableGate) become required on RepositorySettings — adjudicated one at a time against both DB read paths, which have always populated all 13.
  • The no-row defaults move out of getRepositorySettings' inline branch into defaultRepositorySettings(fullName), so there is one home for them; the 13 test fixtures that hand-maintained private copies of those defaults now spread it instead, which is how ten of them came to silently omit the same fields.
  • upsertRepositorySettings echoes linkedIssueHardRules / synchronizeClosePolicy, so PUT's response matches GET's shape for the same repo — it did not before.
  • resolveEffectiveSettings now skips undefined-valued manifest keys before the spread. manifest.settings is a Partial<>, so an explicitly-undefined key was indistinguishable from an absent one to the type system but not to the spread, which overwrote the resolved DB value with undefined. "Not overridden" is what an absent value means at every other layer of that resolver.
  • RepoSettingsPreview.autoProjectMilestoneMatch{,Backend} become optional rather than required-but-possibly-undefined: both are copied straight from settings, so JSON.stringify drops the key and the response genuinely omits the field.

Closes #9531.

Scope

  • The PR title follows type(scope): short summary Conventional Commit format, for example fix(api): restore profile access checks.
  • This PR is focused and does not mix unrelated backend, UI, MCP, docs, dependency, and 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 (e.g. Closes #123) — a linked open issue is required for every contributor PR.

Validation

  • git diff --check
  • npm run actionlint
  • npm run typecheck
  • npm run test:coverage locally; codecov/patch requires ≥99% coverage of the lines AND branches you changed (aim for 100% on your diff so CI variance does not fail near the threshold). Global coverage is a non-blocking trend with a loose 90% backstop, not the gate.
  • npm run test:workers
  • npm run build:mcp
  • npm run test:mcp-pack
  • npm run ui:openapi:check
  • npm run ui:lint
  • npm run ui:typecheck
  • npm run ui:build
  • npm audit --audit-level=moderate
  • New or changed behavior has unit/integration tests for new branches, fallback paths, and sanitizer boundaries

If any required check was skipped, explain why:

  • npm audit --audit-level=moderate reports 11 pre-existing high-severity advisories from the wranglerminiflare transitive chain under packages/discovery-index. This PR changes no dependency and does not touch package-lock.json, so the result is identical on main.
  • build:mcp / test:mcp-pack were not run: the diff touches no packages/loopover-mcp/** source. The MCP client consumes the generated openapi.json, whose regeneration is verified by ui:openapi:check above.
  • Coverage was measured unsharded with npm run test:coverage, then the changed lines were checked against coverage/lcov.info directly: 0 uncovered and 0 partially-covered changed lines in src/db/repositories.ts and src/signals/focus-manifest.ts (the only changed files with executable statements — the rest are Zod declarations and type-only edits). The full test/unit + test/contract run is green on this base: 23,574 passed, 6 skipped.

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.
  • API/OpenAPI/MCP behavior is updated and tested where needed.
  • UI changes use live API data or real empty/error/loading states, not production mock/demo fallbacks.
  • Visible UI changes include a UI Evidence section below with JPG/JPEG or PNG screenshots arranged as organized, captioned, clickable thumbnails. SVG screenshots are not used as review evidence. Review-only screenshots or recordings are not committed to the repository.
  • Public docs/changelogs are updated where needed; changelogs are only edited for release-prep PRs.

UI Evidence

Not applicable — no visible UI, frontend, or docs change. The only apps/loopover-ui/** file touched is the generated public/openapi.json.

Notes

  • RepositorySettingsSchema is a response schema only (spec.ts registers it and uses it for the 200 on GET /v1/repos/:owner/:repo/settings), so promoting fields from optional to required tightens what the spec promises about a payload without tightening any request body.
  • The .readonly() markers added to expectedCiContexts / advisoryCheckRuns (matching their ReadonlyArray declarations) are erased in the emitted JSON Schema — they add no readOnly: true, as the openapi.json diff shows.
  • npm run ui:openapi:settings-parity and its test:ci / ci.yml entries are removed along with the script. Four comments elsewhere that cited the script as the local precedent for tsx-over-node or for source-of-truth diffing are updated rather than left pointing at a deleted file.

…time schema/type assertion (#9531)

scripts/check-openapi-settings-parity.ts diffed the top-level KEY SETS of
RepositorySettingsSchema/RepoSettingsPreviewSchema against the two TS types by re-parsing
src/types.ts and src/signals/settings-preview.ts with brace-and-indent heuristics. It could
not see a field's optionality, nullability, or value type, and any reformatting of either
type would have silently broken its extraction.

test/unit/openapi-settings-schema-parity.test.ts replaces it with an exact-equality type
assertion in both directions, compared per key so a failure still names the drifted field.
Three published-spec defects the key-set diff had been structurally unable to see turned up
the moment it compiled:

- autonomy advertised "suggest"/"propose", removed from AutonomyLevel by #4620 and dropped
  on persist ever since;
- contributorBlacklist omitted the immutable githubId the API has returned since #9125;
- moderationRules omitted "copycat", a real ModerationRuleType since #1969.

Also: expectedCiContexts is declared and read as nullable but the schema never said so, and
the settings-preview's aiReviewConfirmedContributorsOnly advertised a null the builder's
`?? false` makes unreachable.

Reaching parity required the types to state what the read paths already guarantee. The
thirteen config-as-code fields both getRepositorySettings paths always populate become
required; the no-row defaults move into defaultRepositorySettings() so there is one home for
them, and upsertRepositorySettings echoes linkedIssueHardRules/synchronizeClosePolicy so
PUT's response matches GET's shape. resolveEffectiveSettings now skips undefined-valued
manifest keys before the spread, so config-as-code can no longer punch a hole in a resolved
DB value -- "not overridden" is what an absent value means at every other layer.
@loopover-orb

loopover-orb Bot commented Jul 28, 2026

Copy link
Copy Markdown
Contributor

Warning

⏸️ LoopOver review result - manual review recommended

Review updated: 2026-07-28 19:49:05 UTC

29 files · 1 AI reviewer · no blockers · CI green · clean

⏸️ Suggested Action - Manual Review

  • Touches a guarded path — held for manual review: This PR changes guardrail-protected path(s): .github/workflows/ci.yml (matched .github/workflows/**).

Review summary
This PR retires the regex-based openapi-settings-parity script in favor of a compile-time type-equality assertion (test/unit/openapi-settings-schema-parity.test.ts), and the assertion immediately surfaced five real published-spec defects: dead autonomy levels, a missing githubId field, a missing copycat moderation rule, a wrongly-non-nullable expectedCiContexts, and an incorrectly-nullable aiReviewConfirmedContributorsOnly. To make several RepositorySettings fields required (matching what both DB read paths always populate), the PR extracts defaultRepositorySettings, fixes upsertRepositorySettings to echo the same config-as-code defaults GET returns, and fixes a real bug in focus-manifest.ts's resolveEffectiveSettings where an explicitly-undefined manifest key was punching a hole through a resolved DB value. The type-required changes forced updates across many test fixtures, all consistently spreading the new defaults; this is broad but mechanical, well-tested, and CI is green. Linked issue #9531 is only partially covered per the brief (the issue also asks to drive the route↔spec ratchet to zero and retire the parallel security model across all routes), so this PR appears to be a well-scoped down-payment on that larger issue rather than closing it outright.

Nits — 7 non-blocking
  • The linked issue api: drive the route↔spec ratchet to zero — migrate every route through the seam, retire the parallel security model #9531 asks to 'migrate every route through the seam' and 'retire the parallel security model' — this PR only closes the settings-schema slice; worth confirming in the PR description that this is an intentional partial/incremental close rather than the full issue.
  • src/db/repositories.ts: defaultRepositorySettings has an indentation inconsistency in the diff (function body loses the original block's indent level) — cosmetic, but worth a formatter pass.
  • The brief's non-inclusive-terminology flags on `blacklist` are pre-existing naming inherited from the codebase's existing RepositorySettings type, not something this diff introduces — not actionable here.
  • src/signals/focus-manifest.ts:546 — the `api: drive the route↔spec ratchet to zero — migrate every route through the seam, retire the parallel security model #9531` magic number in a comment is just an issue reference, not a real magic-number smell.
  • Given aiReviewReviewers, expectedCiContexts, and advisoryCheckRuns now use `.readonly()` on the zod array — worth confirming existing callers that mutate these arrays (if any) still compile, though this passed typecheck already.
  • PR author also opened the linked issue — Link an issue that was opened by a different contributor, or provide a rationale for why this self-authored issue represents genuine discovery work.
  • Touches a guarded path — held for manual review — A maintainer must review and merge this change.

Decision drivers

  • ✅ Code review — No blockers (1 reviewer)
  • ⚠️ Gate result — Not blocking (Advisory; not blocking this PR.)
Context & advisory signals — never blocks the verdict
Signal Result Evidence
Linked issue ✅ Linked #9531
Related work ✅ No active overlap found No same-issue or scoped active PR overlap found.
Change scope ❌ 8/20 High review scope from cached public metadata (1 linked issue).
Validation posture ✅ 25/25 PR body includes validation/test evidence.
Contributor workload ✅ 10/10 Author activity: 14 registered-repo PR(s), 13 merged, 300 issue(s).
Contributor context ✅ Confirmed Gittensor contributor JSONbored; Gittensor profile; 14 PR(s), 300 issue(s).
Improvement ✅ Minor risk: clean · value: minor · LLM: significant
Linked issue satisfaction

Addressed
The PR retires scripts/check-openapi-settings-parity.ts, removes its CI step and npm script, and replaces it with a compile-time type-equality assertion (test/unit/openapi-settings-schema-parity.test.ts) between the Zod schemas and the RepositorySettings/RepoSettingsPreview TS types, exactly matching requirement 6 and the linked PR's stated deliverable. It also fixes several published-spec defects

Review context
  • Author: JSONbored
  • Role context: owner (maintainer lane)
  • Public audience mode: oss maintainer
  • Lane context: Repository is registered but has no active allocation in the current snapshot.
  • Public profile languages: Python, TypeScript, Ruby, Go, MDX, Shell, Solidity, JavaScript
  • Official Gittensor activity: 14 PR(s), 300 issue(s).
  • PR-specific overlap: none found.
Contributor next steps
  • Start here: Treat this as maintainer-lane context rather than normal contributor-lane activity.
  • Then work through the remaining 3 steps in the Signals table above.
Signal definitions
  • Related work = same linked issue, overlapping active PRs, or title/path similarity.
  • Change scope = cached public metadata such as size labels, draft state, and review-burden hints.
  • Validation posture = whether the PR provides enough public validation/test evidence for maintainer review.
  • Contributor workload = public contributor activity and cleanup pressure, not a repo-wide quality failure.
  • Contributor context = public GitHub/Gittensor identity context; non-Gittensor status is not a blocker.
🧪 Chat with LoopOver

Ask LoopOver a question about this PR directly in a comment — grounded only in the same cached, public-safe facts shown above, never a new claim.

  • @loopover ask &lt;question&gt; answers contribution-quality Q&A with source citations and freshness.
  • @loopover chat &lt;question&gt; answers in natural prose from cached decision-pack facts via local inference (maintainer/collaborator; read-only).
  • A plain-language @loopover mention with a real question is routed to the closest matching read-only command automatically — no exact syntax required.

Full command reference: https://loopover.ai/docs/loopover-commands

🧪 Experimental — new and may change.

Visual preview
Route Viewport Before (production) After (this PR's preview) Diff
/ desktop before /
before /
after /
after /
/ mobile before / (mobile)
before / (mobile)
after / (mobile)
after / (mobile)

Click any thumbnail to open the full-size screenshot. Before = production · After = this PR's preview deploy.

Scroll preview
Route Before (production) After (this PR's preview)
/ before / (scroll)
before / (scroll)
after / (scroll)
after / (scroll)

A short scroll-through clip (desktop) — click either thumbnail to open the full animation. Evidence for scroll-linked behavior a single screenshot can't show.

🟩 Safe / merged · 🟦 Advisory · 🟨 Held for review · 🟥 Blocked / closed


💰 Earn for open-source contributions like this. Gittensor lets GitHub contributors earn for the work they already do — register to start earning →.

Checked by LoopOver, a quiet PR intelligence layer for OSS maintainers.

  • Re-run LoopOver review

@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 f9f2a63 Commit Preview URL

Branch Preview URL
Jul 28 2026, 07:28 PM

@superagent-security

Copy link
Copy Markdown
Contributor

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

@codecov

codecov Bot commented Jul 28, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 89.83%. Comparing base (1ee2293) to head (f9f2a63).
⚠️ Report is 3 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #9585      +/-   ##
==========================================
- Coverage   89.83%   89.83%   -0.01%     
==========================================
  Files         875      878       +3     
  Lines      110958   111011      +53     
  Branches    26413    26421       +8     
==========================================
+ Hits        99680    99727      +47     
  Misses       9992     9992              
- Partials     1286     1292       +6     
Flag Coverage Δ
backend 95.61% <100.00%> (-0.01%) ⬇️
control-plane 99.86% <ø> (ø)
rees 89.62% <ø> (ø)

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

Files with missing lines Coverage Δ
src/db/repositories.ts 96.85% <100.00%> (ø)
src/openapi/schemas.ts 100.00% <ø> (ø)
src/signals/focus-manifest.ts 99.60% <100.00%> (+<0.01%) ⬆️
src/signals/settings-preview.ts 96.36% <ø> (-2.43%) ⬇️
src/types.ts 100.00% <ø> (ø)

... and 1 file with indirect coverage changes

@codecov

codecov Bot commented Jul 28, 2026

Copy link
Copy Markdown

Bundle Report

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

Detailed changes
Bundle name Size Change
loopover-ui 7.78MB 120.84kB (1.58%) ⬆️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-Wz1rVhGN.js (New) 2.16MB 2.16MB 100.0% 🚀
assets/tanstack-vendor-CoZhNfGY.js (New) 910.13kB 910.13kB 100.0% 🚀
openapi.json 76.81kB 707.7kB 12.17% ⚠️
assets/docs.fumadocs-spike-api-reference-HRrzDwnN.js (New) 443.45kB 443.45kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-BrlAbqGM.js (New) 201.7kB 201.7kB 100.0% 🚀
assets/modal-YbuCZmJQ.js (New) 184.5kB 184.5kB 100.0% 🚀
assets/client-Bfd9Zexe.js (New) 151.47kB 151.47kB 100.0% 🚀
assets/maintainer-panel-DG0ERq7j.js (New) 78.99kB 78.99kB 100.0% 🚀
assets/routes-DVFrNHaV.js (New) 35.96kB 35.96kB 100.0% 🚀
assets/owner-panel-CQKibvSL.js (New) 27.92kB 27.92kB 100.0% 🚀
assets/app-BfwyKBXR.js (New) 25.78kB 25.78kB 100.0% 🚀
assets/ui-vendor-BCuE5-76.js (New) 24.57kB 24.57kB 100.0% 🚀
assets/miner-panel-CQm2t8C6.js (New) 20.24kB 20.24kB 100.0% 🚀
assets/app.runs-IqlxePlJ.js (New) 20.22kB 20.22kB 100.0% 🚀
assets/api._op-BqiIe3c_.js (New) 17.57kB 17.57kB 100.0% 🚀
assets/self-hosting-docs-audit-CiZwy6n9.js (New) 16.6kB 16.6kB 100.0% 🚀
assets/docs._slug-5PEbGWnk.js (New) 15.52kB 15.52kB 100.0% 🚀
assets/playground-panel-BSN8UjSe.js (New) 14.42kB 14.42kB 100.0% 🚀
assets/fairness-B1Bl2Mro.js (New) 10.73kB 10.73kB 100.0% 🚀
assets/app.audit-DjghAX6g.js (New) 10.08kB 10.08kB 100.0% 🚀
assets/app.config-generator-Be56UPYD.js (New) 10.06kB 10.06kB 100.0% 🚀
assets/maintainers-DyaBG3WT.js (New) 8.06kB 8.06kB 100.0% 🚀
assets/miners-BTcj94vU.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/agents-ByiVFIPK.js (New) 7.74kB 7.74kB 100.0% 🚀
assets/commands-panel-BISiEEfR.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/maintainer-workflow-DFFe_LDV.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/digest-panel-CF-r7Jf8.js (New) 6.15kB 6.15kB 100.0% 🚀
assets/repos._owner._repo.quality-DzsDdNdP.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs-nav-C8aRm5FO.js (New) 6.01kB 6.01kB 100.0% 🚀
assets/docs.index-Cl8xVZvH.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/api.index-DY8xcvxf.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/docs-DXe1A3Lz.js (New) 2.7kB 2.7kB 100.0% 🚀
assets/api-gqdD_LoO.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-BGnbyx6r.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-C-BePuTw.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench-DVLJSMxo.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/tabs-CGqdj5H7.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-DioVAgK4.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-wtf_Q6zt.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-DHoql8Iv.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-Ddu3k8Ju.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/app.owner-CWewVVlM.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-CeuUuwAP.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-B_3R8w6l.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-7FBv51A1.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-DzbJrAYE.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-BysAXNs5.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-Czj61sEz.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-jfEu_raL.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-BoLMxr-P.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-CXwDg6K8.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-CF4Md7Y_.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-DUXZZTRt.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/list-checks-swi6IcE9.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/compass-C8W8zW7u.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-C_JQPVVl.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/message-square-DMc4Gzc8.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-D6VXgQii.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-DeY18R8v.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-CV_5bMK1.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-B-ODr5bD.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-Bst6GZ4x.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/add-scalar-classes-CzsZjBp5.js (Deleted) -2.16MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-hPfft2uo.js (Deleted) -866.09kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-DHav1n6d.js (Deleted) -443.45kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-DFDx2O-b.js (Deleted) -201.7kB 0 bytes -100.0% 🗑️
assets/modal-8qWQUoIw.js (Deleted) -184.5kB 0 bytes -100.0% 🗑️
assets/client-DmBLXNTN.js (Deleted) -151.47kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-Bsu8XqZS.js (Deleted) -78.99kB 0 bytes -100.0% 🗑️
assets/routes-Cd37ugs0.js (Deleted) -35.96kB 0 bytes -100.0% 🗑️
assets/owner-panel-DZ3CdbSu.js (Deleted) -27.92kB 0 bytes -100.0% 🗑️
assets/app-DzVGOipY.js (Deleted) -25.78kB 0 bytes -100.0% 🗑️
assets/ui-vendor-BAHx250m.js (Deleted) -24.57kB 0 bytes -100.0% 🗑️
assets/miner-panel-BWK8-jZu.js (Deleted) -20.24kB 0 bytes -100.0% 🗑️
assets/app.runs-z_xaFKMf.js (Deleted) -20.22kB 0 bytes -100.0% 🗑️
assets/api._op-z-wjf_bn.js (Deleted) -17.57kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-B5B_yM6S.js (Deleted) -16.6kB 0 bytes -100.0% 🗑️
assets/docs._slug-Did43G6J.js (Deleted) -15.52kB 0 bytes -100.0% 🗑️
assets/playground-panel-Be8Qq7cF.js (Deleted) -14.42kB 0 bytes -100.0% 🗑️
assets/fairness-Gssv-L_I.js (Deleted) -10.73kB 0 bytes -100.0% 🗑️
assets/app.audit-bJWPBjpj.js (Deleted) -10.08kB 0 bytes -100.0% 🗑️
assets/app.config-generator-OrpLyF70.js (Deleted) -10.06kB 0 bytes -100.0% 🗑️
assets/maintainers-BwwyBuso.js (Deleted) -8.06kB 0 bytes -100.0% 🗑️
assets/miners-D9abaPSS.js (Deleted) -7.91kB 0 bytes -100.0% 🗑️
assets/agents-Cbko_XPo.js (Deleted) -7.74kB 0 bytes -100.0% 🗑️
assets/commands-panel-hzW2QsD1.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-CDtNg06P.js (Deleted) -6.52kB 0 bytes -100.0% 🗑️
assets/digest-panel-CGbdDTAN.js (Deleted) -6.15kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-BkeU3YDt.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs-nav-CqMI2HEk.js (Deleted) -6.01kB 0 bytes -100.0% 🗑️
assets/docs.index-DsKXlk90.js (Deleted) -5.95kB 0 bytes -100.0% 🗑️
assets/api.index-BUGpIFMe.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/docs-9p-EgvPH.js (Deleted) -2.7kB 0 bytes -100.0% 🗑️
assets/api-DLvc8siE.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-page-6ltADNVN.js (Deleted) -2.1kB 0 bytes -100.0% 🗑️
assets/table-Bt2a1yvO.js (Deleted) -1.75kB 0 bytes -100.0% 🗑️
assets/app.workbench-FzOV4FmA.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/tabs-D9WqkRhd.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-hJVqMI59.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-BBVu6eB7.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-CFtQ2eQQ.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-CF-pfgPl.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/app.owner-BVqT76ea.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-D9HW4azP.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground-DinkEwKf.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-DAoJyv1a.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-CmjfHjtL.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-0F2NgXk-.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-SVapCkQ9.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-D1BvCWlX.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-9knDs4Xx.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-C2jfgChb.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-D34r8_wp.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-CVMzKg7L.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/list-checks-D-sBWpDk.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/compass-KliiXcC6.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-HQeJWkuG.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/message-square-GlAmpI37.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-BG-cmgYH.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-BS6c1Sbv.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-B7zBtKkU.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-s8b4d_Z5.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-W96kUT38.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️

@loopover-orb loopover-orb Bot added the manual-review Gittensor contributor context label Jul 28, 2026
@JSONbored
JSONbored merged commit ea86691 into main Jul 28, 2026
11 checks passed
@JSONbored
JSONbored deleted the refactor/openapi-settings-parity-9531 branch July 28, 2026 19:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

manual-review Gittensor contributor context

Projects

None yet

Development

Successfully merging this pull request may close these issues.

api: drive the route↔spec ratchet to zero — migrate every route through the seam, retire the parallel security model

1 participant