# Get Pr Changes

> Fetch the list of file changes for a specific iteration of an Azure DevOps pull request. Shows which files were added, edited, or deleted. Requires an iteration ID obtained from get-pr-iterations.

- Skill: `sasky80/get-pr-changes` (Agent Skill)
- Install (CLI): `npx skillmds@latest add sasky80/get-pr-changes`
- Raw SKILL.md: https://api.skillmd.com/api/skills/sasky80/get-pr-changes/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: sasky80 (https://skillmd.com/u/sasky80)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/sasky80/get-pr-changes

---


# Get PR Changes

## Platform Note

- Clean-install path: use the Go command from `.github/tools/skills-go`.

## Arguments

| # | Name | Required | Description |
|---|------|----------|-------------|
| 1 | organization | Yes | Azure DevOps organization |
| 2 | project | Yes | Project name or ID |
| 3 | repositoryId | Yes | Repository name or ID |
| 4 | pullRequestId | Yes | Pull request ID |
| 5 | iterationId | Yes | Iteration ID (from `get-pr-iterations`) |

## Examples

```bash
go run ./.github/tools/skills-go/cmd/skills-go get-pr-changes myorg MyProject MyRepo 42 3
```

## Output

Returns JSON with `changeEntries` listing files with their `changeType` (add, edit, delete) and `item.path`.

