Agent skill · Code Review & Quality

vscode-extension-guide-en

Guide for VS Code extension development from scaffolding to Marketplace publication

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorcopilotMIT
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Declared author: lewiswigmore
Path: skills/vscode-extension-guide-en/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. How It Works
  4. Quick Start
  5. Project Structure
  6. Building and Packaging
  7. Reference Topics
  8. Install the Full Skill
  9. Best Practices
  10. Common Pitfalls
  11. Related Skills
  12. Limitations
Commands it runs
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
More from agentic-awesome-skills
All skills →
About this skill
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.

Keep going