AgentSkillsCN

shep-kit:parallel-task

当某项任务可以与其他工作并行独立完成时使用此技能。在 .worktrees/ 中创建一个 Git 工作树,并为并行开发设置独特的分支。触发条件包括“并行任务”、“工作树”、“独立工作”,或显式调用 /shep-kit:parallel-task。

SKILL.md
--- frontmatter
name: shep-kit:parallel-task
description: Use when a task can be worked on in isolation alongside other work. Creates a git worktree in .worktrees/ with a unique branch for parallel development. Triggers include "parallel task", "worktree", "work in isolation", or explicit /shep-kit:parallel-task invocation.

Parallel Task via Git Worktree

Create an isolated worktree in .worktrees/ branched from up-to-date main, with spec directory scaffolded.

When to Use

  • Working on an independent task that doesn't block or depend on current work
  • Need isolation from the current branch's in-progress changes
  • Running long builds/tests while continuing other work

Workflow

dot
digraph parallel_task {
    rankdir=TB;
    node [shape=box];

    start [label="Start" shape=ellipse];
    get_desc [label="User provides high-level\ntask description"];
    derive [label="Derive dir name, branch name,\nand feature name from description"];
    create_wt [label="create-worktree.sh\n<dir-name> <branch-name>"];
    install [label="pnpm install in worktree"];
    init_spec [label="Run init-feature.sh\ninside worktree"];
    fix_yaml [label="Patch feature.yaml\nwith correct branch name"];
    fill_spec [label="Fill spec.md with\nrequirements (if provided)"];
    commit [label="git add + commit\nspec scaffold"];
    report [label="Report worktree path" shape=ellipse];

    start -> get_desc;
    get_desc -> derive;
    derive -> create_wt;
    create_wt -> install;
    install -> init_spec;
    init_spec -> fix_yaml;
    fix_yaml -> fill_spec;
    fill_spec -> commit;
    commit -> report;
}

Steps

1. Get Task Description

The user provides a high-level description of what the parallel task is about.

Examples:

  • "fix the version display bug in settings"
  • "add retry logic to the agent HTTP calls"
  • "refactor DI container registration"

2. Derive Names

From the description, generate:

  • Dir name: Short kebab-case identifier for the worktree directory (e.g., fix-version-display, add-agent-retry, refactor-di-container)
  • Branch name: Conventional branch name using the project's prefix conventions (e.g., fix/version-display, feat/agent-retry, refactor/di-container)
  • Feature name: Kebab-case name for the spec directory (same as dir name or adjusted)

Use the appropriate prefix: feat/, fix/, refactor/, chore/, docs/ etc.

3. Create Worktree

bash
.claude/skills/shep-kit:parallel-task/scripts/create-worktree.sh "<dir-name>" "<branch-name>"

The script fetches latest main and creates the worktree at .worktrees/<dir-name> with branch <branch-name> based on origin/main.

4. Install Dependencies

bash
cd .worktrees/<dir-name> && pnpm install

5. Initialize Spec Directory

Determine the next spec number and run the existing init script inside the worktree:

bash
cd .worktrees/<dir-name>

# Determine next spec number
NEXT_NUM=$(ls -d specs/[0-9][0-9][0-9]-* 2>/dev/null | wc -l | xargs -I{} printf "%03d" $(({} + 1)))
[ -z "$NEXT_NUM" ] && NEXT_NUM="001"

# Run init-feature.sh (reuses shep-kit:new-feature templates)
.claude/skills/shep-kit:new-feature/scripts/init-feature.sh "$NEXT_NUM" "<feature-name>"

6. Patch feature.yaml

The init script sets branch: feat/NNN-feature-name but our actual branch is different. Fix it:

bash
# Update branch name in feature.yaml to match the actual worktree branch
sed -i "s|branch: 'feat/.*'|branch: '<branch-name>'|" specs/NNN-feature-name/feature.yaml

7. Fill spec.md (if requirements provided)

If the user provided a description with enough context, fill in spec.md:

  • Problem statement (from user description)
  • Success criteria (inferred from scope)
  • Affected areas (from codebase analysis)
  • Size estimate with reasoning

Otherwise leave the template placeholders for manual filling.

8. Commit Spec Scaffold

bash
cd .worktrees/<dir-name>
git add specs/
git commit -m "feat(specs): add NNN-feature-name specification"

9. Report & Hand Off (STOP HERE)

CRITICAL: Do NOT start implementation. Do NOT run /shep-kit:research, /shep-kit:plan, or /shep-kit:implement.

Your job is done. Print the following message to the user, filling in the actual values:


Worktree is ready!

DetailValue
Worktree.worktrees/<dir-name>
Branch<branch-name> (based on origin/main)
Specspecs/NNN-feature-name/

Next step — open a new session in the worktree directory:

Option A — VS Code (recommended)

  1. Open a new VS Code window
  2. File → Open Folder… → select .worktrees/<dir-name>
  3. Open the Claude Code panel and continue with /shep-kit:research

Option B — Terminal

bash
cd .worktrees/<dir-name>
claude
# then run /shep-kit:research

Working inside the worktree keeps your current session free and gives the new session its own full context for the feature.


After printing the above message, STOP. Do not take any further action.

Cleanup

When done with a parallel task:

bash
# Remove the worktree
git worktree remove .worktrees/<dir-name>

# Delete the branch (if merged or no longer needed)
git branch -d <branch-name>

# Or prune stale worktree entries
git worktree prune

Quick Reference

CommandPurpose
git worktree add <path> -b <branch> origin/mainCreate worktree from main
git worktree listList all worktrees
git worktree remove .worktrees/<name>Remove a worktree
git worktree pruneClean up stale entries
git branch -d <branch>Delete merged branch

Common Mistakes

Forgetting to install dependencies

  • Problem: Worktree shares git objects but not node_modules
  • Fix: Always run pnpm install in new worktree

Not cleaning up worktrees

  • Problem: Stale worktrees accumulate in .worktrees/
  • Fix: Remove worktree + delete branch when task is done

Branch name collisions

  • Problem: Reusing a branch name that already exists
  • Fix: Script checks for existing branch and appends timestamp if needed

Wrong branch in feature.yaml

  • Problem: init-feature.sh sets branch: feat/NNN-name but worktree uses a different branch
  • Fix: Always patch feature.yaml after running init script (step 6)