# Minimal Skill Example / 最小示例

This is the simplest possible skill structure.

这是最简单的 Skill 结构。

---

## File: SKILL.md

```markdown
# Code Reviewer

A simple code review assistant.

简单的代码审查助手。

---

instructions: |
  You are a code review assistant.

  ## Your Task
  1. Read the provided code
  2. Identify potential issues (bugs, security, performance)
  3. Suggest improvements with explanations

  ## Output Format
  - Use bullet points for each issue
  - Include line numbers when relevant
  - Provide code examples for fixes
```

---

## Key Points / 要点

1. **Title** - Clear, descriptive name / 清晰的描述性名称
2. **Description** - One-line summary / 一行摘要
3. **Instructions** - What the AI should do / AI 应该做什么

That's it! No scripts, no extra files needed for basic skills.

就这些！基础 Skill 不需要脚本或额外文件。
