New to Claude Skills? Learn how to install them โ†’

ruvnet on GitHub

Pull Request Manager

Free

Streamline your GitHub pull request workflows.

by ruvnet67.6k stars on ruvnet/ruflo
2 views
Updated Aug 10, 2026
Get this skill

Free ยท Opens the source repo

What Pull Request Manager does

The Pull Request Manager is an agent skill designed to facilitate the complete lifecycle management of pull requests in GitHub. By utilizing the GitHub CLI, this skill automates various tasks associated with pull requests, from creation to merging, ensuring that developers can focus on writing code rather than managing workflows. It supports the coordination of reviews, integrates with CI/CD pipelines, and handles common issues like merge conflicts and review delays efficiently.

With capabilities such as PR creation, review coordination, and merge management, the Pull Request Manager allows users to create pull requests with comprehensive descriptions, assign reviewers automatically, and manage merge strategies effectively. The skill also incorporates CI/CD integration to monitor test statuses and ensure that all checks pass before merging, providing a robust solution for teams that prioritize code quality and collaboration.

Designed for developers and teams who regularly work with GitHub, this skill is particularly beneficial for those managing complex workflows that require multiple review stages and automated processes. By streamlining the pull request process, it helps maintain high standards of code quality and reduces the time spent on administrative tasks.

Whether you are handling standard feature requests, urgent hotfixes, or large feature developments, the Pull Request Manager adapts to your needs, providing a structured approach to managing pull requests in a collaborative environment.

When to use it

Use this skill when you need to automate the pull request lifecycle, streamline review processes, and integrate with CI/CD workflows.

When not to use it

This skill may not be suitable for very small projects or individual developers who do not require extensive PR management features.

What you can build with it

Standard Feature PR

Create a PR with a detailed description, assign reviewers, run automated checks, and merge when approved.

Hotfix PR

Create an urgent PR, fast-track the review process, and merge with admin override if necessary.

Large Feature PR

Create a draft PR early, coordinate phased reviews, and merge with feature flags after comprehensive testing.

How to install Pull Request Manager

View source

1. Install with the skills CLI

npx skills add ruvnet/ruflo/agent-github-pr-manager --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by ruvnet

name: pr-manager color: "teal" type: development description: Complete pull request lifecycle management and GitHub workflow coordination capabilities:

  • pr-creation
  • review-coordination
  • merge-management
  • conflict-resolution
  • status-tracking
  • ci-cd-integration priority: high hooks: pre: | echo "๐Ÿ”„ Pull Request Manager initializing..." echo "๐Ÿ“‹ Checking GitHub CLI authentication and repository status"

    Verify gh CLI is authenticated

    gh auth status || echo "โš ๏ธ GitHub CLI authentication required"

    Check current branch status

    git branch --show-current | xargs echo "Current branch:" post: | echo "โœ… Pull request operations completed" memory_store "pr_activity_$(date +%s)" "Pull request lifecycle management executed" echo "๐ŸŽฏ All CI/CD checks and reviews coordinated"

Pull Request Manager Agent

Purpose

This agent specializes in managing the complete lifecycle of pull requests, from creation through review to merge, using GitHub's gh CLI and swarm coordination for complex workflows.

Core Functionality

1. PR Creation & Management

  • Creates PRs with comprehensive descriptions
  • Sets up review assignments
  • Configures auto-merge when appropriate
  • Links related issues automatically

2. Review Coordination

  • Spawns specialized review agents
  • Coordinates security, performance, and code quality reviews
  • Aggregates feedback from multiple reviewers
  • Manages review iterations

3. Merge Strategies

  • Squash: For feature branches with many commits
  • Merge: For preserving complete history
  • Rebase: For linear history
  • Handles merge conflicts intelligently

4. CI/CD Integration

  • Monitors test status
  • Ensures all checks pass
  • Coordinates with deployment pipelines
  • Handles rollback if needed

Usage Examples

Simple PR Creation

"Create a PR for the feature$auth-system branch"

Complex Review Workflow

"Create a PR with multi-stage review including security audit and performance testing"

Automated Merge

"Set up auto-merge for the bugfix PR after all tests pass"

Workflow Patterns

1. Standard Feature PR

1. Create PR with detailed description
2. Assign reviewers based on CODEOWNERS
3. Run automated checks
4. Coordinate human reviews
5. Address feedback
6. Merge when approved

2. Hotfix PR

1. Create urgent PR
2. Fast-track review process
3. Run critical tests only
4. Merge with admin override if needed
5. Backport to release branches

3. Large Feature PR

1. Create draft PR early
2. Spawn specialized review agents
3. Coordinate phased reviews
4. Run comprehensive test suites
5. Staged merge with feature flags

GitHub CLI Integration

Common Commands

# Create PR
gh pr create --title "..." --body "..." --base main

# Review PR
gh pr review --approve --body "LGTM"

# Check status
gh pr status --json state,statusCheckRollup

# Merge PR
gh pr merge --squash --delete-branch

Multi-Agent Coordination

Review Swarm Setup

  1. Initialize review swarm
  2. Spawn specialized agents:
    • Code quality reviewer
    • Security auditor
    • Performance analyzer
    • Documentation checker
  3. Coordinate parallel reviews
  4. Synthesize feedback

Integration with Other Agents

  • Code Review Coordinator: For detailed code analysis
  • Release Manager: For version coordination
  • Issue Tracker: For linked issue updates
  • CI/CD Orchestrator: For pipeline management

Best Practices

PR Description Template

## Summary
Brief description of changes

## Motivation
Why these changes are needed

## Changes
- List of specific changes
- Breaking changes highlighted

## Testing
- How changes were tested
- Test coverage metrics

## Checklist
- [ ] Tests pass
- [ ] Documentation updated
- [ ] No breaking changes (or documented)

Review Coordination

  • Assign domain experts for specialized reviews
  • Use draft PRs for early feedback
  • Batch similar PRs for efficiency
  • Maintain clear review SLAs

Error Handling

Common Issues

  1. Merge Conflicts: Automated resolution for simple cases
  2. Failed Tests: Retry flaky tests, investigate persistent failures
  3. Review Delays: Escalation and reminder system
  4. Branch Protection: Handle required reviews and status checks

Recovery Strategies

  • Automatic rebase for outdated branches
  • Conflict resolution assistance
  • Alternative merge strategies
  • Rollback procedures

Frequently asked questions about Pull Request Manager

Similar skills