chore: move VSCode extension to canopy-dashboard repo#31
Merged
Conversation
The extension lives at https://github.com/ashmitb95/canopy-dashboard now. Git history for the extension's 26 commits was preserved via `git filter-repo --subdirectory-filter vscode-extension`. - Deletes vscode-extension/ (62 files, ~22.6k lines) - Drops the extension-build job from .github/workflows/ci.yml (the extension has its own CI on the new repo) - README: adds an inline pointer to the new repo next to the existing Marketplace link The extension and the CLI/MCP are at different release cadences and toolchains (TS+esbuild vs Python+hatchling). The split lets each ship on its own clock and unblocks the dashboard's perf rework (reading .canopy/state/*.json directly instead of round-tripping through MCP).
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
The VSCode extension lives at ashmitb95/canopy-dashboard now. This PR completes the canopy-side cleanup:
vscode-extension/(62 files, ~22.6k lines)extension-buildjob from.github/workflows/ci.yml(the extension has its own CI on the new repo)What moved + what was preserved
git filter-repo --subdirectory-filter vscode-extensionpreserved all 26 commits of extension-only history in canopy-dashboardvscode-extension/package.jsondescription rewrite carried over as a regular commit in the new repo.github/workflows/ci.ymlpipx install canopy-cli && canopy setup-agent. Wired into theviewsWelcomeand the MCP-failure toast as the primary install path. The managed-venv installer stays as a fallback.~/.local/pipx/venvs/canopy-cli/bin/canopy(the actual pipx venv name) in addition to the legacy~/.local/pipx/venvs/canopy/bin/canopyWhy split
.canopy/state/*.jsonshapes. We discussedschema_versionas the durable contract — that's a follow-up.Test plan
python -m buildof canopy is unaffected (no Python files touched)vscode-extension/anywhere in canopy