Skip to content

api: remove the orphaned browser-extension backend surface from src/#8604

Merged
JSONbored merged 5 commits into
mainfrom
claude/remove-extension-backend-surface
Jul 25, 2026
Merged

api: remove the orphaned browser-extension backend surface from src/#8604
JSONbored merged 5 commits into
mainfrom
claude/remove-extension-backend-surface

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

Summary

Third and final sub-issue of epic #8596 (browser-extension package cleanup), blocked on #8598's PR (#8603) landing first.

  • Deletes the 5 route handlers (POST /v1/auth/extension/session, GET /v1/extension/pull-context, GET /v1/extension/contributors/:login/{issue-fit,issue-badges,pr-status}) and their supporting middleware scope checks, SESSION_AUTHENTICATED_AUTH_PATHS rate-limit carve-out, and OpenAPI registrations, now that no client references them.
  • src/signals/extension-contributor-context.ts was not a clean delete: its audit was stale. buildExtensionPrStatus/ExtensionPrStatus is a live dependency of settings-preview.ts's buildSampleCheckRunReadiness (the Context-check details page, feat(ui): check-run details-page readiness table (visual) #2216) — unrelated to the browser extension. That still-used half is extracted into src/signals/contributor-readiness-band.ts with the extension branding dropped (buildContributorPrStatus, ContributorPrStatus, redactContributorText); the genuinely dead half (buildExtensionIssueFit/buildExtensionIssueBadges) is deleted with it. Test coverage for the surviving band logic moves to test/unit/contributor-readiness-band.test.ts.
  • Historical-data classifiers are intentionally left untouched: productUsageRouteClass, PRODUCT_USAGE_SURFACES/ProductUsageSurface, and productUsageBaseRolesForEvent all still need to correctly classify already-recorded audit/product-usage rows carrying a browser_extension surface or an extension_session_created/pull_context_viewed event name — removing those would silently misclassify real historical data on every future rollup. Same reasoning for src/mcp/server.ts's extension-scope session guard, kept as defense-in-depth against any pre-existing (not-yet-expired) extension-scoped session token.
  • test/integration/api.test.ts, test/unit/auth.test.ts, and test/unit/openapi.test.ts all still exercised or asserted the deleted routes (also missed by the issue's original audit) — updated/trimmed accordingly.
  • Regenerates apps/loopover-ui/public/openapi.json.

Closes #8599

Test plan

  • npm run typecheck — clean
  • Targeted vitest runs: contributor-readiness-band, openapi, auth, agent-orchestrator, ci-ui-build-openapi, product-usage, codecov-policy, settings-preview, maintainer-settings-preview-ui, routes-cors, routes-boundary-tests, access-boundary, auth-github-token, auth-security-helpers — all passing
  • Full test/integration/api.test.ts (49 tests) — passing
  • npm run ui:openapi:check — no drift
  • npm run ui:openapi:settings-parity — passing
  • GitHub Actions CI (authoritative gate)

Closes #8597, first of the browser-extension removal epic's three
sequenced sub-issues (#8596). Lands before the package itself is
deleted (next sub-issue) so the "Download extension" button and its
download page disappear before the zip they point at stops being
generated -- never the other way around, which would leave a live
broken download link on the public site.

Removes the dedicated /extension route and its test, both nav links
(site footer, command palette), the sitemap entry, and the README
table row. Reworded roadmap.tsx's Phase 2 entry to drop the browser-
extension framing while keeping its real remaining scope (maintainer
trust checklist, install health, private/public rendering checks) --
swapped its "Open extension page" link for /app/maintainer, a route
that already covers install health and maintainer controls, rather
than just deleting the link outright.

maintainer-install-trust.mdx needed more than the single section the
original file-level grep found: removed the "## Browser extension
states" section (heading through its code block and the screenshot-
requirement sentence immediately after it), the "Extension sessions
are scoped..." audit-expectations bullet, and the "Browser extension"
cross-link in the closing paragraph -- also reworded the "Reject UI or
extension PRs" bullet to just "Reject UI PRs" since that rule was
never extension-specific. self-hosting-operations.mdx's "extension
block" mention is a false positive (Docker Compose's `x-` extension
fields, unrelated) -- left unchanged after verifying context, per the
issue's own explicit instruction not to assume.

routeTree.gen.ts regenerated via a real `npm --workspace @loopover/ui
run build`, not hand-edited.

Validated: typecheck clean, ui:lint 0 errors, ui:test 86 files/571
tests passing, docs:drift-check clean.
…CI/npm-script wiring

Closes #8598. Second of three sequenced sub-issues under the browser-
extension removal epic (#8596) -- lands after the UI download surface
is gone (#8597) and before the backend API routes (#8599, next).

Deletes apps/loopover-extension/ and apps/loopover-miner-extension/
wholesale, scripts/build-extension.ts, scripts/build-miner-extension.ts,
and scripts/extension-zip-core.ts (verified only those two build
scripts + the now-deleted test referenced it). Deletes 10 root-level
tests that read the app directories' raw source directly -- 9 named in
the issue's own audit, plus test/unit/miner-toolbar-badge.test.ts,
which the original audit missed and would have ENOENT'd immediately.
Trims (does not delete) codecov-policy.test.ts's shared coverage-gate
test down to miner-ui only.

Removes all shared build/CI wiring in one PR, as required (turbo.json's
5 task blocks + the ui#build dependsOn edge + //#typecheck's inputs;
ci.yml's path filters, the 3 dedicated steps, and every stale comment
mention; ui-deploy.yml's Validate-frontend chain; root package.json's
6 scripts + the ui:build/ui:test chains; .gitignore's dead zip entry).

Beyond the issue's own file-level-grep audit, a full repo-wide sweep
turned up more real references that would have silently broken or
gone stale: two production smoke-test scripts (smoke-production.ts,
smoke-ui-browser.ts) still probing the now-gone /extension route and
zip download -- these would have started failing in production the
moment #8597 merged; scripts/mcp-release-core.ts and
scripts/orb-release-core.ts's UI/excluded-path arrays still listing
the deleted directories; and several comments across
packages/loopover-miner/lib/ and apps/loopover-miner-ui/ describing
the extension as a consumer of the ranked-candidates API and discover
snapshot -- reworded to describe their real remaining consumer
(miner-ui's own dashboard) instead of leaving them referencing a
deleted package. Left alone, correctly out of scope: src/openapi/
spec.ts and src/signals/extension-contributor-context.ts (src/**,
#8599's territory), packages/loopover-mcp/CHANGELOG.md (immutable
history), and every genuine "file extension"/"OAuth scope extension"
false positive a broad grep surfaced.

package-lock.json regenerated via real npm install/ci, not hand-
edited, with one narrow exception: two "extraneous": true workspace
stub entries that persisted across five different npm-tool-driven
attempts (repeated install, prune, full clean reinstall) even after
confirming via `npm ci` that they carry zero real dependency
resolution and have zero effect on install correctness -- traced to
gitignored build leftovers (dist/, coverage/, node_modules/, .turbo/)
that `git rm` doesn't touch, which kept the directories technically
present for npm's workspace glob after the tracked files were gone.
Removed those leftover directories too, alongside the two dead JSON
stubs npm's own tooling had already flagged as not real.

Validated: npm ci clean, npx turbo run build --filter=@loopover/ui
succeeds with exactly 2 tasks (engine + ui, no extension task in the
graph), package-lock.json has zero remaining extension references,
node_modules has zero @loopover/{extension,miner-extension} entries.
Full npm run test:ci left to GitHub Actions rather than a local run.
…openapi.test.ts

The prior commit on this branch simplified ui-deploy.yml's "Validate frontend"
run command after deleting the extension packages, but left this test's
hardcoded expected string pointing at the old extension/miner-extension
lint/typecheck/build chain, failing validate-tests in CI.
Deletes the 5 route handlers under /v1/auth/extension/session,
/v1/extension/pull-context, and /v1/extension/contributors/:login/* now
that both client packages are gone, plus their supporting middleware
scope checks, OpenAPI registrations, and the SESSION_AUTHENTICATED_AUTH_PATHS
rate-limit carve-out.

src/signals/extension-contributor-context.ts is not a clean delete: its
buildExtensionPrStatus/ExtensionPrStatus band-builder is a live dependency
of settings-preview.ts's buildSampleCheckRunReadiness (the Context-check
details page, #2216), unrelated to the browser extension. That still-used
half is extracted into src/signals/contributor-readiness-band.ts with
extension-branded names dropped (buildContributorPrStatus, ContributorPrStatus,
redactContributorText); the dead half (buildExtensionIssueFit/IssueBadges)
is deleted along with it. Test coverage for the surviving band logic moves
to test/unit/contributor-readiness-band.test.ts.

Historical-data classifiers are intentionally left untouched:
productUsageRouteClass, PRODUCT_USAGE_SURFACES/ProductUsageSurface, and
productUsageBaseRolesForEvent all still need to correctly classify
already-recorded audit/product-usage rows with a browser_extension surface
or an extension_session_created/pull_context_viewed event name -- removing
those would silently misclassify real historical data. Same reasoning for
src/mcp/server.ts's extension-scope session guard: it stays as a defense-in-
depth check against any pre-existing extension-scoped session token that
hasn't yet expired.

Also fixes test/integration/api.test.ts, test/unit/auth.test.ts, and
test/unit/openapi.test.ts, which all still exercised or asserted the
deleted routes, and regenerates apps/loopover-ui/public/openapi.json.

Closes #8599
@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 90f64db Commit Preview URL

Branch Preview URL
Jul 25 2026, 04:59 AM

@superagent-security superagent-security Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Superagent found 1 security concern(s).

Comment thread src/api/routes.ts
@superagent-security superagent-security Bot added the pr:flagged PR flagged for review by security analysis. label Jul 25, 2026
@loopover-orb loopover-orb Bot added the gittensor:bug Gittensor-scored bug fix — scores a 0.05x multiplier. label Jul 25, 2026
@loopover-orb

loopover-orb Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

Caution

🛑 LoopOver review result - fixes required

Review updated: 2026-07-25 05:05:30 UTC

92 files · 1 AI reviewer · no blockers · CI failing · blocked

🛑 Suggested Action - Manual Review

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

Review summary
This PR deletes the five orphaned browser-extension route handlers (session mint, pull-context, contributors/{issue-fit,issue-badges,pr-status}) plus their auth-scope checks, rate-limit carve-out, and OpenAPI registrations, and correctly catches a stale-audit issue: extension-contributor-context.ts wasn't a clean delete because buildExtensionPrStatus/ExtensionPrStatus is a live dependency of settings-preview.ts's buildSampleCheckRunReadiness (Context-check page, #2216). That surviving half is cleanly extracted into src/signals/contributor-readiness-band.ts with extension branding stripped, and the settings-preview.ts import/type references are updated in lockstep. CI/turbo/openapi/package.json references to the extension surface are also stripped consistently across the visible hunks, and the trace from routes.ts's removed imports (buildRoleContext, PullRequestMaintainerPacket, etc.) to the deleted buildExtensionPullContextPayload function checks out — nothing here looks orphaned.

Nits — 6 non-blocking
  • src/api/routes.ts's diff removes the entire `__routesInternals` export block (including `authenticateRequestIdentity` and `issueQualityMap`), not just the extension-only helpers — worth confirming no surviving test still imports `__routesInternals.authenticateRequestIdentity` since that file isn't in the visible diff.
  • src/signals/contributor-readiness-band.ts:14-15,61,65 use bare numeric thresholds (70/45, 0.85/0.45) with only prose comments explaining them; consider named constants so the engine.ts parity note (ratio >= 0.45) is enforced by the type system rather than a comment.
  • The FORBIDDEN_PRIVATE_TERMS regex in contributor-readiness-band.ts is a hand-synced duplicate of redaction.ts's PUBLIC_UNSAFE_TERMS, acknowledged in the comment and covered by a drift-guard test — reasonable given the cycle-free constraint, but still a duplication risk if the guard test itself atrophies.
  • The stated ~97% branch-covered patch bar is hard to verify here since test/unit/contributor-readiness-band.test.ts isn't in the visible diff content — worth confirming both arms of contributorReadinessBand's three bands and componentBand's three ratio arms are exercised.
  • Double-check that the `Superagent Security Scan` failure isn't gating on the deleted auth-scope surface (e.g. a lingering reference to EXTENSION_* scopes) before merge, since its detail wasn't provided in CI output.
  • Touches a guarded path — held for manual review — A maintainer must review and merge this change.

CI checks failing

  • validate
  • Superagent Security Scan — PR requires security review
  • changes

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 #8599
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 (1 linked issue).
Validation posture ✅ 25/25 PR body includes validation/test evidence.
Contributor workload ✅ 10/10 Author activity: 13 registered-repo PR(s), 13 merged, 271 issue(s).
Contributor context ✅ Confirmed Gittensor contributor JSONbored; Gittensor profile; 13 PR(s), 271 issue(s).
Improvement ✅ Minor risk: clean · value: minor
Linked issue satisfaction

Addressed
The diff removes all 5 route handlers, the auth-scope helpers/constants, and the OpenAPI/rate-limit entries listed in the issue, and explains a well-justified deviation from the issue's blanket file-deletion instruction: extracting the still-live buildExtensionPrStatus logic (used by settings-preview.ts for #2216) into a renamed contributor-readiness-band.ts rather than deleting it wholesale, whic

Review context
  • Author: JSONbored
  • Role context: owner (maintainer lane)
  • Public audience mode: oss maintainer
  • Lane context: Repository is configured for direct PR review.
  • Public profile languages: Python, TypeScript, Ruby, Go, MDX, Shell, Solidity, JavaScript
  • Official Gittensor activity: 13 PR(s), 271 issue(s).
  • PR-specific overlap: none found.
Contributor next steps
  • Start here: Treat this as maintainer-lane context rather than normal contributor-lane activity.
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.

Visual preview
Route Viewport Before (production) After (this PR's preview) Diff
/ranked-candidates desktop before /ranked-candidates
before /ranked-candidates
after /ranked-candidates
after /ranked-candidates
/ranked-candidates mobile before /ranked-candidates (mobile)
before /ranked-candidates (mobile)
after /ranked-candidates (mobile)
after /ranked-candidates (mobile)
/extension/test desktop before /extension/test
before /extension/test
after /extension/test
after /extension/test
/extension/test mobile before /extension/test (mobile)
before /extension/test (mobile)
after /extension/test (mobile)
after /extension/test (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)
/ranked-candidates before /ranked-candidates (scroll)
before /ranked-candidates (scroll)
after /ranked-candidates (scroll)
after /ranked-candidates (scroll)
/extension/test before /extension/test (scroll)
before /extension/test (scroll)
after /extension/test (scroll)
after /extension/test (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

@loopover-orb loopover-orb Bot added the manual-review Gittensor contributor context label Jul 25, 2026
… classifiers

The extension was never actually used, so there's no real historical data
to preserve fidelity for -- drop the browser_extension member from
ProductUsageSurface entirely, along with productUsageRouteClass's
/v1/extension/ branch, PRODUCT_USAGE_SURFACES, PRODUCT_USAGE_USEFUL_ACTION_EVENTS'
pull_context_viewed entry, and productUsageBaseRolesForEvent's
extension_session_created/pull_context_viewed special case.

Also removes src/mcp/server.ts's extension-scope session guard in
authenticateMcpRequest -- extension-scoped sessions can never be minted
again, and a non-privileged actor still falls through to the ordinary
role-summary check below it.

Updates test/unit/product-usage.test.ts's route-class/activation fixtures
to match, and fixes a trailing blank line at EOF in routes.ts that failed
CI's whitespace check.
@JSONbored

Copy link
Copy Markdown
Owner Author

Follow-up commit: the extension was never actually used in production, so there's no historical data whose classification needs preserving. Removed the remaining pieces I'd initially left in place for that reason:

  • browser_extension dropped from ProductUsageSurface entirely
  • productUsageRouteClass's /v1/extension/ branch, PRODUCT_USAGE_SURFACES, and PRODUCT_USAGE_USEFUL_ACTION_EVENTS's pull_context_viewed entry
  • productUsageBaseRolesForEvent's extension_session_created/pull_context_viewed special case
  • src/mcp/server.ts's extension-scope session guard in authenticateMcpRequest (a non-privileged actor still falls through to the ordinary role-summary check below it)

Also fixed a trailing blank line at EOF in routes.ts that failed CI's whitespace check on the first push, and updated test/unit/product-usage.test.ts's fixtures to match.

@codecov

codecov Bot commented Jul 25, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.54%. Comparing base (7b1f1cc) to head (aa2db1e).
⚠️ Report is 5 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #8604      +/-   ##
==========================================
- Coverage   92.54%   92.54%   -0.01%     
==========================================
  Files         796      796              
  Lines       79855    79671     -184     
  Branches    24136    24064      -72     
==========================================
- Hits        73905    73730     -175     
+ Misses       4804     4803       -1     
+ Partials     1146     1138       -8     
Flag Coverage Δ
backend 93.72% <100.00%> (-0.01%) ⬇️
control-plane 99.85% <ø> (ø)
rees 88.56% <ø> (ø)

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

Files with missing lines Coverage Δ
packages/loopover-miner/lib/discover-cli.ts 100.00% <ø> (ø)
packages/loopover-miner/lib/portfolio-dashboard.ts 100.00% <ø> (ø)
packages/loopover-miner/lib/ranked-candidates.ts 100.00% <ø> (ø)
src/api/routes.ts 95.29% <ø> (-0.01%) ⬇️
src/auth/rate-limit.ts 99.13% <100.00%> (ø)
src/db/repositories.ts 96.73% <100.00%> (-0.01%) ⬇️
src/mcp/server.ts 96.68% <ø> (+0.08%) ⬆️
src/openapi/spec.ts 99.47% <100.00%> (-0.01%) ⬇️
src/signals/contributor-readiness-band.ts 100.00% <100.00%> (ø)
src/signals/settings-preview.ts 98.78% <100.00%> (ø)
... and 1 more

@codecov

codecov Bot commented Jul 25, 2026

Copy link
Copy Markdown

Bundle Report

Changes will decrease total bundle size by 29.96kB (-0.4%) ⬇️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.41MB -29.96kB (-0.4%) ⬇️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-CZPVOTyb.js (New) 2.17MB 2.17MB 100.0% 🚀
assets/tanstack-vendor-BKGCjKXg.js (New) 738.33kB 738.33kB 100.0% 🚀
openapi.json -2.63kB 525.49kB -0.5%
assets/docs.fumadocs-spike-api-reference-Dw6L84qc.js (New) 442.92kB 442.92kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-DrJ37XcR.js (New) 201.71kB 201.71kB 100.0% 🚀
assets/modal-CBfCo-1E.js (New) 184.38kB 184.38kB 100.0% 🚀
assets/client-lSBGpUQ_.js (New) 146.06kB 146.06kB 100.0% 🚀
assets/maintainer-panel-DWyZNmrF.js (New) 78.99kB 78.99kB 100.0% 🚀
assets/ui-vendor-CNhNmGSl.js (New) 57.04kB 57.04kB 100.0% 🚀
assets/routes-RDGwuQw9.js (New) 34.98kB 34.98kB 100.0% 🚀
assets/owner-panel-qMGmPZx-.js (New) 27.46kB 27.46kB 100.0% 🚀
assets/app-BemnA3yi.js (New) 25.95kB 25.95kB 100.0% 🚀
assets/app.runs-DcXnTtlM.js (New) 23.56kB 23.56kB 100.0% 🚀
assets/miner-panel-CgO4ThN8.js (New) 20.28kB 20.28kB 100.0% 🚀
assets/maintainer-install-trust-DA6fzFQJ.js (New) 18.03kB 18.03kB 100.0% 🚀
assets/api._op-C_MaA-wK.js (New) 17.57kB 17.57kB 100.0% 🚀
assets/self-hosting-docs-audit-BIsuno2_.js (New) 16.61kB 16.61kB 100.0% 🚀
assets/app.index-CHTPleuV.js (New) 15.62kB 15.62kB 100.0% 🚀
assets/docs._slug-CI9ZEcYm.js (New) 15.37kB 15.37kB 100.0% 🚀
assets/playground-panel-DJ00oKEl.js (New) 14.49kB 14.49kB 100.0% 🚀
assets/fairness-CqccyvtM.js (New) 10.6kB 10.6kB 100.0% 🚀
assets/app.audit-XUGeAAjh.js (New) 10.11kB 10.11kB 100.0% 🚀
assets/app.config-generator-DG9AyC6m.js (New) 10.09kB 10.09kB 100.0% 🚀
assets/maintainers-Cos070da.js (New) 8.09kB 8.09kB 100.0% 🚀
assets/miners-bpkGSS7A.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/agents-CQZ7fnyE.js (New) 7.8kB 7.8kB 100.0% 🚀
assets/commands-panel-DV2oEdQa.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/roadmap-BYhpXTh_.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/maintainer-workflow-BTd7A7OB.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/digest-panel-BoWazaxM.js (New) 6.18kB 6.18kB 100.0% 🚀
assets/repos._owner._repo.quality-DB6aXo1b.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs-nav-DSGbpQWF.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/docs.index-DS5YW9oJ.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/api.index-CycYNhkq.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/docs-DI8TVAtP.js (New) 2.7kB 2.7kB 100.0% 🚀
assets/api-DL_Z5MRx.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-zm1OqeOD.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-BWnn2Ncl.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench-BXlzMNqO.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/tooltip-DY-VobdR.js (New) 1.47kB 1.47kB 100.0% 🚀
assets/session-DxAEr4eO.js (New) 1.45kB 1.45kB 100.0% 🚀
assets/tabs-C0x97Q8I.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-BxE0NWX9.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-Du92O_bK.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-CZAzJitF.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-Cv_aKWDT.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/sparkles-BvkMivz-.js (New) 494 bytes 494 bytes 100.0% 🚀
assets/app.owner-Cu_fTrtm.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-Cm92OV1e.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-yQAi1QFs.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index--h7_o8yI.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-BtwEy-Ic.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-BYkX84zY.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-B8z7U6P0.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-RcKGz7Hj.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-87gfMdPK.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-BmCxxw4M.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-BiK_lk8s.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-DWAHFhgo.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/wrench-parlZqEZ.js (New) 303 bytes 303 bytes 100.0% 🚀
assets/list-checks-DjK1ihY5.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/workflow-DaavQn1L.js (New) 265 bytes 265 bytes 100.0% 🚀
assets/compass-CIV_dmzz.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-DZ4EE9fk.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/activity-DQavApxI.js (New) 234 bytes 234 bytes 100.0% 🚀
assets/message-square-KRY3XYnc.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-CPjQ6v_W.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-CDn13AyQ.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-h_i0Dn_d.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-CCU8zmid.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-DSq0bur7.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/circle-DcSfK13F.js (New) 130 bytes 130 bytes 100.0% 🚀
assets/add-scalar-classes-Cb6Y7aTm.js (Deleted) -2.17MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-DTIz1CC1.js (Deleted) -739.68kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-4Fnm-Kj1.js (Deleted) -442.92kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-im7eFlsX.js (Deleted) -201.71kB 0 bytes -100.0% 🗑️
assets/modal-D1rhSIcG.js (Deleted) -184.38kB 0 bytes -100.0% 🗑️
assets/client-yt6RMYPO.js (Deleted) -146.06kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-D3DKXMM8.js (Deleted) -78.99kB 0 bytes -100.0% 🗑️
assets/ui-vendor-vJmsPsT6.js (Deleted) -57.04kB 0 bytes -100.0% 🗑️
assets/routes-D65e16NV.js (Deleted) -34.98kB 0 bytes -100.0% 🗑️
assets/owner-panel-D1bXZlOn.js (Deleted) -27.46kB 0 bytes -100.0% 🗑️
downloads/loopover-extension.zip (Deleted) -25.95kB 0 bytes -100.0% 🗑️
assets/app-BUDkcMON.js (Deleted) -25.95kB 0 bytes -100.0% 🗑️
assets/app.runs-CS-jOT9Q.js (Deleted) -23.56kB 0 bytes -100.0% 🗑️
assets/miner-panel-DyTqo_xb.js (Deleted) -20.28kB 0 bytes -100.0% 🗑️
assets/maintainer-install-trust-ZUNtphD5.js (Deleted) -18.06kB 0 bytes -100.0% 🗑️
assets/api._op-Dvjs6C8D.js (Deleted) -17.57kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-iabFAM4_.js (Deleted) -16.61kB 0 bytes -100.0% 🗑️
assets/app.index-D0PxB2kP.js (Deleted) -15.62kB 0 bytes -100.0% 🗑️
assets/docs._slug-Bxb33S7i.js (Deleted) -15.37kB 0 bytes -100.0% 🗑️
assets/playground-panel-Bwrg5_53.js (Deleted) -14.49kB 0 bytes -100.0% 🗑️
assets/fairness-PtXgG-Vb.js (Deleted) -10.6kB 0 bytes -100.0% 🗑️
assets/app.audit-XqxRxtQO.js (Deleted) -10.11kB 0 bytes -100.0% 🗑️
assets/app.config-generator-CEk0JPr0.js (Deleted) -10.09kB 0 bytes -100.0% 🗑️
assets/maintainers-CTDaOMN-.js (Deleted) -8.09kB 0 bytes -100.0% 🗑️
assets/miners-CKQp1HcG.js (Deleted) -7.91kB 0 bytes -100.0% 🗑️
assets/agents-DHVPEsOs.js (Deleted) -7.8kB 0 bytes -100.0% 🗑️
assets/commands-panel-lJANlSZ_.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/roadmap-C1zcq-mM.js (Deleted) -6.52kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-ZCrBn6Cl.js (Deleted) -6.52kB 0 bytes -100.0% 🗑️
assets/digest-panel-CJLmtxCh.js (Deleted) -6.18kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-Bs1QtmuR.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs-nav-wFzIhTFf.js (Deleted) -5.95kB 0 bytes -100.0% 🗑️
assets/docs.index-DrH2gdWY.js (Deleted) -5.95kB 0 bytes -100.0% 🗑️
assets/api.index-BRbqjVSF.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/docs-Ca7DtJ68.js (Deleted) -2.7kB 0 bytes -100.0% 🗑️
assets/api-bp3a5pl7.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-page-Ct7Vpjrx.js (Deleted) -2.1kB 0 bytes -100.0% 🗑️
assets/table-CjxIrXoN.js (Deleted) -1.75kB 0 bytes -100.0% 🗑️
assets/app.workbench-BD592sUI.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/tooltip-DqIGr3_4.js (Deleted) -1.47kB 0 bytes -100.0% 🗑️
assets/session-CBqBL9lg.js (Deleted) -1.45kB 0 bytes -100.0% 🗑️
assets/tabs-DekNjFrg.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-DekvhK2S.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-PdJ1we-G.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-CaHDAy5P.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-DOi8YqFd.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/sparkles-Djct9JoQ.js (Deleted) -494 bytes 0 bytes -100.0% 🗑️
assets/app.owner-Bsacj3XM.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-DOInNn04.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground-hN93Vc8f.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-BkZdO-wC.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-BMjWMVVC.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-DyCtgj8n.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-CoVh9_AM.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-DoDqfLpd.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-LQL3VXGs.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-DFBN7A2r.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-GvSVYx5W.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-BmN2TBKa.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/wrench-Bv1bQ1-t.js (Deleted) -303 bytes 0 bytes -100.0% 🗑️
assets/list-checks-P-eHIZrc.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/workflow-BaNHE_WD.js (Deleted) -265 bytes 0 bytes -100.0% 🗑️
assets/compass-D2btRIHo.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-ax8EeqFq.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/activity-DqWy3G7b.js (Deleted) -234 bytes 0 bytes -100.0% 🗑️
assets/message-square-D1k43j6C.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-pY5CEqLr.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-BN10shR2.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-6_PFsGc-.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-BqlGFAxF.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-A65FDPgd.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️
assets/circle-C-Q5l2mY.js (Deleted) -130 bytes 0 bytes -100.0% 🗑️

@superagent-security superagent-security Bot removed the pr:flagged PR flagged for review by security analysis. label Jul 25, 2026
@JSONbored
JSONbored merged commit f4f001d into main Jul 25, 2026
9 checks passed
@JSONbored
JSONbored deleted the claude/remove-extension-backend-surface branch July 25, 2026 05:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

gittensor:bug Gittensor-scored bug fix — scores a 0.05x multiplier. manual-review Gittensor contributor context

Projects

None yet

Development

Successfully merging this pull request may close these issues.

api: remove the orphaned browser-extension backend surface from src/

1 participant