Spawn a Claude worker to handle a GitHub issue.
/plugin marketplace add schmug/karkinos/plugin install karkinos@karkinosSpawn a Claude worker to handle a GitHub issue.
$ARGUMENTS - Issue number (e.g., 42)Fetch issue details:
gh issue view $ARGUMENTS --json number,title,body,labels,comments
Generate branch name from issue:
fix/issue-<num>-<slug>feat/issue-<num>-<slug>Create worktree:
git worktree add "../artemis-issue-$ARGUMENTS" -b "$BRANCH"
Build prompt with issue context and spawn worker:
cd "../artemis-issue-$ARGUMENTS" && claude --print --dangerously-skip-permissions "
You are working on GitHub Issue #<number>: <title>
## Issue Description
<body>
## Your Task
1. Implement the necessary changes
2. Write tests if applicable
3. Commit with message referencing the issue
"
Report results and offer to create PR:
gh pr create --title "<title>" --body "Closes #<number>"