Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

claude-pluginsClaude plugins 搜索

Agent Skill

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

总安装

222

周安装

9

GitHub Stars

17

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息,适配多种宿主环境。

  • 支持基于关键词或任务场景快速定位内容。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 通过 npx skills add 命令从 GitHub 仓库安装使用。
  • 安装前应确认权限及是否触发联网或文件操作。
  • claude-plugins 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Claude Code Plugin

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

When to Use This Skill

Activate this skill when:

  • Creating or editing .claude-plugin/plugin.json files
  • Validating plugin.json schema compliance
  • Setting up new plugin directories
  • Troubleshooting plugin configuration issues
  • Understanding plugin manifest structure

Plugin Manifest Schema

File Location

All plugin manifests must be located at .claude-plugin/plugin.json within the plugin directory.

Complete Schema

{
  "name": "plugin-name",
  "version": "1.2.0",
  "description": "Brief plugin description",
  "author": {
    "name": "Author Name",
    "email": "author@example.com",
    "url": "https://github.com/author"
  },
  "homepage": "https://docs.example.com/plugin",
  "repository": "https://github.com/author/plugin",
  "license": "MIT",
  "keywords": ["keyword1", "keyword2"],
  "commands": ["./custom/commands/special.md"],
  "agents": "./custom/agents/",
  "hooks": "./config/hooks.json",
  "mcpServers": "./mcp-config.json",
  "skills": ["./skills/skill-one", "./skills/skill-two"]
}

Required Fields

  • name: Plugin identifier (kebab-case, lowercase alphanumeric and hyphens only)

Optional Fields

Metadata:

  • version: Semantic version number (recommended)
  • description: Brief explanation of plugin functionality
  • license: SPDX license identifier (e.g., MIT, Apache-2.0)
  • keywords: Array of searchability and categorization tags
  • homepage: Documentation or project URL
  • repository: Source control URL

Author Information:

  • author.name: Creator name
  • author.email: Contact email
  • author.url: Personal or organization website

Component Paths:

  • skills: Array of skill directory paths (relative to plugin root)
  • commands: String path or array of command file/directory paths
  • agents: String path or array of agent file paths
  • hooks: String path to hooks.json or hooks configuration object
  • mcpServers: String path to MCP config or configuration object

Convention-Based Directories (no plugin.json field required):

  • output-styles/: Markdown output style files discovered when plugin is installed (see claude-output-styles skill)

Field Validation Rules

name

  • Format: kebab-case (lowercase alphanumeric and hyphens only)
  • Pattern: ^[a-z0-9]+(-[a-z0-9]+)*$
  • Examples:

- Valid: my-plugin, core-skills, elixir-tools - Invalid: myPlugin, my_plugin, My-Plugin, plugin-

version

  • Format: Semantic versioning
  • Pattern: ^[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9.-]+)?(\+[a-zA-Z0-9.-]+)?$
  • Examples:

- Valid: 1.0.0, 2.1.3, 1.0.0-beta.1, 1.0.0+build.123 - Invalid: 1.0, v1.0.0, 1.0.0.0

license

keywords

  • Format: Array of strings
  • Purpose: Discoverability, searchability, categorization
  • Recommendations: Use lowercase, be specific, include domain terms

Paths (skills, commands, agents, hooks, mcpServers)

  • Format: Relative paths from plugin root
  • Recommendations: Use ./ prefix for clarity
  • Skills: Array of directory paths containing SKILL.md files
  • Commands: Can be string (single path) or array of paths
  • Agents: Can be string (directory) or array of file paths

Invalid Fields in plugin.json

The following fields are only valid in marketplace.json entries and must NOT appear in plugin.json:

  • dependencies: Dependencies belong in marketplace entries, not plugin manifests
  • category: Categorization is marketplace-level metadata
  • strict: Controls marketplace behavior, not plugin definition
  • source: Plugin location is defined in marketplace, not in plugin itself
  • tags: Use keywords instead

Validation Workflow

1. Schema Validation

Use the provided Nushell script to validate plugin.json:

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

This validates:

  • JSON syntax
  • Required field presence (name)
  • Kebab-case naming
  • Field type correctness
  • Path accessibility (for relative paths)
  • Invalid field detection

2. Path Validation

Validate that referenced paths exist:

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

Checks:

  • Skills directories exist and contain SKILL.md
  • Command files/directories exist
  • Agent files/directories exist
  • Hooks configuration exists
  • MCP server configuration exists

3. Initialization Helper

Generate a template plugin.json:

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

Creates .claude-plugin/plugin.json with proper structure.

Best Practices

Naming Conventions

  • Plugin name: Use descriptive kebab-case (e.g., elixir-phoenix, rust-tools, core-skills)
  • Avoid generic names: Be specific about the plugin's purpose
  • Match directory name: Plugin name should match its directory name

Versioning Strategy

  • Use semantic versioning (MAJOR.MINOR.PATCH)
  • Increment MAJOR for breaking changes
  • Increment MINOR for new features (backward compatible)
  • Increment PATCH for bug fixes
  • Use pre-release tags for beta versions (1.0.0-beta.1)

Path Organization

Recommended structure:

plugin-name/
├── .claude-plugin/
│   └── plugin.json
├── skills/
│   ├── skill-one/
│   └── skill-two/
├── commands/
├── agents/
└── output-styles/

In plugin.json:

{
  "skills": [
    "./skills/skill-one",
    "./skills/skill-two"
  ],
  "commands": ["./commands"],
  "agents": ["./agents"]
}

Metadata Completeness

Always include:

  • version: Track plugin evolution
  • description: Help users understand purpose
  • license: Clarify usage terms
  • keywords: Improve discoverability
  • repository: Enable contributions

Author Information

Include contact information for:

  • Bug reports
  • Feature requests
  • Contributions
  • Questions

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: Invalid field for plugin.json

// ❌ Invalid (dependencies only in marketplace.json)
{
  "name": "my-plugin",
  "dependencies": ["other-plugin"]
}

// ✅ Valid
{
  "name": "my-plugin",
  "keywords": ["tool", "utility"]
}

Error: Skill path doesn't exist

// ❌ Invalid (path not found)
"skills": ["./skills/nonexistent"]

// ✅ Valid (path exists with SKILL.md)
"skills": ["./skills/my-skill"]

Error: Invalid version format

// ❌ Invalid
"version": "1.0"
"version": "v1.0.0"

// ✅ Valid
"version": "1.0.0"
"version": "2.1.3-beta.1"

Creating a New Plugin

Step 1: Initialize Directory Structure

mkdir -p my-plugin/.claude-plugin
mkdir -p my-plugin/skills

Step 2: Create plugin.json

Use the initialization script:

cd my-plugin
nu ${CLAUDE_PLUGIN_ROOT}/scripts/init-plugin.nu

Or create manually:

{
  "name": "my-plugin",
  "version": "0.1.0",
  "description": "My plugin description",
  "author": {
    "name": "Your Name"
  },
  "license": "MIT",
  "keywords": ["keyword1", "keyword2"],
  "skills": []
}

Step 3: Add Skills

  1. Create skill directory: mkdir -p skills/my-skill
  2. Create SKILL.md in skill directory
  3. Add to plugin.json:
{
  "skills": ["./skills/my-skill"]
}

Step 4: Validate

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

Step 5: Test

Install locally to test:

claude-code install ./

Hooks Configuration

Hooks can be inline or referenced:

Inline:

{
  "hooks": {
    "onInstall": "./scripts/install.sh",
    "onUninstall": "./scripts/uninstall.sh"
  }
}

Referenced:

{
  "hooks": "./config/hooks.json"
}

MCP Servers Configuration

MCP servers can be inline or referenced:

Inline:

{
  "mcpServers": {
    "filesystem": {
      "command": "mcp-server-filesystem",
      "args": ["./workspace"]
    }
  }
}

Referenced:

{
  "mcpServers": "./mcp-config.json"
}

Troubleshooting

Plugin Not Loading

  • Verify plugin.json exists at .claude-plugin/plugin.json
  • Check JSON syntax is valid
  • Ensure name field is present and kebab-case
  • Validate all path references exist

Skills Not Found

  • Check skill paths in plugin.json match actual directories
  • Ensure each skill directory contains SKILL.md file
  • Verify paths use relative format (./skills/name)

Commands Not Appearing

  • Verify command paths exist
  • Check commands are.md files or directories containing.md files
  • Ensure paths are relative to plugin root

Validation Fails

Run validation with verbose output:

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

References

For detailed schema specifications and examples, see:

  • references/plugin-schema.md: Complete JSON schema specification
  • references/plugin-examples.md: Real-world plugin.json examples

Script Usage

All validation and utility scripts are located in scripts/:

  • validate-plugin.nu: Complete plugin.json validation
  • validate-plugin-paths.nu: Verify all referenced paths exist
  • init-plugin.nu: Generate plugin.json template
  • format-plugin.nu: Format and sort plugin.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.11%
按下载量换算25

Claude

30.31%
按下载量换算21

Cursor

19.76%
按下载量换算14

Gemini CLI

10.68%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills