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

vscode-extension-publisherVS Code extension publisher 搜索

Agent Skill

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

总安装

823

周安装

35

GitHub Stars

68

下载量

288
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/luongnv89/skills --skill vscode-extension-publisher

简介

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

  • 适合在开发或部署阶段快速定位可用扩展。vscode-extension-publisher 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过关键词匹配提供候选扩展列表及简要说明。
  • 安装前建议核实维护状态与潜在的网络访问行为。
  • 可结合来源仓库进一步验证扩展功能与使用方式。

SKILL.md

VS Code Extension Publisher

Guides users through setting up, packaging, and publishing VS Code extensions to the Visual Studio Marketplace, including PAT/publisher setup, pre-flight validation, and CI/CD automation.

Repo Sync Before Edits (mandatory)

Before creating/updating/deleting files in an existing repository, sync the current branch with remote:

branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin
git pull --rebase origin "$branch"

If the working tree is not clean, stash first, sync, then restore:

git stash push -u -m "pre-sync"
branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin && git pull --rebase origin "$branch"
git stash pop

If origin is missing, pull is unavailable, or rebase/stash conflicts occur, stop and ask the user before continuing.

Instructions

Step 1: Run Pre-flight Checks

Before anything else, validate the environment and project.

Run the bundled preflight script:

bash scripts/preflight-check.sh

This checks:

  • Node.js and npm are installed
  • @vscode/vsce is installed globally (installs it if missing)
  • package.json exists and has required fields
  • No SVG icons (marketplace restriction)

If the script is not available, manually verify:

  1. Node.js installed: node --version (requires v18+)
  2. npm installed: npm --version
  3. vsce installed: vsce --version — if missing, run npm install -g @vscode/vsce
  4. package.json exists in the extension root directory

Step 2: Validate package.json

The following fields are required for publishing:

FieldDescriptionExample
nameExtension identifier (lowercase, no spaces)"my-extension"
displayNameHuman-readable name"My Extension"
descriptionShort description"Adds cool features"
versionSemver version"1.0.0"
publisherYour publisher ID"my-publisher"
engines.vscodeMinimum VS Code version"^1.80.0"
categoriesMarketplace categories["Other"]

Recommended fields for better marketplace presence:

FieldDescription
iconPath to PNG icon (min 128x128px, no SVG)
repositoryGitHub repo URL
licenseLicense identifier (e.g., "MIT")
keywordsSearch keywords (max 30)
galleryBanner.colorHex color for marketplace banner
galleryBanner.theme"dark" or "light"

If any required field is missing, help the user add it to package.json.

Step 3: Setup Azure DevOps PAT (if needed)

If the user has never published before, guide them through PAT creation:

  1. Go to https://dev.azure.com — sign in (or create a free account)
  2. Click User Settings (gear icon) > Personal Access Tokens
  3. Click + New Token with these settings:

- Name: vsce-publish (or any descriptive name) - Organization: Select All accessible organizations - Expiration: Set a reasonable duration (max 1 year) - Scopes: Click Custom defined > Marketplace > check Manage

  1. Click Create and copy the token immediately (it won't be shown again)

Important: The PAT must have:

  • Organization: "All accessible organizations" (not a specific org)
  • Scope: Marketplace > Manage

Step 4: Create or Verify Publisher (if needed)

If the user doesn't have a publisher identity:

  1. Go to https://marketplace.visualstudio.com/manage
  2. Sign in with the same Microsoft account used for the PAT
  3. Click Create publisher
  4. Fill in:

- ID: Unique identifier (cannot be changed later!) - Name: Display name shown on marketplace

  1. Verify by running: vsce login <publisher-id>

- Enter the PAT when prompted

Make sure the publisher field in package.json matches the publisher ID exactly.

Step 5: Package the Extension

Create a .vsix package for testing before publishing:

vsce package

This generates a file like my-extension-0.0.1.vsix.

Test locally before publishing:

code --install-extension my-extension-0.0.1.vsix

If there are packaging errors:

  • Missing README.md: Create a README.md in the project root
  • SVG icon: Replace with a PNG file (min 128x128px)
  • Missing license: Add a LICENSE file or set "license" in package.json

Step 6: Publish to Marketplace

Once testing is satisfactory, publish:

vsce publish

Version bump options:

vsce publish patch    # 1.0.0 → 1.0.1
vsce publish minor    # 1.0.0 → 1.1.0
vsce publish major    # 1.0.0 → 2.0.0
vsce publish 1.2.3    # Set exact version

In git repos, vsce publish automatically creates a version commit and tag.

After publishing: The extension appears on the marketplace within ~5 minutes. Verify at: https://marketplace.visualstudio.com/items?itemName=<publisher>.<extension-name>

Step 7: Setup GitHub Actions CI/CD (Optional)

If the user wants automated publishing, generate a GitHub Actions workflow.

Copy the template from assets/github-actions-publish.yml to the project:

mkdir -p .github/workflows
cp assets/github-actions-publish.yml .github/workflows/publish.yml

Then guide the user to:

  1. Add the PAT as a GitHub secret named VSCE_PAT:

- Go to repo Settings > Secrets and variables > Actions - Click New repository secret - Name: VSCE_PAT, Value: the Azure DevOps PAT

  1. Publishing triggers on git tags matching v* (e.g., v1.0.0)
  2. To release: git tag v1.0.0 && git push origin v1.0.0

See references/publishing-guide.md for CI/CD customization options.

Step Completion Reports

After completing each major step, output a status report in this format:

◆ [Step Name] ([step N of M] — [context])
··································································
  [Check 1]:          √ pass
  [Check 2]:          √ pass (note if relevant)
  [Check 3]:          × fail — [reason]
  [Check 4]:          √ pass
  [Criteria]:         √ N/M met
  ____________________________
  Result:             PASS | FAIL | PARTIAL

Adapt the check names to match what the step actually validates. Use for pass, × for fail, and to add brief context. The "Criteria" line summarizes how many acceptance criteria were met. The "Result" line gives the overall verdict.

Pre-flight phase checks: Node.js available, vsce installed, package.json valid

Auth Setup phase checks: PAT configured, Publisher verified

Package phase checks: Extension packaged, Size reasonable, Manifest correct

Publish phase checks: Upload success, Marketplace live, CI/CD configured

Examples

Example 1: First-Time Publishing

User says: "I want to publish my VS Code extension to the marketplace"

Actions:

  1. Run preflight checks to verify environment
  2. Validate package.json — fill in any missing required fields
  3. Walk through PAT creation on Azure DevOps
  4. Create publisher identity on marketplace
  5. Login with vsce login
  6. Package with vsce package and test locally
  7. Publish with vsce publish

Result: Extension live on VS Code Marketplace.

Example 2: Publish Update with Version Bump

User says: "publish a new minor version of my extension"

Actions:

  1. Run preflight checks
  2. Verify package.json is valid
  3. Run vsce publish minor

Result: Version bumped and published (e.g., 1.0.0 → 1.1.0).

Example 3: Setup CI/CD for Auto-Publishing

User says: "create a GitHub Actions workflow to auto-publish my extension"

Actions:

  1. Copy assets/github-actions-publish.yml to .github/workflows/publish.yml
  2. Guide user to add VSCE_PAT secret to GitHub repo
  3. Explain tagging workflow: git tag v1.0.0 && git push origin v1.0.0

Result: Extensions auto-publish on version tags.

Error Handling

401 Unauthorized / 403 Forbidden

Cause: PAT is invalid, expired, or has wrong scope. Solution:

  1. Regenerate PAT at https://dev.azure.com with:

- Organization: "All accessible organizations" - Scope: Marketplace > Manage

  1. Re-login: vsce login <publisher-id>

"Extension already exists"

Cause: Another publisher owns this extension name. Solution: Change the name field in package.json to something unique. The displayName can still be anything.

SVG Icon Error

Cause: Marketplace prohibits SVG icons for security reasons. Solution: Convert the icon to PNG format (minimum 128x128 pixels) and update the icon field in package.json.

Missing Fields in package.json

Cause: Required fields are absent. Solution: Run the preflight script to identify missing fields, then add them to package.json.

"Exceeded 30 tags"

Cause: Too many items in the keywords array. Solution: Reduce keywords to 30 or fewer entries.

vsce package fails with prepublish error

Cause: The vscode:prepublish script in package.json failed. Solution: Run the prepublish script manually to see the error:

npm run vscode:prepublish

Fix the underlying build issue before retrying.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.96%
按下载量换算92

Claude

28.68%
按下载量换算83

Cursor

19.32%
按下载量换算56

Gemini CLI

10.08%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills