Personal collection of Claude Code skills for Azure DevOps automation.
| Skill | Trigger | Description |
|---|---|---|
ado-pr-review |
"check my PRs" | Lists PRs assigned to you, checks for active threads, approves clean ones |
One-time setup:
az login --allow-no-subscriptions
az extension add --name azure-devops
az devops configure --defaults organization=https://dev.azure.com/<org> project=<project>az login --allow-no-subscriptions is required when your tenant has no Azure subscriptions (DevOps-only tenants). Re-run it when your token expires. The other two commands are permanent.
Say "check my PRs" in Claude Code and the ado-pr-review skill will handle the rest. Or run the script directly:
python ado-pr-review/scripts/check_prs.py --dry-run # Report only
python ado-pr-review/scripts/check_prs.py # Interactive
python ado-pr-review/scripts/check_prs.py --auto-approve # Approve all clean PRspython3 ~/.claude/plugins/cache/anthropic-agent-skills/example-skills/1ed29a03dc85/skills/skill-creator/scripts/init_skill.py <skill-name> --path .Then register the new skill in .claude-plugin/marketplace.json.