From claude-commands
Checks open PRs in the same scope before creating a new branch; stops at ≥3 and suggests rebasing from closed PRs instead of duplicating.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:pr-quantity-controlThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Before creating any new PR branch, check for existing open PRs in the same scope:
Before creating any new PR branch, check for existing open PRs in the same scope:
gh pr list --state open --search "<scope> in:title" --json number --jq length
Rules:
Efficiency targets (run /efficiency to check):
Why: 7-day audit (2026-04-25) showed 3.3% LOC efficiency, 49% merge rate on ZFC PRs. Same change attempted 2-3 times across different PRs. Quality gates × uncontrolled PR volume = review bottleneck → abandonment → more PRs.
npx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsAutomates PR creation with upstream tracking and validates branch setup. Prevents common git errors using GitHub CLI best practices.
Prepares pull requests for fast approval with cleanup, self-review, and structured descriptions.