# 安装 writing-plans

- 类型: Skill 技能
- 说明: 在设计完成后，为缺乏上下文的工程师生成可执行的详细实施计划。
- 仓库: https://github.com/microsoft/FluidFramework
- ⚠ 安全: 该技能材料显示其为纯提示词型、开源来源、无密钥且无声明远程端点，整体风险较低。需注意 README 中包含面向宿主代理的指令性文字和文件路径规划要求，存在一定提示注入/误导可能，但未见代码执行、数据外发或凭证滥用红旗。

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

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

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

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

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

### Claude Code
```bash
mkdir -p '~/.claude/skills/writing-plans' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/FluidFramework/main/.agency/plugins/nori/skills/writing-plans/SKILL.md' -o '~/.claude/skills/writing-plans/SKILL.md'
```

### Codex
```bash
mkdir -p '~/.codex/skills/writing-plans' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/FluidFramework/main/.agency/plugins/nori/skills/writing-plans/SKILL.md' -o '~/.codex/skills/writing-plans/SKILL.md'
```

### Cursor
```bash
mkdir -p '~/.cursor/skills/writing-plans' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/FluidFramework/main/.agency/plugins/nori/skills/writing-plans/SKILL.md' -o '~/.cursor/skills/writing-plans/SKILL.md'
```
