# 安装 deploy-model

- 类型: Skill 技能
- 说明: 帮助用户按意图在 Azure OpenAI 中部署模型并查询区域容量与可用性。
- 仓库: https://github.com/microsoft/GitHub-Copilot-for-Azure
- ⚠ 安全: 该技能材料显示为纯提示词路由型 Skill，本身未声明需要密钥、远程端点或本机执行能力；结合 GitHub 开源来源与一定社区采用度，整体风险较低。需要注意的是，其业务目标涉及 Azure 模型部署与容量查询，实际联动的下游工具权限应单独核查。

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

### Claude Code
```
请帮我安装 askskill 上的 "deploy-model" 技能：
1. 下载 https://raw.githubusercontent.com/microsoft/GitHub-Copilot-for-Azure/main/plugin/skills/microsoft-foundry/models/deploy-model/SKILL.md
2. 保存为 ~/.claude/skills/deploy-model/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Codex
```
请帮我安装 askskill 上的 "deploy-model" 技能：
1. 下载 https://raw.githubusercontent.com/microsoft/GitHub-Copilot-for-Azure/main/plugin/skills/microsoft-foundry/models/deploy-model/SKILL.md
2. 保存为 ~/.codex/skills/deploy-model/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Cursor
```
请帮我安装 askskill 上的 "deploy-model" 技能：
1. 下载 https://raw.githubusercontent.com/microsoft/GitHub-Copilot-for-Azure/main/plugin/skills/microsoft-foundry/models/deploy-model/SKILL.md
2. 保存为 ~/.cursor/skills/deploy-model/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

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

### Claude Code
```bash
mkdir -p '~/.claude/skills/deploy-model' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/GitHub-Copilot-for-Azure/main/plugin/skills/microsoft-foundry/models/deploy-model/SKILL.md' -o '~/.claude/skills/deploy-model/SKILL.md'
```

### Codex
```bash
mkdir -p '~/.codex/skills/deploy-model' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/GitHub-Copilot-for-Azure/main/plugin/skills/microsoft-foundry/models/deploy-model/SKILL.md' -o '~/.codex/skills/deploy-model/SKILL.md'
```

### Cursor
```bash
mkdir -p '~/.cursor/skills/deploy-model' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/GitHub-Copilot-for-Azure/main/plugin/skills/microsoft-foundry/models/deploy-model/SKILL.md' -o '~/.cursor/skills/deploy-model/SKILL.md'
```
