# 安装 author-contributions

- 类型: Skill 技能
- 说明: Identify all files a specific author contributed to on a branch vs its upstream, tracing code through renames. Use when asked who edited what, what code an author contributed, or to audit authorship before a merge. This skill should be run as a subagent — it performs many git operations and returns a concise table.
- 仓库: https://github.com/microsoft/vscode

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

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

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

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

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

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

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

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