skill-lookup

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese
When 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_skills
    - Search for skills by keyword
  • get_skill
    - Get a specific skill by ID with all its files
使用以下prompts.chat MCP工具:
  • search_skills
    - 通过关键词搜索技能
  • get_skill
    - 通过ID获取特定技能及其所有文件

How to Search for Skills

如何搜索技能

Call
search_skills
with:
  • query
    : The search keywords from the user's request
  • limit
    : Number of results (default 10, max 50)
  • category
    : Filter by category slug (e.g., "coding", "automation")
  • tag
    : Filter by tag slug
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
    :用户请求中的搜索关键词
  • limit
    :结果数量(默认10条,最多50条)
  • category
    :按分类别名过滤(例如:“coding”、“automation”)
  • tag
    :按标签别名过滤
展示结果时需包含:
  • 标题和描述
  • 作者姓名
  • 文件列表(SKILL.md、参考文档、脚本)
  • 分类和标签
  • 技能链接

How to Get a Skill

如何获取技能

Call
get_skill
with:
  • id
    : The skill 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:
  1. Call
    get_skill
    to retrieve all files
  2. Create the directory
    .claude/skills/{slug}/
  3. Save each file to the appropriate location:
    • SKILL.md
      .claude/skills/{slug}/SKILL.md
    • Other files →
      .claude/skills/{slug}/{filename}
当用户要求安装技能时:
  1. 调用
    get_skill
    获取所有文件
  2. 创建目录
    .claude/skills/{slug}/
  3. 将每个文件保存到对应位置:
    • 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
  • 在建议用户创建自定义技能之前,务必先进行搜索
  • 以易读的格式展示搜索结果,并标注文件数量
  • 安装完成后,确认技能已成功保存
  • 说明该技能的功能以及触发条件