From antigravity-awesome-skills
Guides VS Code extension development from scaffolding to Marketplace publication, covering Webviews, TreeViews, commands, testing, packaging, and troubleshooting.
npx claudepluginhub sickn33/antigravity-awesome-skillsThis skill uses the workspace's default tool permissions.
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.
Guides VS Code extension development from scaffolding to Marketplace publication, covering Webviews, TreeViews, commands, testing, packaging, and troubleshooting.
Scaffolds and maintains VSCode extensions using reactive-vscode for reactive APIs, tsdown for CJS bundling, and vscode-ext-gen for type-safe metadata. Use for starter setups or ongoing development.
Builds VS Code extensions from templates or converts JS/React/Vue apps. Supports commands, webviews (React/Vue), custom editors, tree views, AI agent integration via file-bridge, and .vsix packaging.
Share bugs, ideas, or general feedback.
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.
npm install -g yo generator-code
yo code
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
npm run compile # Build once
npm run watch # Watch mode (F5 to launch debug)
npx @vscode/vsce package # Creates .vsix
The full skill includes detailed reference documents on:
For the complete guide with all reference documents:
npx skills add lewiswigmore/agent-skills --skill vscode-extension-guide-en
.vscodeignoreactivationEvents are auto-detected for contributed commands and viewsProblem: Extension not loading
Solution: Check activationEvents. Since VS Code 1.74, these are auto-detected for contributed commands/views.
Problem: Command not found Solution: Match the command ID exactly between package.json and your code.
Problem: Webview content not displaying
Solution: Check your Content Security Policy. Use the webview's cspSource property.
@test-driven-development - Write tests before implementing extension features@debugging-strategies - Systematic troubleshooting for extension issues