Manage pull requests with intelligent PR creation and updates
You can install this plugin from any of these themed marketplaces. Choose one, add it as a marketplace, then install the plugin.
Choose your preferred installation method below
A marketplace is a collection of plugins. Every plugin gets an auto-generated marketplace JSON for individual installation, plus inclusion in category and themed collections. Add a marketplace once (step 1), then install any plugin from it (step 2).
One-time setup for access to all plugins
When to use: If you plan to install multiple plugins now or later
Step 1: Add the marketplace (one-time)
/plugin marketplace add https://claudepluginhub.com/marketplaces/all.json
Run this once to access all plugins
Step 2: Install this plugin
/plugin install pr-manager@all
Use this plugin's auto-generated marketplace JSON for individual installation
When to use: If you only want to try this specific plugin
Step 1: Add this plugin's marketplace
/plugin marketplace add https://claudepluginhub.com/marketplaces/plugins/pr-manager.json
Step 2: Install the plugin
/plugin install pr-manager@pr-manager
This directory contains essential development plugins for Claude Code to enhance your development workflows.
pr-manager
)Intelligent pull request management with automated creation and updates.
Commands:
/create-pr
- Create new pull request with analysis/update-pr
- Update existing PR with new changesAgent:
pr-creator
- Intelligent PR creation and managementUse Cases:
prd-writer
)Create comprehensive Product Requirement Documents with AI collaboration.
Commands:
/create-prd
- Generate complete PRD for a featureAgents:
product-owner
- Gather requirements and business contextprd-creator
- Structure and write comprehensive PRDsUse Cases:
Install from local marketplace:
/plugin add-marketplace .claude/plugins/marketplace.json
Install plugins:
/plugin install pr-manager
/plugin install prd-writer
Restart Claude Code to activate
If Claude Code supports direct plugin paths:
/plugin install ./.claude/plugins/pr-manager
/plugin install ./.claude/plugins/prd-writer
# 1. Complete your feature work
git add .
git commit -m "feat: Add new feature"
git push origin feat/my-feature
# 2. Create PR using plugin
/create-pr
# 1. Start PRD creation
/create-prd
# 2. Answer product-owner questions
# 3. Review generated PRD
# 4. Iterate as needed
Each plugin follows Claude Code's standard structure:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── commands/
│ └── command-name.md # Slash command definitions
├── agents/
│ └── agent-name.md # Agent specifications
└── README.md # Plugin documentation
Create directory structure:
mkdir -p plugins/my-plugin/.claude-plugin
mkdir -p plugins/my-plugin/commands
mkdir -p plugins/my-plugin/agents
Create plugin.json:
{
"name": "my-plugin",
"description": "My awesome plugin",
"version": "1.0.0",
"author": {
"name": "Your Name"
}
}
Add commands (commands/my-command.md):
---
description: What this command does
---
# Command Instructions
[Command prompt/instructions]
Add agents (agents/my-agent.md):
---
name: my-agent
description: What this agent does
model: inherit
color: blue
---
[Agent instructions and capabilities]
Update marketplace.json
Test the plugin
Install locally:
/plugin install ./plugins/my-plugin
Test commands:
/my-command
Verify agent behavior
Update based on feedback
commands/
agents/
/create-pr
😉Initial release with two plugins:
pr-manager: PR creation and management
/create-pr
command/update-pr
commandpr-creator
agentprd-writer: PRD document generation
/create-prd
commandproduct-owner
agentprd-creator
agentFuture plugins under consideration:
For questions, issues, or feature requests:
MIT License - Free to use and modify
Author: NguyenTuanSi
1.0.0