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

plugin-marketplace插件市场

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

17

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vinnie357/claude-skills --skill plugin-marketplace

简介

plugin-marketplace 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它适用于插件发现和资源整合场景,可帮助 Agent 根据关键词或任务需求生成结构化输出。
  • 通过自然语言查询或任务描述触发,返回匹配的文档片段或链接供进一步验证。
  • 安装命令为 npx skills add https://github.com/vinnie357/claude-skills --skill plugin-marketplace,需确认网络访问权限。
  • 使用前应检查数据源可靠性和更新频率,避免依赖过时或不准确的外部信息。

SKILL.md

Claude Code Plugin Marketplace

Guide for creating, validating, and managing plugin marketplaces for Claude Code. Includes schema validation, best practices, and automated tools.

When to Use This Skill

Activate this skill when:

  • Creating or editing .claude-plugin/marketplace.json files
  • Validating marketplace schema compliance
  • Setting up plugin repositories with marketplaces
  • Troubleshooting marketplace configuration issues
  • Converting plugin structures to marketplace format
  • Creating plugin entries with advanced features

Marketplace Schema Overview

Required Structure

All marketplaces must be located at .claude-plugin/marketplace.json in the repository root.

Required Fields:

  • name: Marketplace identifier (kebab-case, lowercase alphanumeric and hyphens only)
  • owner: Object with maintainer details (name required, email optional)
  • plugins: Array of plugin definitions (can be empty)

Optional Metadata:

  • metadata.description: Summary of marketplace purpose
  • metadata.version: Marketplace version tracking (semantic versioning recommended)
  • metadata.pluginRoot: Base directory for relative plugin source paths

Plugin Entry Schema

IMPORTANT: Schema Relationship

Plugin entries use the plugin manifest schema with all fields made optional, plus marketplace-specific fields (source, strict, category, tags). This means any field valid in a plugin.json file can also be used in a marketplace entry.

  • When strict: false, the marketplace entry serves as the complete plugin manifest if no plugin.json exists
  • When strict: true (default), marketplace fields supplement the plugin's own manifest file

Each plugin entry in the plugins array requires:

Mandatory:

  • name: Plugin identifier (kebab-case)
  • source: Location specification (string path or object)

Standard Metadata:

  • description: Brief explanation of plugin functionality
  • version: Semantic version number
  • author: Creator information (object with name, optional email)
  • homepage: Documentation or project URL
  • repository: Source control URL
  • license: SPDX license identifier (e.g., MIT, Apache-2.0)
  • keywords: Array of discovery and categorization tags
  • category: Organizational grouping
  • tags: Additional searchability terms

Component Configuration:

  • commands: Custom paths to command files or directories
  • agents: Custom paths to agent files
  • hooks: Custom hooks configuration or path to hooks file
  • mcpServers: MCP server configurations or path to MCP config
  • skills: Array of skill directory paths

Strict Mode Control:

  • strict: Boolean (default: true)

- true: Plugin must include plugin.json; marketplace fields supplement it - false: Marketplace entry serves as complete manifest (no plugin.json needed)

Dependencies:

  • dependencies: Array of plugin names this plugin depends on (format: "namespace:plugin-name")

Plugin Source Formats

Relative Path

"source": "./plugins/my-plugin"

Relative Path with pluginRoot

// In marketplace metadata
"metadata": {
  "pluginRoot": "./plugins"
}

// In plugin entry
"source": "my-plugin"  // Resolves to ./plugins/my-plugin

GitHub Repository

"source": {
  "source": "github",
  "repo": "owner/plugin-repo",
  "path": "optional/subdirectory",
  "branch": "main"
}

Git URL

"source": {
  "source": "url",
  "url": "https://gitlab.com/team/plugin.git",
  "branch": "main"
}

Environment Variables

Use ${CLAUDE_PLUGIN_ROOT} in paths to reference the plugin's installation directory:

{
  "skills": [
    "${CLAUDE_PLUGIN_ROOT}/skills/my-skill"
  ],
  "commands": [
    "${CLAUDE_PLUGIN_ROOT}/commands"
  ]
}

This ensures paths work correctly regardless of installation location.

Advanced Plugin Entry Features

Inline Plugin Definitions

Use strict: false to define complete plugin manifests inline without requiring plugin.json:

{
  "name": "my-plugin",
  "source": "./plugins/my-plugin",
  "strict": false,
  "description": "Complete plugin definition inline",
  "version": "1.0.0",
  "author": {
    "name": "Developer Name"
  },
  "skills": [
    "${CLAUDE_PLUGIN_ROOT}/skills/skill-one",
    "${CLAUDE_PLUGIN_ROOT}/skills/skill-two"
  ]
}

Component Path Override

Customize component locations:

{
  "name": "custom-paths",
  "source": "./plugins/custom",
  "strict": false,
  "commands": ["${CLAUDE_PLUGIN_ROOT}/custom-commands"],
  "agents": ["${CLAUDE_PLUGIN_ROOT}/custom-agents"],
  "hooks": {
    "onInstall": "${CLAUDE_PLUGIN_ROOT}/hooks/install.sh"
  },
  "mcpServers": "${CLAUDE_PLUGIN_ROOT}/mcp-config.json"
}

Metadata Supplementation

With strict: true, marketplace entries can add metadata not in plugin.json:

{
  "name": "existing-plugin",
  "source": "./plugins/existing",
  "strict": true,
  "category": "development",
  "keywords": ["added", "from", "marketplace"],
  "homepage": "https://docs.example.com"
}

Validation Workflow

1. Schema Validation

Use the provided Nushell script to validate marketplace.json:

nu ${CLAUDE_PLUGIN_ROOT}/scripts/validate-marketplace.nu .claude-plugin/marketplace.json

This validates:

  • JSON syntax
  • Required fields presence
  • Kebab-case naming
  • Field type correctness
  • Source path accessibility (for relative paths)

2. Plugin Entry Validation

Validate individual plugin entries:

nu ${CLAUDE_PLUGIN_ROOT}/scripts/validate-plugin-entry.nu .claude-plugin/marketplace.json "plugin-name"

Checks:

  • Required fields (name, source)
  • Strict mode consistency
  • Dependency references
  • Path validity
  • Component configuration

3. Dependency Graph Validation

Check for circular dependencies and missing dependencies:

nu ${CLAUDE_PLUGIN_ROOT}/scripts/validate-dependencies.nu .claude-plugin/marketplace.json

Best Practices

Naming Conventions

  • Marketplace name: Use your GitHub username or organization (e.g., vinnie357)
  • Plugin names: Use descriptive kebab-case (e.g., elixir-phoenix, rust-tools, core-skills)
  • Categories: Standardize on common categories: development, language, tools, frontend, backend, meta

Versioning Strategy

  • Use semantic versioning for both marketplace and plugins
  • Bump marketplace version when adding/removing plugins
  • Bump plugin versions when updating skills or configuration
  • Document breaking changes in plugin descriptions

Dependency Management

  • Always declare dependencies for plugins that require other plugins
  • Keep dependency chains shallow (avoid deep nesting)
  • Consider creating a meta-plugin (like all-skills) that bundles related plugins
  • Use namespace prefixes for dependencies (e.g., all-skills:core)

Strict Mode Decision

Use strict: false when:

  • Creating simple, self-contained plugins
  • All configuration is in marketplace.json
  • You want centralized management
  • Plugin is unlikely to be distributed independently

Use strict: true when:

  • Plugin has complex configuration
  • Plugin may be distributed separately
  • Plugin has its own versioning lifecycle
  • You want to supplement existing plugin.json with marketplace metadata

Source Path Organization

{
  "metadata": {
    "pluginRoot": "./plugins"
  },
  "plugins": [
    {
      "name": "core",
      "source": "core"  // Resolves to ./plugins/core
    },
    {
      "name": "external",
      "source": {
        "source": "github",
        "repo": "org/repo"
      }
    }
  ]
}

Common Validation Errors

Error: Invalid kebab-case name

// ❌ Invalid
"name": "myPlugin"
"name": "my_plugin"
"name": "My-Plugin"

// ✅ Valid
"name": "my-plugin"
"name": "core-skills"

Error: Missing required owner field

// ❌ Invalid
{
  "name": "marketplace"
}

// ✅ Valid
{
  "name": "marketplace",
  "owner": {
    "name": "Developer Name"
  }
}

Error: Invalid source path

// ❌ Invalid (path doesn't exist)
"source": "./plugins/nonexistent"

// ✅ Valid (path exists)
"source": "./plugins/core"

Error: Circular dependencies

// ❌ Invalid
{
  "plugins": [
    {
      "name": "plugin-a",
      "dependencies": ["namespace:plugin-b"]
    },
    {
      "name": "plugin-b",
      "dependencies": ["namespace:plugin-a"]
    }
  ]
}

Creating a New Marketplace

Step 1: Initialize Structure

mkdir -p .claude-plugin

Step 2: Create Marketplace File

Use the validation script to generate a template:

nu ${CLAUDE_PLUGIN_ROOT}/scripts/init-marketplace.nu

This creates .claude-plugin/marketplace.json with required fields.

Step 3: Add Plugin Entries

For each plugin, decide on strict mode and add entry:

{
  "name": "marketplace-name",
  "owner": {
    "name": "Your Name",
    "email": "you@example.com"
  },
  "metadata": {
    "description": "Your marketplace description",
    "version": "1.0.0",
    "pluginRoot": "./plugins"
  },
  "plugins": [
    {
      "name": "plugin-name",
      "source": "plugin-name",
      "strict": false,
      "description": "Plugin description",
      "version": "1.0.0",
      "author": {
        "name": "Your Name"
      },
      "license": "MIT",
      "category": "development",
      "skills": [
        "${CLAUDE_PLUGIN_ROOT}/skills/skill-one"
      ]
    }
  ]
}

Step 4: Validate

nu ${CLAUDE_PLUGIN_ROOT}/scripts/validate-marketplace.nu .claude-plugin/marketplace.json

Step 5: Test Installation

claude-code install ./

Migrating Existing Plugins

From Individual Plugins to Marketplace

  1. Identify plugins: List all plugin.json files
  2. Decide on strict mode: Choose per plugin based on complexity
  3. Create marketplace.json: Add all plugins with appropriate configuration
  4. Test each plugin: Verify installation works correctly
  5. Document dependencies: Add dependency arrays where needed

Migration Script

Use the provided script to analyze existing structure:

nu ${CLAUDE_PLUGIN_ROOT}/scripts/analyze-plugins.nu .

This scans for plugin.json files and suggests marketplace.json structure.

Troubleshooting

Plugin Not Found After Installation

  • Verify source path is correct
  • Check pluginRoot in metadata if using relative paths
  • Ensure plugin directory exists at specified location

Skills Not Loading

  • Verify skill paths use ${CLAUDE_PLUGIN_ROOT} if needed
  • Check that skill directories contain SKILL.md files
  • Validate skill paths in plugin entry or plugin.json

Dependency Resolution Fails

  • Ensure dependency names match exactly (including namespace)
  • Check that all dependencies are listed in marketplace
  • Verify no circular dependencies exist

Validation Errors

Run validation script with verbose mode:

nu ${CLAUDE_PLUGIN_ROOT}/scripts/validate-marketplace.nu .claude-plugin/marketplace.json --verbose

References

For detailed schema specifications and examples, see:

  • references/schema-specification.md: Complete JSON schema
  • references/examples.md: Real-world marketplace examples
  • references/migration-guide.md: Step-by-step migration instructions

Script Usage

All validation and utility scripts are located in scripts/:

  • validate-marketplace.nu: Full marketplace validation
  • validate-plugin-entry.nu: Individual plugin entry validation
  • validate-dependencies.nu: Dependency graph validation
  • init-marketplace.nu: Generate marketplace template
  • analyze-plugins.nu: Analyze existing plugin structure
  • format-marketplace.nu: Format and sort marketplace.json

Execute scripts with:

nu ${CLAUDE_PLUGIN_ROOT}/scripts/[script-name].nu [args]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.21%
按下载量换算22

Claude

29.87%
按下载量换算19

Cursor

16.12%
按下载量换算10

Gemini CLI

9.71%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills