Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计异常

reviewing-plugin-marketplace审查插件市场

Agent Skill

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

总安装

321

周安装

13

GitHub Stars

2

下载量

101
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/taisukeoe/agentic-ai-skills-creator --skill reviewing-plugin-marketplace

简介

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

  • 根据关键词或任务场景从来源仓库中获取线索,支持多种宿主环境。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • reviewing-plugin-marketplace 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Reviewing Plugin Marketplace Configurations

Comprehensive review of Claude Code plugin marketplace and plugin configurations against official best practices and common pitfalls.

Quick Start

Automated Review (Recommended)

Run the verification script:

bash scripts/verify-marketplace.sh [marketplace-directory]

This automatically checks:

  • marketplace.json structure
  • Skills paths validation
  • Git remote URL
  • README.md repository references
  • plugin.json presence (warns if exists)

Manual Review

  1. Ask user for marketplace directory (e.g., .claude-plugin/)
  2. Read marketplace.json and plugin.json (if exists)
  3. Check against official format and common errors
  4. Provide detailed feedback with priorities

Example review output:

## Critical Issues
- ❌ Repository URL mismatch: README.md uses "owner-a/repo" but marketplace.json uses "owner-b/repo"
- ❌ Source path "./.claude-plugin" does not exist

## Important Issues
- ⚠ plugin.json exists but Anthropic's official format uses marketplace.json only
- ⚠ Skills path "./skills/missing-skill" not found

## Compliance Score
- Structure: ✓ Valid JSON
- Required fields: ✓ Present
- Path validation: ✗ 2 invalid paths

Review Process

Step 1: Read Configuration Files

Read and analyze:

  • .claude-plugin/marketplace.json (required for marketplaces)
  • .claude-plugin/plugin.json (optional, check if present)
  • README.md (for repository URL consistency)
  • Git remote URL (if in git repository)

Step 2: Validate marketplace.json Structure

Required fields:

  • name - Marketplace identifier
  • owner.name - Owner name
  • plugins - Array of plugin definitions

Each plugin must have:

  • name - Plugin identifier
  • source - Source path (must start with ./, e.g., "./plugins/plugin-name")
  • description - What the plugin does

Recommended fields:

  • metadata.description - Marketplace description
  • metadata.version - Version number

Note: skills field specifies skills directory path (root-relative, e.g., "./plugins/plugin-name/skills/")

Optional fields (context-dependent):

  • strict: false - Only needed if plugins lack plugin.json files (see references/common-errors.md)

Step 3: Check Common Errors

Repository URL consistency:

  • Compare URLs in marketplace.json, plugin.json, README.md, git remote
  • All should point to the same repository
  • Common issue: Using organization name instead of personal username

Source path validation:

  • Verify source path exists
  • Must start with ./ (e.g., "./plugins/plugin-name")
  • Check that source directory contains skills/ subdirectory with SKILL.md files

Skills path validation:

  • Verify skills path exists (root-relative, e.g., "./plugins/plugin-name/skills/")
  • Directory should contain subdirectories with SKILL.md files

plugin.json conflicts:

  • Anthropic's official format uses marketplace.json only
  • Having both may cause confusion
  • If both exist, ensure names match

README.md consistency checks:

  • Skills documentation: Verify all skills in marketplace.json are documented in README.md

- Check "Skills Included" section lists each skill from the skills array - Each skill should have description and "Use when" guidance

  • Project Structure accuracy:

- If plugin.json mentioned in README but doesn't exist, suggest using marketplace.json - Verify structure diagram matches actual files in .claude-plugin/

  • Permissions section completeness:

- Check if README.md settings.json examples include all skills from marketplace.json - Example: "Skill(skill-name)" for each skill should be in permissions array

  • Repository references: Ensure consistent GitHub URLs across README installation examples

Step 4: Compare with Anthropic Format

See references/anthropic-format.md for official structure.

Key patterns from Anthropic:

  • marketplace.json at .claude-plugin/marketplace.json
  • No plugin.json (marketplace.json only)
  • source: "./plugins/plugin-name" pointing to plugin directory (must start with ./)
  • strict: false (optional - only needed when plugin.json is missing)
  • skills field specifies skills directory (root-relative path)

Step 5: Generate Feedback

Organize findings by priority:

Critical Issues (breaks functionality):

  • enabledPlugins format error (array instead of object)
  • Repository URL mismatch with git remote
  • Invalid source path (doesn't exist)
  • Missing required fields
  • Invalid JSON syntax

Important Issues (causes confusion):

  • Repository URL inconsistency across files
  • Invalid skills paths
  • Conflicting plugin.json and marketplace.json
  • Missing recommended fields

Suggestions (best practices):

  • Add metadata section (improves discoverability)
  • Add strict: false only if plugins lack plugin.json (otherwise no effect)
  • Follow Anthropic's single-file pattern
  • Explicit skills array

Common Issues Reference

See references/common-errors.md for detailed error patterns and solutions.

Top 3 issues from real experience (by actual impact):

  1. enabledPlugins format error ⚠️ BREAKS FUNCTIONALITY

- Error: Plugins don't load, no activation - Cause: Using array ["plugin@marketplace"] instead of object {"plugin@marketplace": true} - Fix: Change to object format in settings.json - This is the #1 cause of "plugin not working" issues

  1. Repository URL mismatch

- Error: Plugin 'name' not found in marketplace - Cause: README/settings use different owner than actual git remote - Fix: Ensure all URLs match git remote -v

  1. Wrong source path

- Error: Plugin 'name' not found - Cause: Source points to non-existent directory - Fix: Use "./" for root, verify path exists

Output Format

Structure review with these sections:

  • Summary: Overall assessment
  • Critical Issues: Must fix (with file:line references)
  • Important Issues: Should fix (with explanations)
  • Suggestions: Best practices alignment
  • Compliance Score: Quick visual assessment

Tips for Effective Reviews

Be Specific: Don't say "URL is wrong" - say "marketplace.json line 7 uses 'owner-a/repo' but git remote shows 'owner-b/repo'"

Verify Paths: Actually check if files/directories exist, don't just validate format

Check Consistency: Cross-reference all files that mention repository URLs

Use Official Examples: Compare against Anthropic's format at https://github.com/anthropics/skills

References

Anthropic Format: See references/anthropic-format.md for official marketplace.json structure

Common Errors: See references/common-errors.md for detailed error patterns and solutions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.45%
按下载量换算30

Codex

24.37%
按下载量换算25

Gemini CLI

17.33%
按下载量换算18

Antigravity

12.44%
按下载量换算13

OpenCode

7.75%
按下载量换算8

windsurf

3.9%
按下载量换算4

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills