- Repo: !`gh repo view --json nameWithOwner 2>/dev/null || echo "(no remote configured)"`
Processes multiple GitHub issues sequentially using main-branch development pattern.
/plugin marketplace add laurigates/claude-plugins/plugin install git-plugin@lgates-claude-pluginsgit/gh repo view --json nameWithOwner 2>/dev/null || echo "(no remote configured)"gh issue list --state open --json number,title,labels 2>/dev/null || echo "(no remote configured)"gh pr list --state open --json number,title,state 2>/dev/null || echo "(no remote configured)"git branch --show-currentgh label list --json name,description --limit 50 2>/dev/null || echo "(no remote configured)"Parse these parameters from the command (all optional):
--filter <label>: Filter issues by label--limit <n>: Maximum number of issues to processProcess multiple GitHub issues in sequence using the main-branch development pattern.
Repeat for each open issue:
git pull origin mainFixes #<number> in messagegit push origin main:fix/issue-<number>head: fix/issue-<number>base: mainbody: Include Fixes #<number>Report:
# All work stays on main - each issue gets its own remote branch
git pull origin main
# ... fix issue, commit on main ...
git push origin main:fix/issue-123 # Push to remote feature branch
# Create PR: head=fix/issue-123, base=main
# Continue on main for next issue