Spawn a Claude worker in an isolated git worktree.
/plugin marketplace add schmug/karkinos/plugin install karkinos@karkinosSpawn a Claude worker in an isolated git worktree.
$ARGUMENTS - Branch name and task description (e.g., feat/add-logging Add logging to supervisor)BRANCH="<first-arg>"
WORKTREE="../artemis-$(echo $BRANCH | tr '/' '-')"
git worktree add "$WORKTREE" -b "$BRANCH"
cd "$WORKTREE" && claude --print --dangerously-skip-permissions "<task-description>"
git log $BRANCH --oneline -5git diff main...$BRANCH --stat