tools-skill-lookup
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseWhen the user needs Agent Skills, wants to extend Claude's capabilities, or is looking for reusable AI agent components, use the prompts.chat MCP server.
当用户需要Agent Skills、想要扩展Claude的能力,或是寻找可复用的AI Agent组件时,请使用prompts.chat MCP服务器。
When to Use This Skill
何时使用此技能
Activate this skill when the user:
- Asks for Agent Skills ("Find me a code review skill")
- Wants to search for skills ("What skills are available for testing?")
- Needs to retrieve a specific skill ("Get skill XYZ")
- Wants to install a skill ("Install the documentation skill")
- Mentions extending Claude's capabilities with skills
在以下场景激活此技能:
- 用户询问Agent Skills(例如:“帮我找一个代码审查技能”)
- 用户想要搜索技能(例如:“有哪些适用于测试的技能?”)
- 用户需要获取特定技能(例如:“获取技能XYZ”)
- 用户想要安装技能(例如:“安装文档处理技能”)
- 用户提及要用技能扩展Claude的能力
Available Tools
可用工具
Use these prompts.chat MCP tools:
- - Search for skills by keyword
search_skills - - Get a specific skill by ID with all its files
get_skill
使用以下prompts.chat MCP工具:
- - 通过关键词搜索技能
search_skills - - 通过ID获取特定技能及其所有文件
get_skill
How to Search for Skills
如何搜索技能
Call with:
search_skills- : The search keywords from the user's request
query - : Number of results (default 10, max 50)
limit - : Filter by category slug (e.g., "coding", "automation")
category - : Filter by tag slug
tag
Present results showing:
- Title and description
- Author name
- File list (SKILL.md, reference docs, scripts)
- Category and tags
- Link to the skill
调用时需传入:
search_skills- : 用户请求中的搜索关键词
query - : 结果数量(默认10,最大50)
limit - : 按分类别名筛选(例如:“coding”、“automation”)
category - : 按标签别名筛选
tag
展示结果时需包含:
- 标题与描述
- 作者名称
- 文件列表(SKILL.md、参考文档、脚本)
- 分类与标签
- 技能链接
How to Get a Skill
如何获取技能
Call with:
get_skill- : The skill ID
id
Returns the skill metadata and all file contents:
- SKILL.md (main instructions)
- Reference documentation
- Helper scripts
- Configuration files
调用时需传入:
get_skill- : 技能ID
id
返回结果包含技能元数据及所有文件内容:
- SKILL.md(主说明文档)
- 参考文档
- 辅助脚本
- 配置文件
How to Install a Skill
如何安装技能
When the user asks to install a skill:
- Call to retrieve all files
get_skill - Create the directory
.claude/skills/{slug}/ - Save each file to the appropriate location:
- →
SKILL.md.claude/skills/{slug}/SKILL.md - Other files →
.claude/skills/{slug}/{filename}
当用户要求安装技能时:
- 调用获取所有文件
get_skill - 创建目录
.claude/skills/{slug}/ - 将每个文件保存到对应位置:
- →
SKILL.md.claude/skills/{slug}/SKILL.md - 其他文件 →
.claude/skills/{slug}/{filename}
Skill Structure
技能结构
Skills contain:
- SKILL.md (required) - Main instructions with frontmatter
- Reference docs - Additional documentation files
- Scripts - Helper scripts (Python, shell, etc.)
- Config files - JSON, YAML configurations
技能包含以下内容:
- SKILL.md(必填)- 包含前置元数据的主说明文档
- 参考文档 - 额外的文档文件
- 脚本 - 辅助脚本(Python、Shell等)
- 配置文件 - JSON、YAML格式的配置文件
Guidelines
指南
- Always search before suggesting the user create their own skill
- Present search results in a readable format with file counts
- When installing, confirm the skill was saved successfully
- Explain what the skill does and when it activates
- 在建议用户自行创建技能前,务必先进行搜索
- 以易读格式展示搜索结果,包含文件数量
- 安装完成后,确认技能已成功保存
- 说明技能的功能及触发场景