plugin-search
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSkill and Plugin Search
Skill与插件搜索
Instructions
说明
Use the script to find relevant Claude Code plugins that match the user's requirements.
<SKILL_BASE_DIR>/scripts/search_plugins.py使用脚本查找符合用户需求的相关Claude Code插件。
<SKILL_BASE_DIR>/scripts/search_plugins.pyWorkflow
工作流程
-
List all plugins - Get a compact overview:bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py --allThis shows all available plugins in compact format (name, category, description). -
Choose top matches - Select up to 5 most relevant plugins based on user's needs
-
Get detailed information - Usewith plugin names for installation instructions:
-dbashpython <SKILL_BASE_DIR>/scripts/search_plugins.py -d notion linear githubOr search first, then get details:bashpython <SKILL_BASE_DIR>/scripts/search_plugins.py -q "database" -d -
Prioritise the reccomendations - Suggest upto 3 plugins based on users needs and other applicable factors eg: number of skills, commands, MCP, Github stars
-
列出所有插件 - 获取简洁概览:bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py --all此命令会以简洁格式(名称、分类、描述)展示所有可用插件。 -
选择最匹配的插件 - 根据用户需求选择最多5个最相关的插件
-
获取详细信息 - 使用参数搭配插件名称获取安装说明:
-dbashpython <SKILL_BASE_DIR>/scripts/search_plugins.py -d notion linear github或者先搜索再获取详情:bashpython <SKILL_BASE_DIR>/scripts/search_plugins.py -q "database" -d -
优先推荐 - 根据用户需求及其他相关因素(如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 --allbash
python <SKILL_BASE_DIR>/scripts/search_plugins.py --allGet detailed info for specific plugins
获取特定插件的详细信息
bash
python <SKILL_BASE_DIR>/scripts/search_plugins.py -d notion linear githubbash
python <SKILL_BASE_DIR>/scripts/search_plugins.py -d notion linear githubSearch 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 when recommending plugins to provide installation instructions
-d plugin1 plugin2 plugin3 - Check marketplaces: Use to see all available marketplaces and categories
--list - Filter effectively: Combine and
-mto narrow results (e.g.,-c)--all -m anthropics-skills -c productivity
- 始终先使用命令,再进一步筛选
--all - 如果用户需求不明确,可使用AskUserQuestion工具并提供几个选项来消除歧义
- 推荐时使用-d参数:推荐插件时务必使用以提供安装说明
-d plugin1 plugin2 plugin3 - 查看市场:使用查看所有可用市场和分类
--list - 高效筛选:结合和
-m缩小结果范围(例如:-c)--all -m anthropics-skills -c productivity