feat(providers): discover VSCodium storage paths#233
Open
ozymandiashh wants to merge 1 commit intogetagentseal:mainfrom
Open
feat(providers): discover VSCodium storage paths#233ozymandiashh wants to merge 1 commit intogetagentseal:mainfrom
ozymandiashh wants to merge 1 commit intogetagentseal:mainfrom
Conversation
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 free
to 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.
Summary
VSCodium uses the same VS Code-compatible storage layout, but under
VSCodium/User/...instead ofCode/User/.... CodeBurn was only scanning VS Code roots for these providers, so VSCodium users could have valid Copilot, Roo Code, or KiloCode sessions on disk that never showed up in reports.This adds the missing VSCodium roots for Copilot
workspaceStoragetranscripts and Cline-family Roo/KiloglobalStoragetask history. Roo/Kilo also get VS Code InsidersglobalStorageparity with Copilot. Missing roots are still skipped quietly, so users with only one editor installed do not pay a behavior penalty.The path helpers now accept injected
homeDirandplatformvalues so the macOS, Windows, and Linux roots can be tested deterministically. The Cline-family discovery test also exercises scanning multiple storage roots in one run.Closes #230.
Validation
npx tsc --noEmitnpx vitest run tests/providers/vscode-cline-parser.test.ts tests/providers/copilot.test.ts tests/providers/roo-code.test.ts tests/providers/kilo-code.test.tsnpx vitest runnpm run build