From quick-review
Use this skill when the user wants to find and work on a GitHub issue.
How this skill is triggered — by the user, by Claude, or both
Slash command
/quick-review:pick-up-github-issueThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Find, claim, and plan a GitHub issue labeled "ready-to-implement".
Find, claim, and plan a GitHub issue labeled "ready-to-implement".
gh CLI must be authenticatedgh repo view --json nameWithOwner -q '.nameWithOwner'
gh issue list --label "ready-to-implement" --state open --json number,title,body,comments,assignees
If no issues found, tell the user and stop.
For each issue, check if someone is already working on it:
.assignees is non-empty.Pick the first clearly available issue.
AskUserQuestion with options: "Yes, pick it up" / "Show me other issues" / "Skip".Post a comment to claim it. This serves as the "assignee" since Claude doesn't have a separate GitHub account:
gh issue comment <NUMBER> --body "Picking this up. - Claude (<your model name/version>)"
Call EnterPlanMode to plan the implementation for this issue.
npx claudepluginhub hibukki/yonatans-cc-marketplace --plugin quick-reviewResolves GitHub issues via 8-phase workflow: fetch details, analyze requirements, implement solutions, verify correctness, code review, commit changes, create PRs. Activates on resolve, implement, fix requests or issue references.
Guides on working with GitHub issues: read descriptions/comments/related PRs, define acceptance criteria with verifiable behaviors, and commit with proper references.
Investigates GitHub issues and PRs: pulls, classifies, searches codebase for root cause, reviews contributed code, proposes fixes with file:line references, and optionally implements fixes.