plugin-search

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Skill and Plugin Search

Skill与插件搜索

Instructions

说明

Use the
<SKILL_BASE_DIR>/scripts/search_plugins.py
script to find relevant Claude Code plugins that match the user's requirements.
使用
<SKILL_BASE_DIR>/scripts/search_plugins.py
脚本查找符合用户需求的相关Claude Code插件。

Workflow

工作流程

  1. List all plugins - Get a compact overview:
    bash
    python <SKILL_BASE_DIR>/scripts/search_plugins.py --all
    This shows all available plugins in compact format (name, category, description).
  2. Choose top matches - Select up to 5 most relevant plugins based on user's needs
  3. Get detailed information - Use
    -d
    with plugin names for installation instructions:
    bash
    python <SKILL_BASE_DIR>/scripts/search_plugins.py -d notion linear github
    Or search first, then get details:
    bash
    python <SKILL_BASE_DIR>/scripts/search_plugins.py -q "database" -d
  4. Prioritise the reccomendations - Suggest upto 3 plugins based on users needs and other applicable factors eg: number of skills, commands, MCP, Github stars
  1. 列出所有插件 - 获取简洁概览:
    bash
    python <SKILL_BASE_DIR>/scripts/search_plugins.py --all
    此命令会以简洁格式(名称、分类、描述)展示所有可用插件。
  2. 选择最匹配的插件 - 根据用户需求选择最多5个最相关的插件
  3. 获取详细信息 - 使用
    -d
    参数搭配插件名称获取安装说明:
    bash
    python <SKILL_BASE_DIR>/scripts/search_plugins.py -d notion linear github
    或者先搜索再获取详情:
    bash
    python <SKILL_BASE_DIR>/scripts/search_plugins.py -q "database" -d
  4. 优先推荐 - 根据用户需求及其他相关因素(如Skill数量、命令数、MCP、GitHub星标数等),建议最多3个插件

Recommendation Template

推荐模板

When recommending plugins to users, use this format:
Based on your needs, here are the top matches:

1. Acme (productivity)
   ⭐ Stars: 6 | 🔌 MCP: Yes | 📜 Commands: 6 | 🎯 Skills: 4 | 🕐 Last Updated: 2025-12-22

   Perfect for meeting documentation with the meeting-intelligence skill. Also includes:
   - knowledge-capture, research-documentation, spec-to-implementation skills
   - 6 commands for creating pages, databases, tasks, and querying

   Installation:
   /plugin marketplace add anthropics/claude-plugins-official
   /plugin install acme@claude-plugins-official

   Homepage: https://github.com/makenotion/claude-code-acme-plugin

2. [Next plugin...]
向用户推荐插件时,请使用以下格式:
根据你的需求,以下是最匹配的插件:

1. Acme (生产力类)
   ⭐ 星标数: 6 | 🔌 MCP: 是 | 📜 命令数: 6 | 🎯 Skill数: 4 | 🕐 最后更新: 2025-12-22

   搭配meeting-intelligence Skill非常适合会议文档处理。还包含:
   - knowledge-capture、research-documentation、spec-to-implementation等Skill
   - 6个用于创建页面、数据库、任务及查询的命令

   安装方式:
   /plugin marketplace add anthropics/claude-plugins-official
   /plugin install acme@claude-plugins-official

   主页: https://github.com/makenotion/claude-code-acme-plugin

2. [下一个插件...]

Examples

示例

Get plugins overview

获取插件概览

bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py --all
bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py --all

Get detailed info for specific plugins

获取特定插件的详细信息

bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py -d notion linear github
bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py -d notion linear github

Search with multiple terms (Advanced search query: searchs name, description, keywords, category, tags )

使用多个关键词搜索(高级搜索:搜索名称、描述、关键词、分类、标签)

bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py -q "git github workflow"
Finds plugins matching "git" OR "github" OR "workflow"
bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py -q "git github workflow"
查找匹配“git”或“github”或“workflow”的插件

Tips

提示

  • Always start with --all and then refine further
  • If user requiremets are unclear you can ask a question with the AskUserQuestion tool and a few options to clear the ambiguity
  • Use -d for recommendations: Always use
    -d plugin1 plugin2 plugin3
    when recommending plugins to provide installation instructions
  • Check marketplaces: Use
    --list
    to see all available marketplaces and categories
  • Filter effectively: Combine
    -m
    and
    -c
    to narrow results (e.g.,
    --all -m anthropics-skills -c productivity
    )
  • 始终先使用
    --all
    命令,再进一步筛选
  • 如果用户需求不明确,可使用AskUserQuestion工具并提供几个选项来消除歧义
  • 推荐时使用-d参数:推荐插件时务必使用
    -d plugin1 plugin2 plugin3
    以提供安装说明
  • 查看市场:使用
    --list
    查看所有可用市场和分类
  • 高效筛选:结合
    -m
    -c
    缩小结果范围(例如:
    --all -m anthropics-skills -c productivity