skill-creator
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSkill 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
创建检查清单
- Identify target tasks and example user prompts.
- Write the frontmatter description to cover when the skill should trigger.
- Draft a minimal workflow in the body.
- Add 1–3 concise examples if they clarify steps.
- Remove anything not essential to the workflow.
- 确定目标任务和示例用户提示词。
- 编写前置元数据描述,说明Skill应触发的场景。
- 在正文中草拟最简工作流程。
- 如果示例能明确步骤,添加1-3个简洁示例。
- 删除所有非工作流程必需的内容。
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 files (sub-skills) next to the
*.md. These should not include frontmatter. Reference them like this in theSKILL.mdtop-level: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)- 不要过度解释“原因”(除非明确要求),只需展示Skill的“操作方法”。
- 优先使用紧凑的代码片段而非冗长的解释。
- 无需严格遵循结构参考页面,可简化和分组内容。
- 保持主SKILL.md文件紧凑且切题。如需更专业的信息,可将文件(子Skill)放在
*.md旁边。这些子文件无需包含前置元数据。在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
- Step one.
- Step two.
- Step three.
- Step one.
- Step two.
- Step three.
Examples
Examples
- "Example user prompt"
undefined- "Example user prompt"
undefined