Skip to content

build: delete both browser-extension packages and their shared build/CI/npm-script wiring#8603

Merged
JSONbored merged 3 commits into
mainfrom
claude/delete-extension-packages
Jul 25, 2026
Merged

build: delete both browser-extension packages and their shared build/CI/npm-script wiring#8603
JSONbored merged 3 commits into
mainfrom
claude/delete-extension-packages

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

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

Changes

  • Deleted 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)
  • Deleted 10 root-level tests reading 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
  • Trimmed (not deleted) codecov-policy.test.ts's shared coverage-gate test down to miner-ui only
  • Removed 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, 3 dedicated steps, and every stale comment mention; ui-deploy.yml's Validate-frontend chain; root package.json's 6 scripts + ui:build/ui:test chains; .gitignore's dead zip entry

Beyond the issue's own audit

A full repo-wide sweep (not just the file-level grep the issue was scoped from) 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 ui: remove the maintainer-extension's public UI surface (route, nav, docs, download link) #8597 merged
  • scripts/mcp-release-core.ts / scripts/orb-release-core.ts's UI/excluded-path arrays still listing the deleted directories
  • 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 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/npm 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 zero effect on install correctness. Traced the root cause: 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, then removed the two dead JSON stubs npm's own tooling had already flagged as not real.

Validation

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

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

Branch Preview URL
Jul 25 2026, 04:32 AM

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

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #8603   +/-   ##
=======================================
  Coverage   92.54%   92.54%           
=======================================
  Files         796      796           
  Lines       79855    79855           
  Branches    24136    24136           
=======================================
  Hits        73905    73905           
  Misses       4804     4804           
  Partials     1146     1146           
Flag Coverage Δ
backend 93.72% <ø> (ø)
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% <ø> (ø)

@codecov

codecov Bot commented Jul 25, 2026

Copy link
Copy Markdown

Bundle Report

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

Detailed changes
Bundle name Size Change
loopover-ui 7.42MB -25.98kB (-0.35%) ⬇️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-CtGBZV9K.js (New) 2.17MB 2.17MB 100.0% 🚀
assets/tanstack-vendor-BdduVSPD.js (New) 739.68kB 739.68kB 100.0% 🚀
assets/docs.fumadocs-spike-api-reference-CLctTN83.js (New) 442.92kB 442.92kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-Bd-G0PG4.js (New) 201.71kB 201.71kB 100.0% 🚀
assets/modal-BgAG12Nq.js (New) 184.38kB 184.38kB 100.0% 🚀
assets/client-Cxs7AALq.js (New) 146.06kB 146.06kB 100.0% 🚀
assets/maintainer-panel-B0_y-6IL.js (New) 78.99kB 78.99kB 100.0% 🚀
assets/ui-vendor-DlSC0th-.js (New) 57.04kB 57.04kB 100.0% 🚀
assets/routes-ahxLH39X.js (New) 34.98kB 34.98kB 100.0% 🚀
assets/owner-panel-U69DI1nx.js (New) 27.46kB 27.46kB 100.0% 🚀
assets/app-BcRjqIXi.js (New) 25.95kB 25.95kB 100.0% 🚀
assets/app.runs-CZi9XFg2.js (New) 23.56kB 23.56kB 100.0% 🚀
assets/miner-panel-BB1NW835.js (New) 20.28kB 20.28kB 100.0% 🚀
assets/maintainer-install-trust-DA6fzFQJ.js (New) 18.03kB 18.03kB 100.0% 🚀
assets/api._op-DqNJz2KC.js (New) 17.57kB 17.57kB 100.0% 🚀
assets/self-hosting-docs-audit-Burgcd-I.js (New) 16.61kB 16.61kB 100.0% 🚀
assets/app.index-B5XPgkuj.js (New) 15.62kB 15.62kB 100.0% 🚀
assets/docs._slug-CSf9Esle.js (New) 15.37kB 15.37kB 100.0% 🚀
assets/playground-panel-CM3Rr36B.js (New) 14.49kB 14.49kB 100.0% 🚀
assets/fairness-CgemRkZ-.js (New) 10.6kB 10.6kB 100.0% 🚀
assets/app.audit-NBGwX8At.js (New) 10.11kB 10.11kB 100.0% 🚀
assets/app.config-generator-B4I7_Erv.js (New) 10.09kB 10.09kB 100.0% 🚀
assets/maintainers-DNehCEIc.js (New) 8.09kB 8.09kB 100.0% 🚀
assets/miners-BLaHKz44.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/agents-BdOxbPOa.js (New) 7.8kB 7.8kB 100.0% 🚀
assets/commands-panel-Bxp6VvuO.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/roadmap-n2cT2Fo3.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/maintainer-workflow-B-gg_h5q.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/digest-panel-C1Lau_oH.js (New) 6.18kB 6.18kB 100.0% 🚀
assets/repos._owner._repo.quality-C-9PNjSy.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs-nav-BWwJeZo9.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/docs.index-Bc6flZAP.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/api.index-Dfrg28HG.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/docs-D07I6sLv.js (New) 2.7kB 2.7kB 100.0% 🚀
assets/api-B02Im3Fc.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-BSJg6dS0.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-B7McbGcJ.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench-CNdBptG5.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/tooltip-CJwS-MSB.js (New) 1.47kB 1.47kB 100.0% 🚀
assets/session-D5Axx1NL.js (New) 1.45kB 1.45kB 100.0% 🚀
assets/tabs-CYfTTRI8.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-CkAa96LY.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-B6jdY7Zk.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-BrML5soz.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-BWP6blV2.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/sparkles-Si-jEoRz.js (New) 494 bytes 494 bytes 100.0% 🚀
assets/app.owner-DnkNIWRU.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-DFgSoMJu.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-CGXBah1n.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-DFOrCTk4.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-CFG9Ok_A.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-BLEi1eSJ.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-euc7KMUt.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-B4VA3iZn.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-7wSqSXPk.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-DHMK_1-w.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-DOjFq_Ik.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-DrKbS_18.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/wrench-C82SrdDB.js (New) 303 bytes 303 bytes 100.0% 🚀
assets/list-checks-Uf0GxU_3.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/workflow-0wryyepI.js (New) 265 bytes 265 bytes 100.0% 🚀
assets/compass-u7LVTCkr.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-Bl9tv5tj.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/activity-Cnr7ClhM.js (New) 234 bytes 234 bytes 100.0% 🚀
assets/message-square-DyDFue6v.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-DkPlVXnT.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-BQF3AfIZ.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-DBH4M0B1.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-DjueRXm9.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-CqjfW2A3.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/circle-NaNSBFfs.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% 🗑️

@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 04:47:42 UTC

77 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 wholesale-deletes apps/loopover-extension and apps/loopover-miner-extension along with their build scripts, and threads that removal through turbo.json, ci.yml, ui-deploy.yml, package.json scripts, release-core path lists, roadmap copy, and smoke-test route lists. The wiring changes are consistent end-to-end: turbo.json's dependsOn/lint/typecheck/build blocks for both extension packages are gone and @​loopover/ui#build's dependsOn is correctly reduced to ["^build"], ci.yml's UI path filter, Extension lint/typecheck steps, and comment mentions are all removed together, and package.json's ui:build/ui:test chains no longer reference the deleted workspaces. The most notable detail is the disciplined 'trace every reference' approach beyond the issue's own audit — catching smoke-test route lists, release-core exclusion arrays, and stale comments in ranked-candidates.ts/discover-cli.ts that would otherwise silently describe a now-deleted consumer.

Nits — 6 non-blocking
  • package.json (not shown in diff detail here) removes 6 extension-related npm scripts but the diff confirms ui:build/ui:test are updated in lockstep — worth double-checking no other script (e.g. a CI workflow outside ci.yml/ui-deploy.yml) still references `extension:build` or `miner-extension:*`.
  • turbo.json's @​loopover/extension#build entry documented a subtlety about `cache: false` being required for cross-package output restore correctness (empirically verified); that hard-won knowledge is now gone from the codebase along with the code it described, which is fine since the code is gone too, but worth flagging as institutional-knowledge loss if a similar cross-package-output task is added later.
  • Given the two undetailed FAILED checks (validate-tests, validate) and the branch being 3 commits behind main, rebase onto the latest default branch before merging to rule out that as the cause rather than a defect introduced by this diff.
  • Confirm the 10 deleted root-level tests plus the extra `test/unit/miner-toolbar-badge.test.ts` are the complete set — i.e. that no other root test still imports from `apps/loopover-extension/**` or `apps/loopover-miner-extension/**`, since a missed one would ENOENT in CI exactly as the PR description notes was caught for the toolbar-badge test.
  • Code changes lack test evidence — Add focused regression tests or explain why existing coverage is sufficient.
  • Touches a guarded path — held for manual review — A maintainer must review and merge this change.

CI checks failing

  • validate
  • validate-tests

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 #8598
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 ℹ️ None detected risk: low · value: none · LLM: significant
Linked issue satisfaction

Addressed
The diff deletes both browser-extension packages, their build scripts, the shared build/CI/npm-script wiring in ci.yml, ui-deploy.yml, turbo.json, package.json, and .gitignore exactly as the issue's audit specifies, and the PR description documents additional real references (smoke scripts, release-core scripts, stale comments) found beyond the issue's own scope. The changes visibly satisfy the is

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 &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
/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
…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.
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.

build: delete both browser-extension packages and their shared build/CI/npm-script wiring

1 participant