vscode-extension-guide-en
Guide for VS Code extension development from scaffolding to Marketplace publication
npx skills add sickn33/agentic-awesome-skills --skill vscode-extension-guide-en --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# VS Code Extension Guide (English) ## Overview An English guide for building VS Code extensions, covering the full lifecycle from scaffolding to Marketplace publication. Includes reference material on webview patterns, CSP security, TreeView, testing, packaging and troubleshooting. Updated for VS Code 1.74+ APIs. Adapted from aktsmm/agent-skills (CC BY-NC-SA 4.0), translated to English with corrections for current VS Code APIs. ## When to Use This Skill - Use when creating a new VS Code extension from scratch - Use when adding commands, keybindings or settings to an extension - Use when building TreeView or Webview UI in an extension - Use when publishing an extension to the VS Code Marketplace - Use when troubleshooting extension activation or packaging issues ## How It Works ### Quick Start ```bash npm install -g yo generator-code yo code ``` ### Project Structure ``` my-extension/ ├── package.json # Extension manifest ├── src/extension.ts # Entry point ├── out/ # Compiled JS ├── images/icon.png # 128x128 PNG for Marketplace └── .vscodeignore # Exclude files from VSIX ``` ### Building and Packaging ```bash npm run compile # Build once npm run watch # Watch mode (F5 to launch deb
- Overview
- When to Use This Skill
- How It Works
- Quick Start
- Project Structure
- Building and Packaging
- Reference Topics
- Install the Full Skill
- Best Practices
- Common Pitfalls
- Related Skills
- Limitations
npm install -g yo generator-code yo code npm run compile # Build once npm run watch # Watch mode (F5 to launch debug) npx @vscode/vsce package # Creates .vsix npx skills add lewiswigmore/agent-skills --skill vscode-extension-guide-en
What does the vscode-extension-guide-en skill do?
Guide for VS Code extension development from scaffolding to Marketplace publication
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill vscode-extension-guide-en --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.