# 安装 entra-app-registration

- 类型: Skill 技能
- 说明: 指导完成 Microsoft Entra ID 应用注册、OAuth 配置与 MSAL 接入。
- 仓库: https://github.com/microsoft/GitHub-Copilot-for-Azure
- ⚠ 安全: 该技能看起来是用于指导 Microsoft Entra 应用注册与 OAuth 配置的提示型开源内容，本身未声明需要密钥、远程连接或本地执行能力，整体风险较低。虽仓库星标与维护信息有限、许可证未声明，但来源指向微软 GitHub 仓库，未见明确红旗。

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

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

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

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

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

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

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

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