From c3ee7bbd41a3e4ce735a5bf4533d7b86e579ea8f Mon Sep 17 00:00:00 2001 From: Jason Walker <913443@dadeschools.net> Date: Thu, 2 Jul 2026 04:33:13 -0400 Subject: [PATCH] docs: remove superseded recover-dirty-worktree template (#46) Corrective cleanup: PR #47 was closed-not-merged but a partial landing left skills/llm-project-workflow/templates/recover-dirty-worktree.md on master. The intended #47 state replaced it with the two more precise templates, which are already present: - recover-bad-state.md - worktree-cleanup.md Remove the superseded template. No references to recover-dirty-worktree.md exist in README/docs/skills (verified before and after), so no reference updates are needed. Docs-only; no runtime code touched. Full suite 291 passed / 0 failures; git diff --check clean. Closes #46. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../templates/recover-dirty-worktree.md | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 skills/llm-project-workflow/templates/recover-dirty-worktree.md diff --git a/skills/llm-project-workflow/templates/recover-dirty-worktree.md b/skills/llm-project-workflow/templates/recover-dirty-worktree.md deleted file mode 100644 index d8d54b3..0000000 --- a/skills/llm-project-workflow/templates/recover-dirty-worktree.md +++ /dev/null @@ -1,31 +0,0 @@ -# Recover Dirty Worktree Prompt - -You are recovering repository state in ``. - -Rules: - -- Do not reset, delete, clean, or overwrite work unless explicitly instructed. -- Do not edit another issue's worktree unless assigned to that issue. -- Preserve ambiguous work before any destructive operation. - -Workflow: - -1. Run `git status --short --branch`. -2. Identify whether dirty files belong to the current issue, another issue, or - unknown work. -3. If dirty work belongs to another issue, leave it alone and use a separate - worktree for the current task. -4. If an unauthorized untracked file was created, stop and report its exact path. -5. Remove unauthorized files only when explicitly instructed. -6. If local `` is ahead of `/`, stop and - report both commit hashes. -7. If cleanup is requested, verify the branch is merged or explicitly abandoned - before deleting any branch or worktree. - -Report: - -- current branch -- dirty files -- ownership assessment -- actions taken -- remaining blockers