Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

vscode-extension-builderVS Code extension 构建器

Agent Skill

vscode-extension-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,233

周安装

94

GitHub Stars

2

下载量

782
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vscode-extension-builder(VS Code extension 构建器)
来源仓库:https://github.com/kjgarza/marketplace-claude
仓库路径:skills/vscode-extension-builder
安装命令:
npx skills add https://github.com/kjgarza/marketplace-claude --skill vscode-extension-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kjgarza/marketplace-claude --skill vscode-extension-builder

简介

用于查找、检索和筛选 VS Code 扩展相关信息。

  • 适合在开发环境中快速定位候选扩展或验证功能用途。
  • 通过关键词匹配和来源仓库信息提供候选结果。vscode-extension-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 可结合原始 README 进一步核验具体用法和适用场景。

SKILL.md

VS Code Extension Builder

Build professional VS Code extensions with proper architecture, best practices, and complete tooling support.

Quick Start

For immediate extension creation:

  1. Initialize: Run npx --package yo --package generator-code -- yo code
  2. Choose type: New Extension (TypeScript)
  3. Fill details: Name, identifier, description
  4. Develop: Open in VS Code, press F5 to debug
  5. Test: Run commands in Extension Development Host
  6. Package: Run vsce package when ready

For detailed guidance, follow the workflow below.

Extension Types

Choose the type that matches your needs:

  • Command Extension: Add commands to Command Palette (simplest, most common)
  • Language Support: Syntax highlighting, IntelliSense, formatting
  • Webview Extension: Custom UI panels with HTML/CSS/JS
  • Tree View: Custom sidebar views with hierarchical data
  • Debugger: Add debugging support for languages
  • Theme: Color themes, file icon themes
  • Snippet Provider: Code snippets for languages

Core Workflow

1. Gather Requirements

Ask user about:

  • Purpose: What should the extension do?
  • Type: Which extension type? (command, language, webview, etc.)
  • Features: Specific functionality needed
  • UI: Commands, views, panels, status bar items?
  • Activation: When should it activate?

2. Choose Extension Type & Architecture

Based on requirements, select appropriate pattern:

Simple Command Extension (most common):

  • Single responsibility
  • Command Palette integration
  • Quick to build

Language Extension:

  • Syntax highlighting (TextMate grammar)
  • Language server for IntelliSense
  • Complex but powerful

Webview Extension:

  • Custom UI needed
  • Rich interactions
  • More complex state management

See extension-anatomy.md for detailed structure.

3. Initialize Project

Option A: Use Yeoman Generator (Recommended)

npx --package yo --package generator-code -- yo code

Fill in:

  • Type: New Extension (TypeScript)
  • Name: User-friendly name
  • Identifier: lowercase-with-hyphens
  • Description: Clear purpose
  • Git: Yes
  • Bundler: esbuild (recommended) or webpack
  • Package manager: npm

Option B: Use Templates

For specific patterns, copy from assets/templates/:

  • command-extension/ - Command-based extension
  • language-support/ - Language extension starter
  • webview-extension/ - Webview-based extension

4. Implement Core Functionality

For Command Extensions:

  1. Define command in package.json:
{
  "contributes": {
    "commands": [{
      "command": "extension.commandId",
      "title": "Command Title"
    }]
  }
}
  1. Register command in extension.ts:
export function activate(context: vscode.ExtensionContext) {
  let disposable = vscode.commands.registerCommand('extension.commandId', () => {
    vscode.window.showInformationMessage('Hello from Extension!');
  });
  context.subscriptions.push(disposable);
}

For Language Extensions: See common-apis.md for language features APIs.

For Webview Extensions: See common-apis.md for webview creation patterns.

5. Configure Activation & Contributions

Activation Events determine when your extension loads:

  • onCommand: When command is invoked
  • onLanguage: When file type opens
  • onView: When tree view becomes visible
  • *: On startup (avoid if possible)

See activation-events.md for complete reference.

Contributions declare extension capabilities in package.json:

  • commands: Command Palette entries
  • menus: Context menu items
  • keybindings: Keyboard shortcuts
  • languages: Language support
  • views: Tree views
  • configuration: Settings

6. Test & Debug

Local Testing:

  1. Press F5 in VS Code to launch Extension Development Host
  2. Test commands and features
  3. Check Debug Console for logs
  4. Set breakpoints for debugging

Automated Testing:

  • Unit tests: Test business logic
  • Integration tests: Test VS Code API interactions
  • Use @vscode/test-electron for testing

Common Issues:

  • Command not appearing: Check contributes.commands and activation events
  • Extension not activating: Verify activation events in package.json
  • API errors: Check VS Code API version compatibility

7. Package & Distribute

Prepare for Publishing:

  1. Update README.md with features and usage
  2. Add extension icon (128x128 PNG)
  3. Set repository URL in package.json
  4. Add LICENSE file
  5. Test thoroughly

Package Extension:

npm install -g @vscode/vsce
vsce package

Creates .vsix file for distribution.

Publish to Marketplace:

vsce publish

Requires Azure DevOps personal access token.

Common Patterns

Pattern 1: Simple Command

Quick command that shows information:

vscode.commands.registerCommand('extension.showInfo', () => {
  vscode.window.showInformationMessage('Information message');
});

Pattern 2: Command with User Input

Get input before executing:

vscode.commands.registerCommand('extension.greet', async () => {
  const name = await vscode.window.showInputBox({
    prompt: 'Enter your name'
  });
  if (name) {
    vscode.window.showInformationMessage(`Hello, ${name}!`);
  }
});

Pattern 3: File Operation Command

Work with active editor:

vscode.commands.registerCommand('extension.processFile', () => {
  const editor = vscode.window.activeTextEditor;
  if (!editor) {
    vscode.window.showErrorMessage('No active editor');
    return;
  }

  const document = editor.document;
  const text = document.getText();
  // Process text...
});

Pattern 4: Status Bar Item

Show persistent status:

const statusBarItem = vscode.window.createStatusBarItem(
  vscode.StatusBarAlignment.Right,
  100
);
statusBarItem.text = "$(check) Ready";
statusBarItem.show();
context.subscriptions.push(statusBarItem);

Reference Navigation

Load these references as needed:

- Extension structure and file organization - package.json manifest fields - Entry point and lifecycle hooks - Extension context and disposables

- Window and editor operations - Workspace and file system access - Language features (IntelliSense, diagnostics) - Webview creation and messaging - Tree views and custom UI

- When extension should load - Performance optimization - Lazy loading strategies

- UX guidelines and design patterns - Performance optimization - Security considerations - Testing strategies - Publishing guidelines

Key Principles

Performance

  • Lazy load: Use specific activation events, not *
  • Async operations: Use async/await for I/O
  • Dispose resources: Clean up subscriptions
  • Minimize startup: Defer heavy operations

User Experience

  • Clear commands: Descriptive titles and categories
  • Feedback: Show progress for long operations
  • Error handling: Helpful error messages
  • Consistent UI: Follow VS Code conventions

Code Quality

  • TypeScript: Use strict mode for type safety
  • Error handling: Try-catch for all operations
  • Logging: Use console.log for debugging
  • Testing: Write tests for critical functionality

Troubleshooting

Extension Not Appearing

  • Verify package.json syntax (valid JSON)
  • Check main field points to compiled output
  • Ensure activation events are correct
  • Reload window: Developer: Reload Window

Command Not Working

  • Check command ID matches in package.json and code
  • Verify activation event includes the command
  • Check Debug Console for errors
  • Ensure command is registered in activate()

Build Errors

  • Run npm install to install dependencies
  • Check TypeScript configuration
  • Verify VS Code API version compatibility
  • Update @types/vscode if needed

Examples by Use Case

Add Command to Format Code

  1. Type: Command extension
  2. Activation: onCommand
  3. Implementation: Get editor text, format, replace
  4. UI: Command Palette entry

Add Syntax Highlighting

  1. Type: Language extension
  2. Activation: onLanguage:mylang
  3. Implementation: TextMate grammar in JSON
  4. UI: Automatic on file open

Add Custom Sidebar View

  1. Type: Tree view extension
  2. Activation: onView:myView
  3. Implementation: TreeDataProvider interface
  4. UI: Activity bar icon + sidebar panel

Add Quick Pick Menu

  1. Type: Command extension with UI
  2. Activation: onCommand
  3. Implementation: showQuickPick with items
  4. UI: Searchable dropdown menu

Resources in This Skill

Related Skills

For code quality and architecture review of your extension code:

  • detect-code-smells: Check extension code quality
  • security-pattern-check: Security review for extensions
  • suggest-performance-fix: Optimize extension performance

Notes

This skill provides the complete workflow for VS Code extension development, from initial concept to published extension. Use progressive disclosure: start with Quick Start for simple cases, dive into references for complex requirements. Templates in assets/ provide copy-paste starting points for common patterns.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.05%
按下载量换算298

Claude

29.91%
按下载量换算234

Cursor

19.49%
按下载量换算152

Gemini CLI

10.37%
按下载量换算81

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills