# 安装 handle-large-tasks

- 类型: Skill 技能
- 说明: 将长期复杂任务拆分为可执行小步骤，减少上下文超限与遗漏
- 仓库: https://github.com/microsoft/FluidFramework
- ⚠ 安全: 该技能材料显示其本质是一个用于任务拆分的提示型 skill，无需密钥、未声明远程端点，整体风险较低。需注意 README 含有强指令式工作流内容，但从提供信息看未显示额外权限、数据外发或闭源红旗。

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

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

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

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

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

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

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

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