# 安装 feishu-doc

- 类型: Skill 技能
- 说明: 帮助用户读取、编辑和写入飞书文档内容，提升云文档协作效率。
- 仓库: https://github.com/openclaw/openclaw
- ⚠ 安全: 整体看这是一个开源、社区采用度很高的 Feishu 文档技能，且未声明密钥和远程端点，基础风险偏低。主要需要留意的是它具备对云文档的读写能力，属于正常工具能力而非异常红旗。

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

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

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

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

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

### Claude Code
```bash
mkdir -p '~/.claude/skills/feishu-doc' && curl -fsSL 'https://raw.githubusercontent.com/openclaw/openclaw/main/extensions/feishu/skills/feishu-doc/SKILL.md' -o '~/.claude/skills/feishu-doc/SKILL.md'
```

### Codex
```bash
mkdir -p '~/.codex/skills/feishu-doc' && curl -fsSL 'https://raw.githubusercontent.com/openclaw/openclaw/main/extensions/feishu/skills/feishu-doc/SKILL.md' -o '~/.codex/skills/feishu-doc/SKILL.md'
```

### Cursor
```bash
mkdir -p '~/.cursor/skills/feishu-doc' && curl -fsSL 'https://raw.githubusercontent.com/openclaw/openclaw/main/extensions/feishu/skills/feishu-doc/SKILL.md' -o '~/.cursor/skills/feishu-doc/SKILL.md'
```
