# 安装 azure-deploy

- 类型: Skill 技能
- 说明: 执行已准备好的 Azure 应用部署，并自动处理常见发布错误恢复。
- 仓库: https://github.com/microsoft/GitHub-Copilot-for-Azure
- ⚠ 安全: 该技能材料显示其核心是执行 Azure 部署命令，属于会触发本机命令和云端变更的部署类技能；但当前材料同时标注为 prompt-only、无密钥、无远程端点，且源码来自 GitHub 上可审计仓库，因此整体以需留意为主，未见足以单独升为高风险的明确红旗。

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

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

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

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

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

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

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

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