worktree-retry-cleanup

worktree-retry-cleanup is a skill for OpenCode from ZaxbyHub/opencode-swarm. It costs 43 tokens per session (380 once invoked), scanned C, original, MIT.

A cleanup procedure for safely removing old Git branches and worktree directories before retrying delegated work.

In plain words
What is it for?
Resetting failed or cancelled work lanes, pruning Git worktrees, and verifying that retry resources are gone.
Why use it?
It prevents retries from colliding with leftover files or branches and checks that another active session does not own them.

Skill for OpenCode

Written for OpenCode: installed under .opencode/.

Good fit Resetting failed or cancelled work lanes, pruning Git worktrees, and verifying that retry resources are gone.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zaxbyhub/opencode-swarm/worktree-retry-cleanup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ZaxbyHub/opencode-swarm --skill worktree-retry-cleanup
Clone the repo
git clone --depth 1 https://github.com/ZaxbyHub/opencode-swarm

Made for: OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for worktree-retry-cleanup

README.md
[![agentmods](https://agentmods.dev/badge/skills/zaxbyhub/opencode-swarm/worktree-retry-cleanup/github.svg)](https://agentmods.dev/skills/zaxbyhub/opencode-swarm/worktree-retry-cleanup)
Your own site
<a href="https://agentmods.dev/skills/zaxbyhub/opencode-swarm/worktree-retry-cleanup"><img src="https://agentmods.dev/badge/skills/zaxbyhub/opencode-swarm/worktree-retry-cleanup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for worktree-retry-cleanup

Your own site · 80×15
<a href="https://agentmods.dev/skills/zaxbyhub/opencode-swarm/worktree-retry-cleanup"><img src="https://agentmods.dev/badge/skills/zaxbyhub/opencode-swarm/worktree-retry-cleanup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 380 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.00380
Opus 5 $0.00022 $0.00190
Sonnet 5 $0.00009 $0.00076
Haiku 4.5 $0.00004 $0.00038

Measured 8d ago against content hash 443da0610304, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

worktree-retry-cleanup scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

3. **Check for worktree directory:** if `.swarm-worktrees/<architect-session>` exists, remove it (`Remove-Item -Recurse -Force` / `rm -rf`)
.opencode/skills/generated/worktree-retry-cleanup/SKILL.md · 27 lines

What it actually says

Worktree Retry Cleanup

Trigger

Before re-dispatching a coder for a task that already has a lane (any prior dispatch status).

Protocol

  1. Check for existing lane branch: git branch --list "swarm/lane/<architect-session>/<task-id>"
  2. If branch exists:
    • Verify 0-commits-ahead: git log --oneline HEAD..swarm/lane/<session>/<task> — empty = safe
    • Delete: git branch -d swarm/lane/<session>/<task> (use -D only if -d fails AND commits confirmed unneeded)
    • Under full-auto, -D is deny-pattern-blocked — use -d
  3. Check for worktree directory: if .swarm-worktrees/<architect-session> exists, remove it (Remove-Item -Recurse -Force / rm -rf)
  4. Prune: git worktree prune
  5. Verify: git branch --list "swarm/lane/<session>/<task>" returns empty
  6. Only after cleanup, proceed to declare_scope + coder dispatch

Ownership validation

Before deleting, verify the worktree is not owned by another ACTIVE session. Check .swarm/session/state.json for concurrent sessions. If another session owns it, DO NOT delete — surface the conflict.

Root cause

The provisioning code should auto-clean after coder completion/denial/cancellation (tracked in issue #1746 item 1). This playbook is the temporary protocol.

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 27 lines · 43 tokens per session scan C 443da0610304

Subscribe to this mod's changes

worktree-retry-cleanup is a skill published in the GitHub repository ZaxbyHub/opencode-swarm (467 stars, last pushed today), licensed MIT. It adds 43 tokens to every session and 380 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.