# 安装 skillify

- 类型: Skill 技能
- 说明: Capture a repeatable process from the current session into a reusable Amplifier SKILL.md skill file. Analyzes the conversation, interviews the user to confirm structure, and writes a complete skill to disk. Use when the user wants to create a skill, save a workflow as a skill, turn a process into a reusable skill, or mentions "skillify", "create skill", "make a skill", "save as skill", "capture workflow", "turn this into a skill", "new skill", or wants to automate a repeatable process they just performed.

- 仓库: https://github.com/microsoft/amplifier-bundle-skills

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "skillify" 技能：
1. 下载 https://raw.githubusercontent.com/microsoft/amplifier-bundle-skills/main/skills/skillify/SKILL.md
2. 保存为 ~/.claude/skills/skillify/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Codex
```
请帮我安装 askskill 上的 "skillify" 技能：
1. 下载 https://raw.githubusercontent.com/microsoft/amplifier-bundle-skills/main/skills/skillify/SKILL.md
2. 保存为 ~/.codex/skills/skillify/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Cursor
```
请帮我安装 askskill 上的 "skillify" 技能：
1. 下载 https://raw.githubusercontent.com/microsoft/amplifier-bundle-skills/main/skills/skillify/SKILL.md
2. 保存为 ~/.cursor/skills/skillify/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
mkdir -p ~/.claude/skills/skillify && curl -fsSL https://raw.githubusercontent.com/microsoft/amplifier-bundle-skills/main/skills/skillify/SKILL.md -o ~/.claude/skills/skillify/SKILL.md
```

### Codex
```bash
mkdir -p ~/.codex/skills/skillify && curl -fsSL https://raw.githubusercontent.com/microsoft/amplifier-bundle-skills/main/skills/skillify/SKILL.md -o ~/.codex/skills/skillify/SKILL.md
```

### Cursor
```bash
mkdir -p ~/.cursor/skills/skillify && curl -fsSL https://raw.githubusercontent.com/microsoft/amplifier-bundle-skills/main/skills/skillify/SKILL.md -o ~/.cursor/skills/skillify/SKILL.md
```
