This skill should be used when resolving all PR comments using parallel processing. It fetches unresolved comments, spawns parallel resolver agents, and verifies all threads are resolved.
From soleurnpx claudepluginhub jikig-ai/soleur --plugin soleurThis skill uses the workspace's default tool permissions.
Resolve all PR comments using parallel processing.
Claude Code automatically detects and understands git context:
Get all unresolved comments for the PR:
gh pr status
bin/get-pr-comments PR_NUMBER
Create a TodoWrite list of all unresolved items grouped by type.
Spawn a pr-comment-resolver agent for each unresolved item in parallel.
So if there are 3 comments, spawn 3 pr-comment-resolver agents in parallel:
Always run all in parallel subagents/Tasks for each Todo item.
Last, check bin/get-pr-comments PR_NUMBER again to see if all comments are resolved. They should be; if not, repeat the process from step 1.