Agent Skill
2/7/2026

copilot-pull-request

Skill for managing GitHub pull requests and issues using Copilot's built-in PR/issue APIs. Provides structured, agent-native operations for review, comment, resolve, and merge workflows.

S
squirrel289
0GitHub Stars
1Views
npx skills add squirrel289/pax

SKILL.md

Namecopilot-pull-request
DescriptionSkill for managing GitHub pull requests and issues using Copilot's built-in PR/issue APIs. Provides structured, agent-native operations for review, comment, resolve, and merge workflows.

name: copilot-pull-request description: Skill for managing GitHub pull requests and issues using Copilot's built-in PR/issue APIs. Provides structured, agent-native operations for review, comment, resolve, and merge workflows. license: MIT compatibility: copilot metadata: audience: agents, scripts, CI

Copilot Pull Request

Skill for managing GitHub pull requests and issues using Copilot's built-in APIs. Use this for agent-native, composable, and context-aware PR/issue workflows.

When to Use

  • In Copilot agent environments (VS Code, Copilot CLI, etc.)
  • When you want maximum integration and reliability

Interface, Workflows, and Best Practices

See PR_MANAGEMENT_INTERFACE.md for the unified interface, supported operations, workflows, best practices, error handling, and quick reference shared by all PR management skills.

API-Specific Usage

Fetch PR Details

operation: fetch-pr-details
pr-number: 42
repository: owner/repo

Uses: github-pull-request_activePullRequest or github-pull-request_openPullRequest

List Review Comments

operation: list-comments
pr-number: 42
repository: owner/repo

Uses: github-pull-request_activePullRequest (field: reviewThreads)

Reply to Comment

operation: reply-comment
pr-number: 42
thread-id: PRRT_abc123
body: "Thanks for the feedback!"
repository: owner/repo

Uses: pull_request_review_write (add comment)

Resolve Thread

operation: resolve-thread
pr-number: 42
thread-id: PRRT_abc123
repository: owner/repo

Uses: pull_request_review_write (resolve thread)

Merge PR

operation: merge-pr
pr-number: 42
repository: owner/repo
merge-method: squash
delete-branch: true

Uses: pull_request_review_write (merge)

Quick Reference

FETCH PR:
operation: fetch-pr-details
pr-number: <number>
repository: <owner/repo>

LIST COMMENTS:
operation: list-comments
pr-number: <number>
repository: <owner/repo>

LIST UNRESOLVED COMMENTS:
operation: list-comments
pr-number: 42
repository: owner/repo
filters:
unresolved: true

REPLY TO COMMENT:
operation: reply-comment
pr-number: <number>
thread-id: <id>
body: "message"
repository: <owner/repo>

RESOLVE THREAD:
operation: resolve-thread
pr-number: <number>
thread-id: <id>
repository: <owner/repo>

CHECK MERGEABLE:
peration: check-status
r-number: 42
epository: owner/repo

MERGE PR:
operation: merge-pr
pr-number: <number>
repository: <owner/repo>
merge-method: squash|merge|rebase
delete-branch: true|false
Skills Info
Original Name:copilot-pull-requestAuthor:squirrel289