# 安装 documentation

- 类型: Skill 技能
- 说明: 帮助用户撰写和维护技术文档，包括 README、API 文档与运维手册。
- 仓库: https://github.com/anthropics/knowledge-work-plugins
- ⚠ 安全: 该技能本质上是一个开源的提示词型文档写作技能，不要求密钥、无声明网络连接、无本地执行或数据读写能力，整体风险较低。来源虽为 GitHub 开源仓库，但社区采用度与维护状态信息有限，供应链维度可保持基本留意。

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

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

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

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

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

### Claude Code
```bash
mkdir -p ~/.claude/skills/documentation && curl -fsSL https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/engineering/skills/documentation/SKILL.md -o ~/.claude/skills/documentation/SKILL.md
```

### Codex
```bash
mkdir -p ~/.codex/skills/documentation && curl -fsSL https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/engineering/skills/documentation/SKILL.md -o ~/.codex/skills/documentation/SKILL.md
```

### Cursor
```bash
mkdir -p ~/.cursor/skills/documentation && curl -fsSL https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/engineering/skills/documentation/SKILL.md -o ~/.cursor/skills/documentation/SKILL.md
```
