# 安装 Keeping Routines Focused

- 类型: Skill 技能
- 说明: 帮助你识别职责混杂的例程，并拆分为单一职责的清晰结构。
- 仓库: https://github.com/obra/clank
- ⚠ 安全: 该技能材料显示其为纯提示/文档型的开源技能，不要求密钥、无声明远程端点，也未显示本地执行或数据访问能力，整体风险较低。主要不确定性在于仓库星标低、许可证未声明且维护状态未知，但基于现有材料不足以构成高风险。

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

### Claude Code
```
请帮我安装 askskill 上的 "Keeping Routines Focused" 技能：
1. 下载 https://raw.githubusercontent.com/obra/clank/main/skills/coding/keeping-routines-focused/SKILL.md
2. 保存为 ~/.claude/skills/keeping-routines-focused/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Codex
```
请帮我安装 askskill 上的 "Keeping Routines Focused" 技能：
1. 下载 https://raw.githubusercontent.com/obra/clank/main/skills/coding/keeping-routines-focused/SKILL.md
2. 保存为 ~/.codex/skills/keeping-routines-focused/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Cursor
```
请帮我安装 askskill 上的 "Keeping Routines Focused" 技能：
1. 下载 https://raw.githubusercontent.com/obra/clank/main/skills/coding/keeping-routines-focused/SKILL.md
2. 保存为 ~/.cursor/skills/keeping-routines-focused/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

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

### Claude Code
```bash
mkdir -p '~/.claude/skills/keeping-routines-focused' && curl -fsSL 'https://raw.githubusercontent.com/obra/clank/main/skills/coding/keeping-routines-focused/SKILL.md' -o '~/.claude/skills/keeping-routines-focused/SKILL.md'
```

### Codex
```bash
mkdir -p '~/.codex/skills/keeping-routines-focused' && curl -fsSL 'https://raw.githubusercontent.com/obra/clank/main/skills/coding/keeping-routines-focused/SKILL.md' -o '~/.codex/skills/keeping-routines-focused/SKILL.md'
```

### Cursor
```bash
mkdir -p '~/.cursor/skills/keeping-routines-focused' && curl -fsSL 'https://raw.githubusercontent.com/obra/clank/main/skills/coding/keeping-routines-focused/SKILL.md' -o '~/.cursor/skills/keeping-routines-focused/SKILL.md'
```
