# 安装 chat-customizations-editor

- 类型: Skill 技能
- 说明: 用于在聊天自定义编辑器中配置和管理智能体、技能、提示词及集成组件。
- 仓库: https://github.com/microsoft/vscode
- ⚠ 安全: 该技能材料显示其为开源仓库中的纯说明/提示型技能，不要求密钥、未声明远程端点，也未体现独立执行代码或数据外发行为。基于现有材料，整体风险较低，主要需留意其来源维护信息有限但已有开源可审计正面证据。

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

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

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

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

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

### Claude Code
```bash
mkdir -p '~/.claude/skills/chat-customizations-editor' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/vscode/main/.github/skills/chat-customizations-editor/SKILL.md' -o '~/.claude/skills/chat-customizations-editor/SKILL.md'
```

### Codex
```bash
mkdir -p '~/.codex/skills/chat-customizations-editor' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/vscode/main/.github/skills/chat-customizations-editor/SKILL.md' -o '~/.codex/skills/chat-customizations-editor/SKILL.md'
```

### Cursor
```bash
mkdir -p '~/.cursor/skills/chat-customizations-editor' && curl -fsSL 'https://raw.githubusercontent.com/microsoft/vscode/main/.github/skills/chat-customizations-editor/SKILL.md' -o '~/.cursor/skills/chat-customizations-editor/SKILL.md'
```
