done

A work-closing workflow for a software issue, such as a tracked bug or task. It can summarize branch changes and guide the developer through creating a pull request or closing the issue.

In plain words
What is it for?
It detects an issue from the branch name, compares changes with the base branch, summarizes commits and files, and supports creating a pull request or adding notes before closure.
Why use it?
It gathers the relevant change history and gives the developer clear ways to finish the issue.

Command

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.

agentmods
npx agentmods add commands/forrestchang/worktree-workflow/done
Clone the repo
git clone --depth 1 https://github.com/forrestchang/worktree-workflow
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 630 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00630
Opus 5 $0.00000 $0.00315
Sonnet 5 $0.00000 $0.00126
Haiku 4.5 $0.00000 $0.00063

Measured 2d ago against content hash ceca1503ddce, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

done scanned grade A with 0 findings 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 2d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/done.md · 87 lines

How it starts

The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/done - Complete work on an issue

Help the developer wrap up their work on the current issue.

Usage

/done           # Complete the issue detected from branch name
/done ISSUE-12   # Complete a specific issue

Dependencies

  • Optional: linear CLI for Linear integration
  • Optional: gh CLI for GitHub PR creation

Steps

  1. Detect the issue from the branch name or use the provided ID
  2. Detect base branch for comparison:
    base=$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@')
    # Fallback to main/master
    
  3. Summarize the work by checking:
    • git log --oneline $base..HEAD to see commits
    • git diff --stat $base..HEAD to see files changed
  4. Ask what they want to do:
    • Create PR and close
    • Close issue (no PR)
    • Add notes and close
    • Just clean up (keep issue open)

After Selection

If they want to create a PR:

  1. Run gh pr create --title "ISSUE-12: Issue title" --body "..." with a summary
  2. Then proceed to closing if requested

If they want to add notes (requires linear CLI):

  1. Ask what notes to add
  2. Run linear issue update ISSUE-12 --append "..." with the notes

If they want to close (requires linear CLI):

  1. Run linear done ISSUE-12 to close the issue

Worktree cleanup:

If in a worktree, offer commands to clean up:

# Get worktree info
repo_root=$(git rev-parse --show-toplevel)
repo_name=$(basename "$repo_root")
branch_name=$(git branch --show-current)
# Convert slashes in branch name to dashes for directory name
dir_safe_branch="${branch_name//\//-}"
worktrees_dir="$(dirname "$repo_root")/worktrees"
worktree_path="$worktrees_dir/${repo_name}-${dir_safe_branch}"

# From main repo, remove the worktree
cd <main-repo-path>
git worktree remove "$worktree_path"
git worktree prune

Example Flow

User: /done

Claude: Let me check what you've been working on...

[Runs git log and git diff]

You've made 3 commits on ISSUE-12: Add caching layer
- src/cache.ts (new file, 45 lines)
- src/api.ts (modified, +12 -3)

[Presents options above]

Read the full file on GitHub · 87 lines

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. 2d ago First seen · 87 lines · 0 tokens per session scan A ceca1503ddce

Subscribe to this mod's changes

done is a command published in the GitHub repository forrestchang/worktree-workflow (109 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 630 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.