# 安装 azure-quotas

- 类型: Skill 技能
- 说明: 帮助你检查和管理 Azure 配额与用量，评估部署容量和区域可用性。
- 仓库: https://github.com/microsoft/GitHub-Copilot-for-Azure
- ⚠ 安全: 该技能材料显示其本质上是一个开源的提示型 Azure 配额管理指南，本身未声明需要密钥、远程端点或本地执行能力，整体风险较低。需注意其文档强指令式措辞与建议安装 Azure CLI 扩展，但基于现有材料未见明确数据外发、越权或恶意红旗。

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

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

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

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

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

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

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

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