Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计异常

vscode-extension-builder-lawvableVS Code extension 构建器 lawvable

Agent Skill

vscode-extension-builder-lawvable 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

924

周安装

37

GitHub Stars

302

下载量

299
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lawvable/awesome-legal-skills --skill vscode-extension-builder-lawvable

简介

用于处理 GitHub 仓库、Issue、Pull Request 等协作信息。

  • 适合在团队协作中整理代码变更、审查事项或项目状态。
  • 支持围绕仓库活动和代码提交进行信息归类与追踪。vscode-extension-builder-lawvable 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 安装前需确认权限范围和命令执行边界,避免越权操作。
  • 建议结合原始 README 了解具体集成方式和数据访问限制。

SKILL.md

VS Code Extension

Build VS Code extensions from scratch or convert existing web apps into portable, shareable extensions.

Architecture

VS Code extensions run in two contexts:

  1. Extension Host (Node.js) — Backend logic, file access, VS Code APIs
  2. Webviews (browser sandbox) — Custom UIs with HTML/CSS/JS (React, Vue, vanilla)

Build stack: TypeScript + esbuild (extension) + Vite (webviews)

Quick Start

  1. Choose a template from assets/ based on your needs (see decision tree below)
  2. Copy the template to your project directory
  3. Update package.json: name, displayName, publisher, description
  4. Run npm install then npm run build
  5. Press F5 in VS Code to launch Extension Development Host

Template Decision Tree

NeedTemplate
Simple command/actionassets/basic-command/
Custom UI panel (React)assets/webview-react/
Sidebar file treeassets/tree-view/
Custom file editorassets/custom-editor/
AI agent integrationassets/file-bridge/

Extension Types

Commands

Register actions triggered via Command Palette, keyboard shortcuts, or menus.

vscode.commands.registerCommand('myExt.doSomething', () => {
  vscode.window.showInformationMessage('Done!');
});

See references/api-reference.md for common APIs.

Webviews

Full HTML/CSS/JS UIs in panels or sidebar. Use React for complex interfaces.

const panel = vscode.window.createWebviewPanel(
  'myView', 'My Panel', vscode.ViewColumn.One,
  { enableScripts: true }
);
panel.webview.html = getWebviewContent();

See references/webview-patterns.md for React setup, messaging, and CSP.

Tree Views

Hierarchical data in the sidebar (file explorers, outlines, lists).

vscode.window.registerTreeDataProvider('myTreeView', new MyTreeProvider());

See references/tree-view-patterns.md for TreeDataProvider patterns.

Custom Editors

Replace the default editor for specific file types.

vscode.window.registerCustomEditorProvider('myExt.myEditor', new MyEditorProvider());

See references/custom-editor-patterns.md for document sync and undo/redo.

Converting Existing Apps

To convert a JS/React/Vue app into an extension:

  1. Assess — What does the app do? What VS Code features does it need?
  2. Map APIs — Replace web APIs with VS Code equivalents
  3. Restructure — Move UI into webview, logic into extension host
  4. Connect — Wire up postMessage communication
Web APIVS Code Equivalent
localStoragecontext.globalState / context.workspaceState
fetch()vscode.workspace.fs or keep fetch for external APIs
RouterMultiple webview panels or sidebar views
alert()vscode.window.showInformationMessage()
prompt()vscode.window.showInputBox()
confirm()vscode.window.showWarningMessage() with options

See references/conversion-guide.md for detailed step-by-step process.

Build System

Extension code — Use esbuild (fast, simple):

// esbuild.js
esbuild.build({
  entryPoints: ['src/extension.ts'],
  bundle: true,
  outfile: 'dist/extension.js',
  external: ['vscode'],
  format: 'cjs',
  platform: 'node',
});

Webview code — Use Vite (HMR, React support):

// vite.config.ts
export default defineConfig({
  build: {
    outDir: '../dist/webview',
    rollupOptions: { output: { entryFileNames: '[name].js' } }
  }
});

See references/build-config.md for complete configurations.

package.json Manifest

Essential fields:

{
  "name": "my-extension",
  "displayName": "My Extension",
  "publisher": "your-publisher-id",
  "version": "0.0.1",
  "engines": { "vscode": "^1.85.0" },
  "main": "./dist/extension.js",
  "activationEvents": [],
  "contributes": {
    "commands": [{ "command": "myExt.hello", "title": "Hello" }]
  }
}

The contributes section defines commands, menus, views, settings, keybindings, and more.

See references/contribution-points.md for all contribution types.

IPC Patterns

Extension ↔ Webview

Use postMessage for bidirectional communication:

// Extension → Webview
panel.webview.postMessage({ type: 'update', data: {...} });

// Webview → Extension
panel.webview.onDidReceiveMessage(msg => {
  if (msg.type === 'save') { /* handle */ }
});

Extension ↔ External Tools (AI Agents)

Use file-based IPC for communication with Claude Code or other agents:

// Watch for command files
fs.watch(commandDir, (event, filename) => {
  if (filename.endsWith('.json')) {
    const command = JSON.parse(fs.readFileSync(path.join(commandDir, filename)));
    processCommand(command);
  }
});

See references/ai-integration.md for the file-bridge pattern.

Packaging & Distribution

Package as.vsix

npm install -g @vscode/vsce
vsce package

This creates my-extension-0.0.1.vsix.

.vscodeignore

Exclude unnecessary files:

.vscode/**
node_modules/**
src/**
*.ts
tsconfig.json
esbuild.js
vite.config.ts

Distribution Options

  1. Direct sharing — Send.vsix file, install via code --install-extension file.vsix
  2. VS Marketplace — Publish with vsce publish (requires Microsoft account)
  3. Open VSX — Alternative registry for open-source extensions

Platform-Specific Builds

For extensions with native dependencies:

vsce package --target win32-x64
vsce package --target darwin-arm64
vsce package --target linux-x64

Reference Files

FileWhen to Read
api-reference.mdImplementing extension features
contribution-points.mdConfiguring package.json contributes
webview-patterns.mdBuilding React webviews
tree-view-patterns.mdImplementing tree views
custom-editor-patterns.mdBuilding custom file editors
build-config.mdConfiguring esbuild/Vite
conversion-guide.mdConverting web apps
ai-integration.mdIntegrating with AI agents

Asset Templates

TemplateDescription
basic-command/Minimal extension with one command
webview-react/React webview panel with messaging
tree-view/Sidebar tree view with provider
custom-editor/Custom editor for specific file types
file-bridge/File-based IPC for AI agents

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.21%
按下载量换算111

Claude

30.41%
按下载量换算91

Cursor

16.67%
按下载量换算50

Gemini CLI

9.28%
按下载量换算28

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills