# 安装 smb-router

- 类型: Skill 技能
- 说明: The front door to the Small Business plugin. Listens to what the owner needs right now — vague or specific — and routes them to the best skill or slash command for the moment. Also serves as a guide: explains what's available, suggests what to try next, and adapts recommendations based on stored business context. Trigger whenever the owner asks "what can you do," "help me with my business," "what should I focus on," "I don't know where to start," or any open-ended business request that doesn't clearly match a single skill.

- 仓库: https://github.com/anthropics/knowledge-work-plugins

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

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

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

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

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

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

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

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