Spawn a Claude worker to address PR feedback, fix CI failures, or continue work on a pull request. Use when a PR needs updates based on review comments or failing checks.
Spawn a Claude worker to address PR feedback or fix CI failures. Automatically triggered when you use `/pr-worker <number>` with optional `--review` or `--ci` flags to handle pull request updates.
/plugin marketplace add schmug/karkinos/plugin install karkinos@karkinosThis skill is limited to using the following tools:
Spawn a Claude worker to address PR feedback or continue PR work.
/pr-worker <pr-number>
/pr-worker <pr-number> --review # Address review comments
/pr-worker <pr-number> --ci # Fix CI failures
/pr-worker 123
/pr-worker 123 --review
/pr-worker 123 --ci
When the user invokes /pr-worker, follow these steps:
gh pr view <pr-number> --json number,title,body,headRefName,baseRefName,state,reviewDecision,statusCheckRollup,reviews,comments
Based on flags or auto-detect:
--review: Focus on addressing review comments--ci: Focus on fixing CI failuresCheck if worktree for this branch already exists:
git worktree list | grep <headRefName>
If not, create one:
BRANCH="<headRefName>"
WORKTREE_PATH="../artemis-pr-<number>"
git worktree add "$WORKTREE_PATH" "$BRANCH"
--review):gh pr view <number> --comments
gh api repos/{owner}/{repo}/pulls/<number>/comments
Build prompt:
You are addressing review feedback on PR #<number>: <title>
## Review Comments to Address
<list of unresolved comments with file paths and line numbers>
## Your Task
1. Address each review comment
2. Make the requested changes
3. Commit with message: "fix: address PR review feedback"
4. Do NOT push - the orchestrator will handle that
--ci):gh pr checks <number>
gh run view <failed-run-id> --log-failed
Build prompt:
You are fixing CI failures on PR #<number>: <title>
## Failed Checks
<list of failed checks with error logs>
## Your Task
1. Analyze the CI failure logs
2. Fix the issues causing failures
3. Commit with message: "fix: resolve CI failures"
4. Do NOT push - the orchestrator will handle that
cd "$WORKTREE_PATH" && claude --print --dangerously-skip-permissions "$PROMPT"
After worker completes:
git push origin <branch>git push origin <branch>
gh pr checks <number> # Verify CI is running