---
name: Skill Template
slug: skill-template-3
category: AI Engineering
description: Skill Template provides a copyable directory structure and SKILL.md template for creating new AI skills. Use it as a starting point to define task goals, inputs, outputs, and core logic.
github: "https://github.com/anbeime/skill/tree/main/skills/_template"
language: Python
stars: 5330
forks: 519
install: "npx degit https://github.com/anbeime/skill/tree/main/skills/_template ~/.claude/skills/_template"
installs_to: ~/.claude/skills/_template
source_path: skills/_template/SKILL.md
collection_size: 23
category_size: 2451
collection_url: "https://dirskills.com/collections/anbeime/skill"
added: 2026-08-16T07:00:20.937Z
last_synced: 2026-08-16T07:00:20.937Z
canonical_url: "https://dirskills.com/skills/skill-template-3"
---

# Skill Template

Skill Template provides a copyable directory structure and SKILL.md template for creating new AI skills. Use it as a starting point to define task goals, inputs, outputs, and core logic.

**Install:**

```bash
npx degit https://github.com/anbeime/skill/tree/main/skills/_template ~/.claude/skills/_template
```

## README

# <技能标题>

## 任务目标

- 本技能用于：<一句话描述技能用途>
- 能力包含：<能力1>、<能力2>、<能力3>
- 触发条件：<什么场景下使用此技能>

## 使用方式

### 输入

<描述用户需要提供什么输入>

| 参数 | 类型 | 必填 | 说明 |
|------|------|------|------|
| input_text | string | 是 | 输入文本 |
| mode | string | 否 | 处理模式 (默认: auto) |

### 输出

<描述技能的输出格式>

```json
{
  "result": "处理结果",
  "metadata": {
    "processing_time": "0.5s",
    "status": "success"
  }
}
```

## 核心逻辑

### 步骤 1: <步骤名称>

<详细说明此步骤的逻辑>

### 步骤 2: <步骤名称>

<详细说明此步骤的逻辑>

### 步骤 3: <步骤名称>

<详细说明此步骤的逻辑>

## 注意事项

- <注意事项 1>
- <注意事项 2>
- <注意事项 3>

## 示例

### 示例 1: <场景描述>

**输入:**
```
<示例输入>
```

**输出:**
```
<示例输出>
```

### 示例 2: <场景描述>

**输入:**
```
<示例输入>
```

**输出:**
```
<示例输出>
```
