worktree-setup

star 18

Create the codesmith implementation worktree and branch via worktrunk. Resolves the branch name from the parent ticket's primary tag (per tag-recipes/{tag}.md Branch prefix section) and the parallel-safety determination (single worktree for sequential plans; one worktree per plan for parallel-safe multi-plan). Invokes `wt switch -c <branch>`. Returns the worktree path and branch name to the caller.

malhashemi By malhashemi schedule Updated 6/1/2026

name: worktree-setup description: "Create the codesmith implementation worktree and branch via worktrunk. Resolves the branch name from the parent ticket's primary tag (per tag-recipes/{tag}.md Branch prefix section) and the parallel-safety determination (single worktree for sequential plans; one worktree per plan for parallel-safe multi-plan). Invokes wt switch -c <branch>. Returns the worktree path and branch name to the caller."

Execute workflow by following instructions and producing output Always read COMPLETE files - NEVER use offset/limit when reading any workflow related files Instructions are MANDATORY - either as file path, steps or embedded list in YAML, XML or markdown Execute ALL steps in instructions IN EXACT ORDER Save to template output file after EVERY "template-output" tag NEVER skip a step - YOU are responsible for every step's execution without fail or excuse Steps execute in exact numerical order (1, 2, 3...) unless an explicit goto directs otherwise Optional steps: Ask user unless YOLO mode active Template-output tags: Save content, discuss with the user the section completed, and NEVER proceed until the user indicates to proceed (unless YOLO mode has been activated) For each step in instructions:
  <substep n="1a" title="Track Progress">
    <action if="first iteration">Create todo list from all instruction step titles (TodoWrite)</action>
    <action>Mark current step as in_progress (TodoWrite)</action>
  </substep>

  <substep n="1b" title="Handle Step Attributes">
    <check>If optional="true" and NOT YOLO -> Use Question tool to ask user whether to include (Yes/Skip)</check>
    <check>If if="condition" -> Evaluate condition</check>
    <check>If for-each="item" -> Repeat step for each item</check>
    <check>If repeat="n" -> Repeat step n times</check>
  </substep>

  <substep n="1c" title="Execute Step Content">
    <action>Process step instructions (markdown or XML tags)</action>
    <action>Replace {{variables}} with values (ask user if unknown)</action>
    <execute-tags>
      <tag>action -> Perform the action</tag>
      <tag>action type="script" -> Execute as shell command, capture output</tag>
      <tag>check if="condition" -> Conditional block wrapping actions (requires closing &lt;/check&gt;)</tag>
      <tag>ask -> Prompt user using Question tool and WAIT for response. When options exist, present them as selectable choices. For open-ended questions, provide helpful suggested options with custom input enabled</tag>
      <tag>invoke-skill name="skill-name" -> Execute another skill via OpenCode skill system</tag>
      <tag>invoke-agent name="subagent" prompt="task" -> Delegate to subagent via Task tool</tag>
      <tag>goto step="x" -> Jump to specified step (used for explicit loop-back in Q-R style flows)</tag>
    </execute-tags>
  </substep>

  <substep n="1d" title="Handle template-output Tags">
    <if tag="template-output">
      <mandate>Generate content for this section</mandate>
      <mandate>Save to file (Write first time, Edit subsequent)</mandate>
      <action>Display generated content</action>
      <action>Use Question tool to present checkpoint options. WAIT for response.
        <options>
          <option label="Continue" description="Approve this section and move to the next step" />
          <option label="Advanced Elicitation" description="Explore this section deeper before proceeding" />
          <option label="YOLO" description="Auto-complete the rest of this workflow without stopping" />
        </options>
        <if response="Advanced Elicitation">
          <action>Invoke advanced-elicitation skill</action>
        </if>
        <if response="Continue">
          <action>Continue to next step</action>
        </if>
        <if response="YOLO">
          <action>Enter YOLO mode for the rest of the workflow</action>
        </if>
      </action>
    </if>
  </substep>

  <substep n="1e" title="Step Completion">
    <action>Mark current step as completed (TodoWrite)</action>
    <check>If no special tags and NOT YOLO:</check>
    <action>Use Question tool to ask:
      <options>
        <option label="Continue" description="Proceed to the next step" />
        <option label="Edit" description="Revise this step before moving on" />
      </options>
    </action>
  </substep>
</step>

<step n="2" title="Completion">
  <check>Confirm all instruction steps have been executed</check>
  <output>Workflow complete.</output>
</step>
Full user interaction and confirmation of EVERY step at EVERY template output - NO EXCEPTIONS except YOLO mode Skip all confirmations and elicitation, minimize prompts and try to produce all of the workflow automatically by simulating the remaining discussions with a simulated expert user step n="X" goal="..." - Define step with number and goal substep n="Xa" title="..." - Sub-step within a step phase n="X" - Phase within a substep optional="true" - Step can be skipped if="condition" - Conditional execution for-each="collection" - Iterate over items repeat="n" - Repeat n times action - Required action to perform action type="script" - Execute shell command action if="condition" - Single conditional action (inline, no closing tag needed) check if="condition">...</check> - Conditional block wrapping multiple items (closing tag required) ask - Get user input via Question tool (ALWAYS wait for response before continuing). Present defined options as selectable choices. For open-ended questions, offer helpful suggestions with custom input enabled goto - Jump to another step (explicit loop-back) invoke-skill - Call another skill invoke-agent - Delegate to subagent via Task tool invoke-protocol - Execute a reusable protocol (e.g., discover_inputs) template-output - Save content checkpoint critical - Cannot be skipped example - Show example output note - Informational content output - Display to user without saving halt-conditions - Define conditions that MUST stop execution condition - Single halt condition validation - Pre-condition rules to check - This is the complete workflow execution engine - You MUST follow instructions exactly as written - This workflow uses INTENT-DRIVEN PLANNING - adapt organically to product type and context - YOU ARE FACILITATING A CONVERSATION with a user to produce a final document step by step - The whole process is meant to be collaborative - helping the user flesh out their ideas - Do not rush or optimize and skip any section
Create the codesmith implementation worktree and branch via the worktrunk `wt` CLI. Composes the branch name from the parent ticket's primary tag and the plan's parallel-safety determination.
<inputs>
  - ticket_slug         kebab-case slug of the parent ticket
  - primary_tag         feature | bug | exploration | hotfix | infrastructure | chore
  - plan_count          1 (single plan) or N (multi-plan)
  - parallel_safe       true | false (only meaningful when plan_count > 1)
  - plan_index          1..N (only meaningful when plan_count > 1 AND parallel_safe)
</inputs>

<outputs>
  Returns to caller (JSON):
  {
    "branch": "{prefix}/{ticket-slug}[-plan-{n}]",
    "worktree_path": "/.../{wt_template_resolved}",
    "tag_prefix": "feat|fix|spike|hotfix|infra|chore"
  }
</outputs>

<invocation>
  Invoked by code-implement (orchestration phase) at the start of
  Work-Tree. For sequential multi-plan, invoked once. For
  parallel-safe multi-plan, invoked plan_count times in parallel via
  the orchestrator's dispatch loop.
</invocation>
<step n="1" title="Resolve Branch Name">
  <action>Load and execute: references/steps/step-01-resolve-branch.xml</action>
</step>

<step n="2" title="Create Worktree">
  <action>Load and execute: references/steps/step-02-create-worktree.xml</action>
</step>

<step n="3" title="Return Handoff">
  <action>Load and execute: references/steps/step-03-return-handoff.xml</action>
</step>
Worktree exists, branch is checked out, caller has the path and branch name. code-implement uses this to dispatch the codesmith-worker subagent for the first slice.
Install via CLI
npx skills add https://github.com/malhashemi/dotfiles --skill worktree-setup
Repository Details
star Stars 18
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator