Uh oh!
There was an error while loading. Please reload this page.
feat(web): add Open VSX theme search - #6
Merged
Conversation
Co-authored-by: Julius Marminge <julius0216@outlook.com> Co-authored-by: codex <codex@users.noreply.github.com> (cherry picked from commit f0b57ca2313bd7971cefb366d3b3808152b014fc)
Thread transfer impact✅ Thread transfer remains within every enforced ceiling.
Baseline: Scenario and decoded snapshot size10 historical turns, 5 command tools per turn, 878.9 KiB retained MCP result per historical turn, and a 1.05 MiB retained result in the measured turn.
Updated in place by a trusted workflow. PR artifacts are strictly validated and never executed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds in-app search and import of editor themes from the Open VSX marketplace, on top of the existing local
.vsix/VS Code theme import. ~2,700 insertions including a 776-lineopenVsxThemes.tswith 526 lines of tests.Cherry-picked from upstream
f0b57ca2313bd7971cefb366d3b3808152b014fc(pingdotgg/t3code#5654). Clean pick — it is built on the OKLCH palette work already merged, so it applies without conflict.Worth a deliberate decision, not just a sync
This is the first thing in Pylon that reaches a third-party marketplace at runtime: it queries
https://open-vsx.org/api/-/searchand downloads extension archives to extract their theme JSON. That is a new network dependency and a new trust surface — Pylon previously only imported themes the user already had on disk.Three new dependencies:
jszip(unpack.vsix),jsonc-parser(theme JSON with comments),@noble/hashes(already in the catalog).Flagging it plainly so the decision is explicit; the developer asked for it knowing the tradeoff.
Pylon-first checks
Verification
openVsxThemes,themePalette,vscodeThemeImport,themeBootpass (85 tests)jszip@3.10.1andjsonc-parser@3.3.1resolve after installNot verified: no live marketplace search was performed against open-vsx.org, so the network path and archive extraction are covered only by the bundled tests.
Model: Claude Opus 5 (1M context). Harness: Claude Code.
Need help on this PR? Tag
@codesmithwith what you need. Autofix is disabled.