Create Worktree from Issue
Find a GitHub issue and create a dedicated worktree + tmux window via workmux add.
Workflow
1. Find the Issue
The user provides either an issue number or descriptive text.
By number:
gh issue view NUMBER --json number,title,labels,body,state
By text (fuzzy search):
gh issue list --search "USER_TEXT" --state all --json number,title,labels,state --limit 10
If the search returns exactly one result, proceed automatically with that issue without asking for additional confirmation.
If the search returns multiple results, present them to the user and ask which one to use.
If no results, try broadening the search or ask the user to refine their query.
2. Mark Issue In Progress
If the issue is open, signal that work is starting. Skip this step for closed issues.
Self-assign:
gh issue edit NUMBER --add-assignee @me
Ensure the label exists, then add it:
gh label create "in progress" --description "Work is actively being done" --color FBCA04 2> /dev/null || true
gh issue edit NUMBER --add-label "in progress"
The gh label create command is safe to run even if the label already exists -- 2>/dev/null suppresses the "already exists" error and || true ensures a zero exit code so the subsequent command always runs. This ensures the label is available before gh issue edit --add-label attempts to use it, since gh does not auto-create labels.
Self-assignment is idempotent -- safe to re-run if the assignee already exists.
If any command fails, warn the user but continue with worktree creation. Status marking is best-effort and must never block the primary workflow.
The "in progress" label is intentionally retained beyond worktree creation and local implementation. It represents active issue lifecycle state until the related pull request is merged or the user explicitly abandons the effort. Do not remove it as part of creating the worktree.
3. Build the Branch Name
Construct a branch name in the format TYPE/SLUG where:
- TYPE: Derive from issue labels. Use
fixfor labels containing "bug" or "fix". Usefeaturefor everything else (including when no labels match). - SLUG: The issue number, a hyphen, then the slugified issue title: lowercase, replace spaces and special characters with hyphens, collapse consecutive hyphens, trim leading/trailing hyphens, truncate to 50 characters at a word boundary.
Leading with the issue number is what lets the pr skill link the resulting pull request back to the issue: its primary detection strategy reads TYPE/N-description straight out of the branch name. Without the number, pr falls back to searching GitHub by branch slug, which is slower and can match the wrong issue or none at all.
Examples:
- Issue #42 "Add dark mode support" with label "enhancement" ->
feature/42-add-dark-mode-support - Issue #108 "Login fails with special chars" with label "bug" ->
fix/108-login-fails-with-special-chars - Issue #7 "Update README" with no labels ->
feature/7-update-readme
4. Compose the Issue Prompt
Use the bundled compose-issue-prompt helper to convert gh issue view --json number,title,labels,body,state output into this prompt format:
Work on issue #NUMBER: TITLE
Labels: LABEL1, LABEL2
BODY_CONTENT
- If the issue body exceeds approximately 2000 characters, truncate it at the nearest paragraph or sentence boundary and append: "(Issue body truncated. Run
gh issue view NUMBERfor full details.)" - If the issue body is empty, omit it.
- If there are no labels, omit the labels line.
5. Create the Worktree
Important: The workmux add command must be fully detached from the Claude Code process. workmux creates tmux windows and spawns new Claude sessions, which cannot initialize while the parent Claude Code process is still running. The launch-workmux script handles backgrounding, detaching, waiting, and outputting the log.
Template escaping: workmux renders the prompt body through MiniJinja, so any literal {{, {%, or {# token in the issue body (e.g. GitHub Actions ${{ inputs.x }} expressions, Jinja/Liquid/Tera/Helm/Vue templates, Handlebars-style snippets) would otherwise be parsed as a template variable reference and rejected with Template uses undefined variables. The launch-workmux script reads the prompt from stdin, writes an escaped temporary prompt file for workmux add -P, and removes that temporary file after workmux add exits. Each escaped delimiter renders back to the literal characters, so the issue context stored at <worktree>/.workmux/PROMPT-*.md matches the original prompt.
Invoking the scripts: Both scripts ship with this plugin. Invoke each via bash followed by the quoted path:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/compose-issue-prompt"
bash "${CLAUDE_PLUGIN_ROOT}/scripts/launch-workmux" "BRANCH_NAME"
Claude Code replaces the plugin-root placeholder with the installed plugin's absolute, version-correct directory before this file reaches you, so there is no search step and no need for a shell variable. Keeping bash as the command prefix keeps the command token stable across plugin versions, which is what permission allowlist rules match on.
If the paths were not substituted, they still begin with $ rather than /. Codex CLI substitutes the placeholder only in hook commands, and OpenCode does not substitute it at all. In that case locate the scripts with **/create-worktree-from-issue/**/scripts/compose-issue-prompt and **/create-worktree-from-issue/**/scripts/launch-workmux, prefer matches inside the harness's own installed-plugin directory, ignore any match under a .bak or other backup directory, confirm each with test -x, and use those absolute paths for the rest of the session.
In the example below, SCRIPTS_DIR/compose-issue-prompt and SCRIPTS_DIR/launch-workmux are shorthand for the full quoted paths shown above.
Do not specify a --base branch. Let workmux use its default.
gh issue view NUMBER --json number,title,labels,body,state \
| bash "SCRIPTS_DIR/compose-issue-prompt" \
| bash "SCRIPTS_DIR/launch-workmux" "BRANCH_NAME"
The script outputs the workmux log directly and cleans up its own log file. Verify success:
git worktree list
6. Report Success
After confirming the worktree exists in git worktree list, report:
- The issue number and title
- The branch name created
- The tmux window name (to help the user switch to it)
- A note that the issue context was injected into the new session
- Whether the issue was marked in progress (assigned and labeled), or if status marking was skipped/failed
- If status marking succeeded, a note that the "in progress" label is retained until PR merge or explicit abandonment
Error Handling
- If
ghis not authenticated, instruct the user to rungh auth login - If
workmuxis not installed, inform the user - If the issue is closed, warn the user and ask if they want to proceed anyway
- If status marking fails (assignment or labeling), warn the user but continue with worktree creation -- status marking is best-effort