chore: prepare VS Code extension for Marketplace publishing#705
Merged
waleedkadous merged 2 commits intomainfrom Apr 26, 2026
Merged
chore: prepare VS Code extension for Marketplace publishing#705waleedkadous merged 2 commits intomainfrom
waleedkadous merged 2 commits intomainfrom
Conversation
Marketplace metadata
- Add icon (icons/codev.png, 1024x1024 PNG copied from marketing/logo.png).
Marketplace requires PNG; SVG isn't accepted for the listing icon.
- Add categories ['AI', 'Other'] and 9 search keywords for discoverability.
- Add homepage, bugs.url (GitHub issues), qna (GitHub Discussions),
galleryBanner (#1e1e1e dark), pricing ('Free').
Identifier changes (Marketplace global-uniqueness conflicts)
- name: 'codev' -> 'codev-vscode'. The 'codev' slug is already taken
by sk-aicoding.codev; the Marketplace requires the name field to be
globally unique, not just unique per publisher.
- displayName: 'Codev' -> 'Codev for VS Code'. The 'Codev' display
name is also taken; using the 'X for VS Code' pattern (ESLint,
GitHub Copilot use this) keeps branding clear without conflict.
Version alignment
- 0.2.0 -> 3.0.0 to align with the codev npm package's 3.0.x series.
Stripped the codev RC suffix because the Marketplace doesn't accept
SemVer pre-release tags; --pre-release flag at publish time covers
that channel instead.
Build / publish scripts
- vsix: 'vsce package --no-dependencies' (esbuild bundles deps inline,
so vsce's npm-ls walk would fail in pnpm workspaces).
- vscode:publish: stable channel publish.
- vscode:publish:pre: --pre-release channel publish.
After this lands, publish via:
pnpm --filter codev-vscode vscode:publish:pre # while iterating
pnpm --filter codev-vscode vscode:publish # GA
Final identifier: cluesmith.codev-vscode (assuming publisher 'cluesmith'
is created on the Marketplace; existing publisher CluesmithLLC works
too if you prefer to skip the create step).
Reflects the rename in the previous commit (the 'codev' slug is taken on the Marketplace by sk-aicoding.codev, so the published identifier is now cluesmith.codev-vscode).
waleedkadous
approved these changes
Apr 26, 2026
waleedkadous
approved these changes
Apr 26, 2026
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
Gets the VS Code extension publishable on the Marketplace by adding the missing metadata and resolving identifier conflicts. The extension is now live at
cluesmith.codev-vscode(3.0.0 stable).Two commits
1. `chore: prepare VS Code extension for Marketplace publishing` (`d1ef54b6`)
Marketplace metadata (gaps that would have made the listing look unfinished):
Identifier rename (Marketplace global-uniqueness conflicts):
Version alignment:
Build / publish scripts:
2. `docs: update arch.md Marketplace identifier` (`cf667c0c`)
Updates the directory map's `cluesmith.codev` reference to `cluesmith.codev-vscode` so it matches the actual published identifier.
Publishing flow after this lands
```bash
Stable
pnpm --filter codev-vscode vscode:publish
Pre-release (use this for RCs)
pnpm --filter codev-vscode vscode:publish:pre
```
Both run `vscode:prepublish` (`pnpm package` → check-types + lint + esbuild --production) before uploading, so you don't need to `vsce package` first.
Live verification
The extension is already published as a result of getting through the conflicts during this PR's prep work:
Test plan
Out of scope