Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计通过

plugin-creator插件创建者

Agent Skill

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

总安装

661

周安装

27

GitHub Stars

2,083

下载量

212
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill plugin-creator

简介

plugin-creator 处理 GitHub 仓库、Issue 和 Pull Request 信息,支持协作管理。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中跟踪代码变更与项目状态。
  • 通过 GitHub 安装,建议参考原始文档了解输入格式与输出结构。
  • 使用前需确认 API 权限范围,避免越权访问敏感仓库或数据。
  • 维护状态不稳定时,应限制其在关键流程中的调用频率。

SKILL.md

Plugin Creator

Overview

Scaffolds new Claude Code plugins with proper directory structure, required files, marketplace catalog integration, and full validation. Supports all plugin types: command plugins, agent plugins, skill plugins, MCP server plugins, and hybrid combinations.

Prerequisites

  • Write access to the plugins/ directory and .claude-plugin/marketplace.extended.json
  • jq installed for JSON generation and validation
  • pnpm run sync-marketplace available at the repository root
  • ./scripts/validate-all-plugins.sh available for post-creation validation

Instructions

  1. Gather requirements from the user request: plugin name (kebab-case), category (productivity, security, devops, testing, etc.), plugin type (commands, agents, skills, MCP, or combination), description, and keywords. Default author to the repository owner if unspecified (see ${CLAUDE_SKILL_DIR}/references/plugin-creation-process.md).
  2. Create the plugin directory structure under plugins/[category]/[plugin-name]/: plugins/[category]/[plugin-name]/ ├──.claude-plugin/ │ └── plugin.json ├── README.md ├── LICENSE └── [commands/ | agents/ | skills/ | hooks/ | mcp/]
  3. Generate .claude-plugin/plugin.json using the template from ${CLAUDE_SKILL_DIR}/references/file-templates.md. Populate all required fields: name, version (default 1.0.0), description, author (name and email), repository, license (default MIT), and keywords (minimum 2).
  4. Generate README.md with installation instructions, usage examples, a description section, and contributor information.
  5. Create a LICENSE file with MIT license text (or the specified license).
  6. Generate component files based on the plugin type:

- Commands: create commands/[command-name].md with proper YAML frontmatter (name, description, model). - Agents: create agents/[agent-name].md with YAML frontmatter including model field. - Skills: create skills/[skill-name]/SKILL.md with frontmatter (name, description, allowed-tools). - MCP: create package.json, tsconfig.json, src/index.ts, and .mcp.json.

  1. Add the new plugin entry to .claude-plugin/marketplace.extended.json with matching name, version, category, description, source path, and keywords.
  2. Run pnpm run sync-marketplace to regenerate marketplace.json.
  3. Validate the new plugin by running ./scripts/validate-all-plugins.sh plugins/[category]/[plugin-name]/. Fix any reported issues before completion.

Output

A complete, CI-ready plugin containing:

  • All required files (plugin.json, README.md, LICENSE)
  • Component files matching the requested plugin type with proper frontmatter
  • Marketplace catalog entry in marketplace.extended.json
  • Synchronized marketplace.json
  • Validation confirmation from validate-all-plugins.sh

Error Handling

ErrorCauseSolution
Plugin name already existsDuplicate name in plugins/ directory or marketplace catalogChoose a unique name; check existing plugins with ls plugins/*/
Invalid categoryCategory not recognized by marketplace schemaUse one of the valid categories: productivity, security, devops, testing, community, examples, packages, mcp
JSON syntax error in generated filesMalformed template outputRun jq empty on each generated JSON file and fix syntax
Marketplace sync failureNew entry has schema violationsVerify all required fields are present in the marketplace.extended.json entry
Validation script failureMissing required files or incorrect structureReview the validation output and create/fix the flagged files

Examples

Create a command plugin: Trigger: "Create a new security plugin called 'owasp-scanner' with commands." Process: Create plugins/security/owasp-scanner/ directory, generate plugin.json, README.md, LICENSE, and commands/scan.md with proper frontmatter. Add to marketplace, sync, validate (see ${CLAUDE_SKILL_DIR}/references/examples.md).

Scaffold a skills plugin: Trigger: "Scaffold a skills plugin for code review." Process: Create plugin directory with skills/code-review/SKILL.md containing trigger keywords for code review tasks. Generate plugin.json with appropriate keywords. Add to marketplace, sync, validate.

Create an MCP server plugin: Trigger: "Create a new MCP plugin for database queries." Process: Create plugins/mcp/db-query/ with package.json (including @modelcontextprotocol/sdk dependency), tsconfig.json, src/index.ts, .mcp.json, and standard files. Add to marketplace, sync, validate.

Resources

  • ${CLAUDE_SKILL_DIR}/references/plugin-creation-process.md -- detailed creation workflow
  • ${CLAUDE_SKILL_DIR}/references/file-templates.md -- templates for plugin.json, commands, agents, and skills
  • ${CLAUDE_SKILL_DIR}/references/examples.md -- creation scenario walkthroughs
  • ${CLAUDE_SKILL_DIR}/references/errors.md -- error handling patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.74%
按下载量换算72

Claude

32.47%
按下载量换算69

Cursor

20.54%
按下载量换算44

Gemini CLI

9.46%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills