Codymaster cm-conductor-worktrees

Use when you need to manage parallel git worktrees for isolated feature development.

install
source · Clone the upstream repo
git clone https://github.com/tody-agent/codymaster
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/tody-agent/codymaster "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cm-conductor-worktrees" ~/.claude/skills/tody-agent-codymaster-cm-conductor-worktrees && rm -rf "$T"
manifest: skills/cm-conductor-worktrees/SKILL.md
source content

cm-conductor-worktrees — parallel worktrees

CLI

cm conductor add --at ../my-feature-wt --branch feat/my-feature --base main
cm conductor list

Practice

  • One branch + worktree per parallel agent/session.
  • Reconcile with
    git merge
    / PR; avoid two agents editing the same files without coordination.

ELI16 (3+ sessions)

When running three or more parallel sessions, re-ground each session with:

  • Current branch name + worktree path.
  • Last artifact from
    cm sprint status
    or
    .cm/context-bus.json
    .

Future

Dashboard UI for active sprints is not in CLI yet — use

cm dashboard
/ Hamster UI where available.