destroy

destroy is a command for coding agents from poindexter12/waypoint. It costs 15 tokens per session (4,411 once invoked), scanned A, original, MIT.

A command that removes a Git worktree and its metadata while keeping the associated branch.

In plain words
What is it for?
Use it to safely remove a registered worktree, after checking that its path exists and matches a known Git worktree.
Why use it?
It cleans up an isolated working folder after the work is finished without deleting the branch that contains its commits.

Command

Part of the workflows plugin — 4 skills, 5 commands, 2 agents shipped together

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/poindexter12/waypoint/destroy
Clone the repo
git clone --depth 1 https://github.com/poindexter12/waypoint

Or install workflows, the plugin that ships this one along with the rest of its 4 skills, 5 commands, 2 agents.

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 destroy

README.md
[![agentmods](https://agentmods.dev/badge/commands/poindexter12/waypoint/destroy.svg)](https://agentmods.dev/commands/poindexter12/waypoint/destroy)
Your own site
<a href="https://agentmods.dev/commands/poindexter12/waypoint/destroy"><img src="https://agentmods.dev/badge/commands/poindexter12/waypoint/destroy.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,411 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.00015 $0.04411
Opus 5 $0.00008 $0.02205
Sonnet 5 $0.00003 $0.00882
Haiku 4.5 $0.00002 $0.00441

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

Security

Grade A, and why

destroy 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 4d 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.

workflows/commands/destroy.md · 707 lines

How it starts

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

/destroy:working-tree

Safely remove git worktree directory and metadata files. Branch is preserved.

ARGUMENT SPECIFICATION

SYNTAX: /destroy:working-tree <worktree-path>

REQUIRED:
  <worktree-path>
    Type: path (absolute or relative)
    Validation: Must be registered git worktree
    Examples: "../myapp-feature-login", "/Users/dev/myapp-feature-login"

EXECUTION PROTOCOL

Execute steps sequentially. Each step must complete successfully before proceeding.

STEP 1: VALIDATE AND RESOLVE WORKTREE PATH

EXECUTE:

# Resolve to absolute path
if [[ "$WORKTREE_PATH_ARG" = /* ]]; then
    WORKTREE_PATH="$WORKTREE_PATH_ARG"
else
    WORKTREE_PATH=$(cd "$(dirname "$WORKTREE_PATH_ARG")" && pwd)/$(basename "$WORKTREE_PATH_ARG")
fi

VALIDATION:

  • IF WORKTREE_PATH_ARG is empty → ERROR PATTERN "missing-path"
  • WORKTREE_PATH must be absolute after resolution

NEXT:

  • On success → STEP 2
  • On failure → ABORT

STEP 2: CHECK PATH EXISTS

EXECUTE:

test -e "$WORKTREE_PATH"
EXISTS=$?

VALIDATION:

  • IF EXISTS != 0 → ERROR PATTERN "path-not-exist"

NEXT:

  • On EXISTS == 0 → STEP 3
  • On EXISTS != 0 → ABORT

STEP 3: GET ALL WORKTREES AND VALIDATE

EXECUTE:

WORKTREE_LIST=$(git worktree list --porcelain 2>&1)
EXIT_CODE=$?

VALIDATION:

  • IF EXIT_CODE != 0 → ERROR PATTERN "git-command-failed"

PARSE WORKTREE_LIST:

# Extract all worktree paths and branches
# Format: worktree /path\nHEAD hash\nbranch refs/heads/name\n\n
CURRENT_MAIN=$(echo "$WORKTREE_LIST" | head -1 | cut -d' ' -f2)
IS_MAIN_REPO=false

if [ "$WORKTREE_PATH" = "$CURRENT_MAIN" ]; then
    IS_MAIN_REPO=true
fi

# Find worktree entry for target path
WORKTREE_ENTRY=$(echo "$WORKTREE_LIST" | grep -A 3 "^worktree $WORKTREE_PATH$")
IS_REGISTERED=$(echo "$WORKTREE_ENTRY" | wc -l)

VALIDATION:

  • IF IS_MAIN_REPO == true → ERROR PATTERN "cannot-destroy-main"
  • IF IS_REGISTERED == 0 → ERROR PATTERN "not-a-worktree"

DATA EXTRACTION:

BRANCH_REF=$(echo "$WORKTREE_ENTRY" | grep "^branch " | cut -d' ' -f2)
BRANCH_NAME=$(echo "$BRANCH_REF" | sed 's|refs/heads/||')

Read the full file on GitHub · 707 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. 4d ago First seen · 707 lines · 15 tokens per session scan A 810442abbc51

Subscribe to this mod's changes

destroy is a command published in the GitHub repository poindexter12/waypoint (7 stars, last pushed 7mo ago), licensed MIT. It adds 15 tokens to every session and 4,411 once invoked, about $0.0001 per session on Opus 5. 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-31.