Standardize VS Code extension command development. Follows official naming, localization, and UI visibility patterns.
Install
mkdir -p .claude/skills/vscode-ext-commands && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2946" && unzip -o skill.zip -d .claude/skills/vscode-ext-commands && rm skill.zipInstalls to .claude/skills/vscode-ext-commands
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Guidelines for contributing commands in VS Code extensions. Indicates naming convention, visibility, localization and other relevant attributes, following VS Code extension development guidelines, libraries and good practicesKey capabilities
- →Define command titles for extension commands
- →Implement regular commands for Command Palette
- →Configure Side Bar commands with icons
- →Define visibility rules using when clauses
- →Manage command grouping and ordering
How it works
It provides patterns for command registration, including naming conventions for Side Bar items and visibility logic for the Command Palette.
Inputs & outputs
When to use vscode-ext-commands
- →Design VS Code command structure
- →Implement sidebar commands
- →Apply command localization
- →Define command visibility rules
About this skill
VS Code extension command contribution
This skill helps you to contribute commands in VS Code extensions
When to use this skill
Use this skill when you need to:
- Add or update commands to your VS Code extension
Instructions
VS Code commands must always define a title, independent of its category, visibility or location. We use a few patterns for each "kind" of command, with some characteristics, described below:
-
Regular commands: By default, all commands should be accessible in the Command Palette, must define a
category, and don't need anicon, unless the command will be used in the Side Bar. -
Side Bar commands: Its name follows a special pattern, starting with underscore (
_) and suffixed with#sideBar, like_extensionId.someCommand#sideBarfor instance. Must define anicon, and may or may not have some rule forenablement. Side Bar exclusive commands should not be visible in the Command Palette. Contributing it to theview/titleorview/item/context, we must inform order/position that it will be displayed, and we can use terms "relative to other command/button" in order to you identify the correctgroupto be used. Also, it's a good practice to define the condition (when) for the new command is visible.
When not to use it
- →Commands without a defined title
Limitations
- →Side Bar commands must follow specific naming patterns
- →Commands must define a title
How it compares
It enforces specific naming and visibility patterns required by VS Code extension guidelines rather than arbitrary command implementation.
Compared to similar skills
vscode-ext-commands side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| vscode-ext-commands (this skill) | 2 | 7mo | No flags | Beginner |
| agent-implementer-sparc-coder | 1 | 6mo | Review | Intermediate |
| ai-sdk-model-manager | 1 | 4mo | Review | Intermediate |
| update-codemaps | 0 | 1mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by github
View all by github →You might also like
agent-implementer-sparc-coder
ruvnet
Agent skill for implementer-sparc-coder - invoke with $agent-implementer-sparc-coder
ai-sdk-model-manager
tambo-ai
Manages AI SDK model configurations - updates packages, identifies missing models, adds new models with research, and updates documentation
update-codemaps
chenqin231
扫描代码结构并更新架构文档映射
tsx
javimosch
TSX namespace for Netsnek e.U. TypeScript component toolkit. React component scaffolding, type-safe props, Storybook integration, and component docs.
vscode-extension-expert
s-hiraoku
This skill provides expert-level guidance for VS Code extension development. Use when implementing new extension features, debugging extension code, designing WebView UIs, implementing Language Server Protocol features, or optimizing extension performance. Covers activation events, contribution poin
update-requirement
Tan90Qian
处理需求变更并同步 spec、类型和实现