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.
View on GitHubschmug/karkinos
karkinos
karkinos-plugin/skills/pr-worker/SKILL.md
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/schmug/karkinos/blob/main/karkinos-plugin/skills/pr-worker/SKILL.md -a claude-code --skill pr-workerInstallation paths:
.claude/skills/pr-worker/# PR Worker Skill
Spawn a Claude worker to address PR feedback or continue PR work.
## Usage
```
/pr-worker <pr-number>
/pr-worker <pr-number> --review # Address review comments
/pr-worker <pr-number> --ci # Fix CI failures
```
## Examples
```
/pr-worker 123
/pr-worker 123 --review
/pr-worker 123 --ci
```
## Instructions
When the user invokes `/pr-worker`, follow these steps:
### 1. Fetch PR Details
```bash
gh pr view <pr-number> --json number,title,body,headRefName,baseRefName,state,reviewDecision,statusCheckRollup,reviews,comments
```
### 2. Determine Work Type
Based on flags or auto-detect:
- `--review`: Focus on addressing review comments
- `--ci`: Focus on fixing CI failures
- Default: Analyze PR state and decide
### 3. Get Existing Worktree or Create One
Check if worktree for this branch already exists:
```bash
git worktree list | grep <headRefName>
```
If not, create one:
```bash
BRANCH="<headRefName>"
WORKTREE_PATH="../artemis-pr-<number>"
git worktree add "$WORKTREE_PATH" "$BRANCH"
```
### 4. Build Task Prompt
#### For Review Comments (`--review`):
```bash
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
```
#### For CI Failures (`--ci`):
```bash
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
```
### 5. Spawn Worker