How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow-helper:skills/new-taskThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
ユーザーが新しいタスクを開始したいときに使用します。
ユーザーが新しいタスクを開始したいときに使用します。
$ARGUMENTS からタスク名を取得以下のコマンドを順番に実行してください:
# 変数設定
TASK_NAME="$ARGUMENTS"
PROJECT_NAME=$(basename "$(pwd)")
BRANCH_NAME=$(echo "$TASK_NAME" | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | sed 's/[^a-z0-9-]//g')
WORKTREE_PATH="../${PROJECT_NAME}-${BRANCH_NAME}"
echo "📦 Creating worktree: $WORKTREE_PATH"
echo "🌿 Branch: $BRANCH_NAME"
# Worktree作成
git worktree add "$WORKTREE_PATH" -b "$BRANCH_NAME"
# WezTermで新しいペインを開く
wezterm cli split-pane --right --percent 50 -- bash -c "cd '$WORKTREE_PATH' && echo '🚀 Worktree ready!' && echo '📍 Path: $WORKTREE_PATH' && echo '🌿 Branch: $BRANCH_NAME' && echo '' && echo 'Run: claude' && exec bash"
最後に、作成されたworktreeの情報をユーザーに報告してください。
$ARGUMENTS
npx claudepluginhub sug1t0m0/cc-mp-test --plugin workflow-helperCreates isolated git worktrees for feature branches with smart directory selection, gitignore checks, auto project setup detection, and baseline test verification. Use for task isolation from main workspace.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.