Skip to content

fix(openapi): declare the predictedGate/dataQuality fields branch-analysis actually returns (#9531) - #9587

Merged
JSONbored merged 1 commit into
mainfrom
fix/branch-analysis-predicted-gate-9531
Jul 28, 2026
Merged

fix(openapi): declare the predictedGate/dataQuality fields branch-analysis actually returns (#9531)#9587
JSONbored merged 1 commit into
mainfrom
fix/branch-analysis-predicted-gate-9531

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

Summary

Follow-up to #9585, which the gate merged while this was in progress. That PR retired scripts/check-openapi-settings-parity.ts and replaced it with a compile-time schema↔type assertion; this one applies the same mechanism to the one spec-vs-payload defect #9531 named in advance, and closes the loose ends #9585 left.

Six published-spec defects have now been fixed under this mechanism: the dead autonomy levels (#4620), the missing contributorBlacklist.githubId (#9125), moderationRules' missing copycat member (#1969), expectedCiContexts' undeclared null, the settings-preview's unreachable aiReviewConfirmedContributorsOnly null, and this PR's predictedGate/dataQuality.

Part of #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; bumping that chain is a separate change and does not belong in a spec-parity PR.
  • Also run green on this base: test:engine-parity, engine-parity:drift-check, the @loopover/engine workspace test run, dead-source-files:check, import-specifiers:check, docs:drift-check.
  • Changed lines were checked against coverage/lcov.info directly: 0 uncovered and 0 partially-covered changed lines across every changed file. Full test/unit + test/contract run: 23,578 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

…lysis actually returns (#9531)

POST /v1/local/branch-analysis returns `{ ...analysis, predictedGate, dataQuality }`, and
LocalBranchAnalysisSchema declared neither -- the spec-vs-payload defect #9531 named in
advance. The retired key-set diff could never have caught it: it only ever looked at the two
settings schemas.

PredictedGateVerdictSchema (#9517) is authored here and pinned to PredictedGateVerdict by the
same compile-time assertion, which now covers three schemas. dataQuality uses the opaque
record shape every other schema in this file already models it with.

confirmedContributor becomes optional on PredictedGateVerdict rather than required-and-
possibly-undefined: buildPredictedGateVerdict forces it to undefined under the oss-anti-slop
pack, so JSON.stringify drops the key outright and a client reading the spec sees an absent
field, not a null one.

The contributor skill's CI tables named ui:openapi:settings-parity as a distinct check; both
entries now point at typecheck, which is where the parity failure surfaces.
@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 20:14:03 UTC

7 files · 1 AI reviewer · 2 blockers · CI green · clean

⏸️ Suggested Action - Manual Review

Review summary
This PR declares `predictedGate`/`dataQuality` on `LocalBranchAnalysisSchema` (previously absent despite the route always returning them), authors a new `PredictedGateVerdictSchema` pinned to the `PredictedGateVerdict` TS type via the existing compile-time exact-equality assertion mechanism, and makes `confirmedContributor` optional rather than required-but-undefined to match the actual `JSON.stringify` drop-the-key behavior under the oss-anti-slop pack. The generated `openapi.json` diff matches the schema change exactly (predictedGate as a $ref, dataQuality as an opaque record, both added to `required`), and the new test file extends the existing parity-assertion pattern with real safeParse checks for both the gittensor and oss-anti-slop verdict shapes. This is a narrow, well-targeted fix that closes a real spec/route mismatch named in advance by issue #9531, with CI green and no scope creep beyond the stated intent (plus small cleanup of two skill docs that referenced the retired settings-parity check).

Nits — 5 non-blocking
  • test/unit/openapi-schema-type-parity.test.ts imports `PredictedGateVerdict` from `../../src/rules/predicted-gate` while the engine file shown lives at `packages/loopover-engine/src/predicted-gate.ts` — worth double-checking that re-export path exists rather than being a stale import left over from a refactor.
  • src/openapi/schemas.ts:3152-3167 — `PredictedGateFindingSchema`'s `action` is `.optional()` (undefined-only) while the OpenAPI-generated `blockers[].required` list omits `action`, which is consistent, but worth confirming zod-to-openapi renders optional-only fields (no `.nullable()`) the same way as the rest of the file for consistency.
  • dataQuality is typed as `z.record(z.string(), z.unknown())`, which is appropriately opaque per the PR's own rationale, but this makes the field impossible to validate meaningfully client-side — acceptable per stated intent, just noting the tradeoff is intentional not an oversight.
  • Confirm the `../../src/rules/predicted-gate` import path in the renamed test file resolves (vs. `packages/loopover-engine/src/predicted-gate.ts`), since a wrong path would be a real break the diff doesn't show enough of the file structure to fully verify.
  • Consider a short comment in the openapi.json diff (or in schemas.ts) linking the `dataQuality`'s opaque-record choice explicitly to the other opaque-record fields it mirrors, for future skimmers of the generated spec who won't see the descriptive comment in schemas.ts.

Concerns raised — review before merging

  • No linked issue detected: No closing reference or linked issue number was found in the PR metadata/body. — If this PR is intended to solve an issue, link it explicitly in the PR body.
  • Maintainer requires a linked issue: This repo's maintainer focus manifest requires every PR to reference a tracked issue. — Link the relevant issue (for example Closes #123) before opening the PR.
📋 Copy for AI agents — paste into your coding agent
Fix the following blocker(s) from this PR review:

1. No linked issue detected: No closing reference or linked issue number was found in the PR metadata/body. — If this PR is intended to solve an issue, link it explicitly in the PR body.

2. Maintainer requires a linked issue: This repo's maintainer focus manifest requires every PR to reference a tracked issue. — Link the relevant issue (for example `Closes #123`) before opening the PR.

Decision drivers

  • ❌ Code review — 2 blockers (1 reviewer)
  • ❌ Gate result — Blocking (Repo-configured hard blocker found.)
Context & advisory signals — never blocks the verdict
Signal Result Evidence
Linked issue ⚠️ Missing No linked issue or no-issue rationale found.
Related work ✅ No active overlap found No same-issue or scoped active PR overlap found.
Change scope ✅ 20/20 Low review scope from cached public metadata (no linked issue context).
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
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 <question> answers contribution-quality Q&A with source citations and freshness.
  • @loopover chat <question> 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.

Decision record
  • action: hold · clause: missing_linked_issue
  • config: b875b3a1302c2d6d23f9aaa4a0bdeb53ace9167ae676dddd8db53e54ee9d3631 · pack: oss-anti-slop · ci: passed
  • record: 3465b31fe8cb314da1c9a3cd4cbb779b207fed5658ce889f17627abbff8adc28 (schema v5, head 4dac031)
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

@superagent-security

Copy link
Copy Markdown
Contributor

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

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

Branch Preview URL
Jul 28 2026, 07:53 PM

@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 (ea86691) to head (4dac031).
⚠️ Report is 1 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #9587      +/-   ##
==========================================
- Coverage   89.83%   89.83%   -0.01%     
==========================================
  Files         878      878              
  Lines      111040   111047       +7     
  Branches    26435    26435              
==========================================
+ Hits        99756    99759       +3     
  Misses       9992     9992              
- Partials     1292     1296       +4     
Flag Coverage Δ
backend 95.61% <100.00%> (-0.01%) ⬇️
engine 65.92% <100.00%> (+<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/predicted-gate.ts 95.49% <100.00%> (+0.05%) ⬆️
src/openapi/schemas.ts 100.00% <100.00%> (ø)
src/openapi/spec.ts 99.30% <100.00%> (+<0.01%) ⬆️

... 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 4.69kB (0.06%) ⬆️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.78MB 4.69kB (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-BLW9gAW4.js (New) 2.16MB 2.16MB 100.0% 🚀
assets/tanstack-vendor-BiZkv8rW.js (New) 911.49kB 911.49kB 100.0% 🚀
openapi.json 3.33kB 711.03kB 0.47%
assets/docs.fumadocs-spike-api-reference-Bdau039Q.js (New) 443.45kB 443.45kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-uMptwvl2.js (New) 201.7kB 201.7kB 100.0% 🚀
assets/modal-z7jgK9L_.js (New) 184.5kB 184.5kB 100.0% 🚀
assets/client-W_d5a2gk.js (New) 151.47kB 151.47kB 100.0% 🚀
assets/maintainer-panel-B-I0dBnb.js (New) 78.99kB 78.99kB 100.0% 🚀
assets/routes-DECgovXg.js (New) 35.96kB 35.96kB 100.0% 🚀
assets/owner-panel-b63BR5rr.js (New) 27.92kB 27.92kB 100.0% 🚀
assets/app-C1iD1_tc.js (New) 25.78kB 25.78kB 100.0% 🚀
assets/ui-vendor-65zXdGvB.js (New) 24.57kB 24.57kB 100.0% 🚀
assets/miner-panel-BQoy43UR.js (New) 20.24kB 20.24kB 100.0% 🚀
assets/app.runs-BZjLPNwy.js (New) 20.22kB 20.22kB 100.0% 🚀
assets/api._op-D8zb9Ihx.js (New) 17.57kB 17.57kB 100.0% 🚀
assets/self-hosting-docs-audit-Dzr0GAEg.js (New) 16.6kB 16.6kB 100.0% 🚀
assets/docs._slug-CAtST4V_.js (New) 15.52kB 15.52kB 100.0% 🚀
assets/playground-panel-mP4Co7JD.js (New) 14.42kB 14.42kB 100.0% 🚀
assets/fairness-DKrX-e4L.js (New) 10.73kB 10.73kB 100.0% 🚀
assets/app.audit-BtDNp3pa.js (New) 10.08kB 10.08kB 100.0% 🚀
assets/app.config-generator-DFzWNd6s.js (New) 10.06kB 10.06kB 100.0% 🚀
assets/maintainers-ZwX5cbMP.js (New) 8.06kB 8.06kB 100.0% 🚀
assets/miners-8br1ObWO.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/agents-BbGeuykL.js (New) 7.74kB 7.74kB 100.0% 🚀
assets/commands-panel-Dm6jwvDr.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/maintainer-workflow-DKkqjtbo.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/digest-panel-CkowM1db.js (New) 6.15kB 6.15kB 100.0% 🚀
assets/repos._owner._repo.quality-CdIvByLW.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs-nav-sXcNkQOY.js (New) 6.01kB 6.01kB 100.0% 🚀
assets/docs.index-CghtRuKW.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/api.index-DT0rjMC2.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/docs-EV0IfFdm.js (New) 2.7kB 2.7kB 100.0% 🚀
assets/api-DonA1Jtm.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-DcI4RBcZ.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-DCNojvS3.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench-BtkbiyTX.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/tabs-B93Bzo9H.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-W5vArUfh.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-DaYPkf5u.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-BHwSPQd2.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-CB-Nfnmc.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/app.owner-C2zatl7R.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-C9A9Wewf.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-C4gtRbVS.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-Bj1wdhj6.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-zk7thCaY.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-B3AOM_8g.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-DQrXVlLU.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-BOqzywfO.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-CLxIZb-9.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-DRMIoqvc.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-DIKCYHC9.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-C_1RJyNV.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/list-checks-D70YPpzH.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/compass-kCw98_q-.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-DRZRKrHA.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/message-square-BgXTFqI_.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-rar1_nHd.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-CNmHMShb.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-C2kc8uER.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-Brxqh0AM.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-CoE1tDJX.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/add-scalar-classes-Wz1rVhGN.js (Deleted) -2.16MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-CoZhNfGY.js (Deleted) -910.13kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-HRrzDwnN.js (Deleted) -443.45kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-BrlAbqGM.js (Deleted) -201.7kB 0 bytes -100.0% 🗑️
assets/modal-YbuCZmJQ.js (Deleted) -184.5kB 0 bytes -100.0% 🗑️
assets/client-Bfd9Zexe.js (Deleted) -151.47kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-DG0ERq7j.js (Deleted) -78.99kB 0 bytes -100.0% 🗑️
assets/routes-DVFrNHaV.js (Deleted) -35.96kB 0 bytes -100.0% 🗑️
assets/owner-panel-CQKibvSL.js (Deleted) -27.92kB 0 bytes -100.0% 🗑️
assets/app-BfwyKBXR.js (Deleted) -25.78kB 0 bytes -100.0% 🗑️
assets/ui-vendor-BCuE5-76.js (Deleted) -24.57kB 0 bytes -100.0% 🗑️
assets/miner-panel-CQm2t8C6.js (Deleted) -20.24kB 0 bytes -100.0% 🗑️
assets/app.runs-IqlxePlJ.js (Deleted) -20.22kB 0 bytes -100.0% 🗑️
assets/api._op-BqiIe3c_.js (Deleted) -17.57kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-CiZwy6n9.js (Deleted) -16.6kB 0 bytes -100.0% 🗑️
assets/docs._slug-5PEbGWnk.js (Deleted) -15.52kB 0 bytes -100.0% 🗑️
assets/playground-panel-BSN8UjSe.js (Deleted) -14.42kB 0 bytes -100.0% 🗑️
assets/fairness-B1Bl2Mro.js (Deleted) -10.73kB 0 bytes -100.0% 🗑️
assets/app.audit-DjghAX6g.js (Deleted) -10.08kB 0 bytes -100.0% 🗑️
assets/app.config-generator-Be56UPYD.js (Deleted) -10.06kB 0 bytes -100.0% 🗑️
assets/maintainers-DyaBG3WT.js (Deleted) -8.06kB 0 bytes -100.0% 🗑️
assets/miners-BTcj94vU.js (Deleted) -7.91kB 0 bytes -100.0% 🗑️
assets/agents-ByiVFIPK.js (Deleted) -7.74kB 0 bytes -100.0% 🗑️
assets/commands-panel-BISiEEfR.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-DFFe_LDV.js (Deleted) -6.52kB 0 bytes -100.0% 🗑️
assets/digest-panel-CF-r7Jf8.js (Deleted) -6.15kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-DzsDdNdP.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs-nav-C8aRm5FO.js (Deleted) -6.01kB 0 bytes -100.0% 🗑️
assets/docs.index-Cl8xVZvH.js (Deleted) -5.95kB 0 bytes -100.0% 🗑️
assets/api.index-DY8xcvxf.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/docs-DXe1A3Lz.js (Deleted) -2.7kB 0 bytes -100.0% 🗑️
assets/api-gqdD_LoO.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-page-BGnbyx6r.js (Deleted) -2.1kB 0 bytes -100.0% 🗑️
assets/table-C-BePuTw.js (Deleted) -1.75kB 0 bytes -100.0% 🗑️
assets/app.workbench-DVLJSMxo.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/tabs-CGqdj5H7.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-DioVAgK4.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-wtf_Q6zt.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-DHoql8Iv.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-Ddu3k8Ju.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/app.owner-CWewVVlM.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-CeuUuwAP.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground-B_3R8w6l.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-7FBv51A1.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-DzbJrAYE.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-BysAXNs5.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-Czj61sEz.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-jfEu_raL.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-BoLMxr-P.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-CXwDg6K8.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-CF4Md7Y_.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-DUXZZTRt.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/list-checks-swi6IcE9.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/compass-C8W8zW7u.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-C_JQPVVl.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/message-square-DMc4Gzc8.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-D6VXgQii.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-DeY18R8v.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-CV_5bMK1.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-B-ODr5bD.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-Bst6GZ4x.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 a858cbc into main Jul 28, 2026
11 checks passed
@JSONbored
JSONbored deleted the fix/branch-analysis-predicted-gate-9531 branch July 28, 2026 20:25
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.

1 participant