# 安装 onboarding

- 类型: Skill 技能
- 说明: Generate an onboarding checklist and first-week plan for a new hire. Use when someone has a start date coming up, building the pre-start task list (accounts, equipment, buddy), scheduling Day 1 and Week 1, or setting 30/60/90-day goals for a new team member.
- 仓库: https://github.com/anthropics/knowledge-work-plugins

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

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

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

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

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

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

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

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