Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

plugin-master插件大师

Agent Skill

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

总安装

2,040

周安装

85

GitHub Stars

33

下载量

680
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

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

简介

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

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

SKILL.md

Plugin Development Guide

Quick Reference

ComponentLocationRequired
Plugin manifest.claude-plugin/plugin.jsonYes
Commandscommands/*.mdNo (auto-discovered)
Agentsagents/*.mdNo (auto-discovered)
Skillsskills/*/SKILL.mdNo (auto-discovered)
Hookshooks/hooks.jsonNo
MCP Servers.mcp.jsonNo
TaskAction
Create pluginAsk: "Create a plugin for X"
Validate pluginRun: /validate-plugin
Install from marketplace/plugin marketplace add user/repo then /plugin install name@user

Critical Rules

Directory Structure

plugin-name/
├── .claude-plugin/
│   └── plugin.json          # MUST be inside .claude-plugin/
├── agents/
│   └── domain-expert.md
├── commands/
├── skills/
│   └── skill-name/
│       ├── SKILL.md
│       ├── references/
│       └── examples/
└── README.md

Plugin.json Schema

{
  "name": "plugin-name",
  "version": "1.0.0",
  "description": "Complete [domain] expertise. PROACTIVELY activate for: (1) ...",
  "author": {
    "name": "Author Name",
    "email": "email@example.com"
  },
  "license": "MIT",
  "keywords": ["keyword1", "keyword2"]
}

Validation Rules:

  • author MUST be an object {"name": "..."} - NOT a string
  • version MUST be a string "1.0.0" - NOT a number
  • keywords MUST be an array ["word1", "word2"] - NOT a string
  • Do NOT include agents, skills, slashCommands - these are auto-discovered

YAML Frontmatter (REQUIRED)

ALL markdown files in agents/, commands/, skills/ MUST begin with frontmatter:

---
description: Brief description of what this component does
---

# Content...

Without frontmatter, components will NOT load.

Plugin Design Philosophy (2025)

Agent-First Design

  • Primary interface: ONE expert agent named {domain}-expert
  • Minimal commands: Only 0-2 for automation workflows
  • Why: Users want conversational interaction, not command menus

Naming Standard:

  • docker-master → agent named docker-expert
  • terraform-master → agent named terraform-expert

Progressive Disclosure for Skills

Skills use three-tier loading:

  1. Frontmatter - Loaded at startup for triggering
  2. SKILL.md body - Loaded when skill activates
  3. references/ - Loaded only when specific detail needed

This enables unbounded capacity without context bloat.

Creating a Plugin

Step 1: Detect Repository Context

Before creating files, check:

# Check if in marketplace repo
if [[ -f .claude-plugin/marketplace.json ]]; then
    PLUGIN_DIR="plugins/PLUGIN_NAME"
else
    PLUGIN_DIR="PLUGIN_NAME"
fi

# Get author from git config
AUTHOR_NAME=$(git config user.name)
AUTHOR_EMAIL=$(git config user.email)

Step 2: Create Structure

mkdir -p $PLUGIN_DIR/.claude-plugin
mkdir -p $PLUGIN_DIR/agents
mkdir -p $PLUGIN_DIR/skills/domain-knowledge

Step 3: Create Files

  1. plugin.json - Manifest with metadata
  2. agents/domain-expert.md - Primary expert agent
  3. skills/domain-knowledge/SKILL.md - Core knowledge
  4. README.md - Documentation

Step 4: Register in Marketplace

CRITICAL: If .claude-plugin/marketplace.json exists at repo root, you MUST add the plugin:

{
  "plugins": [
    {
      "name": "plugin-name",
      "source": "./plugins/plugin-name",
      "description": "Same as plugin.json description",
      "version": "1.0.0",
      "author": { "name": "Author" },
      "keywords": ["same", "as", "plugin.json"]
    }
  ]
}

Component Types

Commands

User-initiated slash commands in commands/*.md:

---
description: What this command does
---

# Command Name

Instructions for Claude to execute...

Agents

Autonomous subagents in agents/*.md:

---
name: agent-name
description: |
  Use this agent when... Examples:
  <example>
  Context: ...
  user: "..."
  assistant: "..."
  <commentary>Why trigger</commentary>
  </example>
model: inherit
color: blue
---

System prompt for agent...

Skills

Dynamic knowledge in skills/skill-name/SKILL.md:

---
name: skill-name
description: When to use this skill...
---

# Skill content with progressive disclosure...

Hooks

Event automation in hooks/hooks.json:

{
  "PostToolUse": [{
    "matcher": "Write|Edit",
    "hooks": [{
      "type": "command",
      "command": "${CLAUDE_PLUGIN_ROOT}/scripts/lint.sh"
    }]
  }]
}

Events: PreToolUse, PostToolUse, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification, Stop, SubagentStop

Best Practices

Naming Conventions

  • Plugins: kebab-case (e.g., code-review-helper)
  • Commands: verb-based (e.g., review-pr, run-tests)
  • Agents: role-based (e.g., code-reviewer, test-generator)
  • Skills: topic-based (e.g., api-design, error-handling)

Portability

Use ${CLAUDE_PLUGIN_ROOT} for all internal paths:

"command": "${CLAUDE_PLUGIN_ROOT}/scripts/run.sh"

Never use hardcoded absolute paths.

Platform Notes

  • Windows: Use GitHub marketplace installation (local paths may fail)
  • Git Bash/MinGW: Detect with $MSYSTEM, use GitHub method
  • Mac/Linux: All installation methods work

Troubleshooting

IssueSolution
Plugin not loadingCheck plugin.json is in .claude-plugin/
Commands missingVerify frontmatter has description field
Agent not triggeringAdd <example> blocks to description
Marketplace not foundEnsure repo is public, check path in marketplace.json

Additional Resources

For detailed information, see:

  • references/manifest-reference.md - Complete plugin.json fields
  • references/component-patterns.md - Advanced component patterns
  • references/publishing-guide.md - Marketplace publishing details
  • examples/minimal-plugin.md - Simplest working plugin
  • examples/full-plugin.md - Complete plugin with all features

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.2%
按下载量换算192

OpenCode

22.08%
按下载量换算150

Antigravity

16.3%
按下载量换算111

Gemini CLI

11.97%
按下载量换算81

windsurf

7.42%
按下载量换算50

Cursor

3.31%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills