skill-creator

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Skill Creator

Skill Creator

What a Skill Is

什么是Skill

A skill is a concise, task-focused guide that tells Claude how to perform a specific job consistently.
Skill是一份简洁、聚焦任务的指南,用于告知Claude如何一致地执行特定工作。

SKILL.md Format

SKILL.md格式

Frontmatter:
yaml
name: skill-name
description: What the skill does and when to use it.
Body:
  • Use imperative instructions.
  • Keep it short and procedural.
  • Include only information Claude needs to execute the task.
前置元数据(Frontmatter):
yaml
name: skill-name
description: What the skill does and when to use it.
正文:
  • 使用祈使句指令。
  • 保持简短且流程化。
  • 仅包含Claude执行任务所需的信息。

Creation Checklist

创建检查清单

  1. Identify target tasks and example user prompts.
  2. Write the frontmatter description to cover when the skill should trigger.
  3. Draft a minimal workflow in the body.
  4. Add 1–3 concise examples if they clarify steps.
  5. Remove anything not essential to the workflow.
  1. 确定目标任务和示例用户提示词。
  2. 编写前置元数据描述,说明Skill应触发的场景。
  3. 在正文中草拟最简工作流程。
  4. 如果示例能明确步骤,添加1-3个简洁示例。
  5. 删除所有非工作流程必需的内容。

Rules

规则

  • Do not overexplain the "why" (unless explicitly prompted), only show the "how" of skills.
  • Prefer compact code snippets over long explanations.
  • Do not strictly follow the structure reference pages, simplify and group.
  • Keep the main SKILL.md compact and to the point. For more specialized information, co-locate
    *.md
    files (sub-skills) next to the
    SKILL.md
    . These should not include frontmatter. Reference them like this in the
    SKILL.md
    top-level:
md
[For deriving http clients](./effect-derive-http-client.md)
[For creating middlewares](./effect-http-middleware.md)
[For deriving swagger UIs](./effect-http-swagger.md)
[For multipart uploads](./effect-http-multipart.md)
[For streaming](./effect-http-streaming.md)
  • 不要过度解释“原因”(除非明确要求),只需展示Skill的“操作方法”。
  • 优先使用紧凑的代码片段而非冗长的解释。
  • 无需严格遵循结构参考页面,可简化和分组内容。
  • 保持主SKILL.md文件紧凑且切题。如需更专业的信息,可将
    *.md
    文件(子Skill)放在
    SKILL.md
    旁边。这些子文件无需包含前置元数据。在
    SKILL.md
    顶层按以下方式引用它们:
md
[For deriving http clients](./effect-derive-http-client.md)
[For creating middlewares](./effect-http-middleware.md)
[For deriving swagger UIs](./effect-http-swagger.md)
[For multipart uploads](./effect-http-multipart.md)
[For streaming](./effect-http-streaming.md)

Minimal Template

最简模板

markdown
---
name: skill-name
description: One sentence describing what it does and when to use it.
---
markdown
---
name: skill-name
description: One sentence describing what it does and when to use it.
---

Skill Name

Skill Name

Workflow

Workflow

  1. Step one.
  2. Step two.
  3. Step three.
  1. Step one.
  2. Step two.
  3. Step three.

Examples

Examples

  • "Example user prompt"
undefined
  • "Example user prompt"
undefined