feat: add VS Code extension install via plugin install#161
Merged
rhuanbarreto merged 4 commits intomainfrom Mar 23, 2026
Merged
feat: add VS Code extension install via plugin install#161rhuanbarreto merged 4 commits intomainfrom
rhuanbarreto merged 4 commits intomainfrom
Conversation
Downloads the .vsix from the plugins API and installs it via `code --install-extension`, with a manual fallback when the code CLI is unavailable. Extracts a shared downloadPluginAsset helper to deduplicate fetch logic between cursor and vscode installs.
Deploying archgate-cli with
|
| Latest commit: |
08e4b45
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://d1cdcc24.archgate-cli.pages.dev |
| Branch Preview URL: | https://feat-plugin-install-vscode-e.archgate-cli.pages.dev |
The VS Code extension is additive — configure the marketplace URL in VS Code user settings first, then download and install the .vsix extension on top.
…erence Updates both English and Portuguese docs to reflect that `archgate plugin install --editor vscode` now downloads and installs the .vsix extension alongside the marketplace URL configuration. Adds manual installation instructions with curl + code CLI.
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
archgate plugin install --editor vscode.vsixfrom the plugins API (/api/vscode) using stored credentials and installs it viacode --install-extensioncodeCLI is not availabledownloadPluginAsset()helper to deduplicate the authenticated fetch logic between cursor and vscode installsTest plan
archgate plugin install --editor vscodewith valid credentials andcodeCLI available — extension installsarchgate plugin install --editor vscodewithoutcodeCLI — manual instructions printedarchgate plugin install --editor vscodewithout credentials — "Not logged in" errorarchgate plugin install --editor cursor— still works (shared helper refactor)bun run validatepasses locally