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.
npx agentmods add commands/kewton/commandmate/worktree-cleanupgit clone --depth 1 https://github.com/Kewton/CommandMateWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.02395 |
| Opus 5 | $0.00000 | $0.01197 |
| Sonnet 5 | $0.00000 | $0.00479 |
| Haiku 4.5 | $0.00000 | $0.00239 |
Grade A, and why
worktree-cleanup scanned grade A 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -X POST http://localhost:${CM_PORT:-3000}/api/repositories/sync How it starts
The opening of the file, as written. The whole thing — 279 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Worktree Cleanup スキル
概要
指定したIssue番号に対応するGit Worktree環境をクリーンアップするスキルです。
使用方法
/worktree-cleanup [Issue番号...]
例:
/worktree-cleanup 135
/worktree-cleanup 187 188 191 193
実行内容
あなたはWorktree環境クリーンアップの専門家です。以下の手順でWorktree環境を安全にクリーンアップしてください。 複数のIssue番号が指定された場合は、各Issueに対してPhase 1〜5を順番に繰り返し実行します。
パラメータ
- issue_numbers: 対象Issue番号(必須、1つ以上、スペース区切り、各番号は正の整数)
実行フェーズ
複数Issue指定時: 以下のPhase 1〜6を各Issueに対して順番に実行します。 Phase 7(Worktree同期)は全Issue完了後にまとめて1回実行します。
Phase 1: 入力検証
- Issue番号が正の整数であることを確認
- Issue番号が1〜2147483647の範囲内であることを確認
# 共通バリデーション関数を読み込み
# Synced with: src/cli/utils/input-validators.ts MAX_ISSUE_NO
source "$(dirname "$0")/../lib/validators.sh"
# Issue番号の検証
if ! validate_issue_no "$ISSUE_NO"; then
echo "Error: Invalid issue number"
exit 1
fi
Phase 2: サーバー停止
- Issue専用サーバーが起動中か確認(PIDファイルベース)
- ポートベースでサーバーを検出(フォールバック)
- 起動中の場合は停止
# プロセス管理ユーティリティを読み込み
source "$(dirname "$0")/../lib/process-utils.sh"
# Worktreeの絶対パスを取得
WORKTREE_DIR="../commandmate-issue-${ISSUE_NO}"
WORKTREE_ABS=$(cd "$WORKTREE_DIR" 2>/dev/null && pwd)
# Step 1: PIDファイルベースの検出(既存ロジック)
PID_FILE=~/.commandmate/pids/${ISSUE_NO}.pid
if [ -f "$PID_FILE" ]; then
PID=$(cat "$PID_FILE")
if kill -0 "$PID" 2>/dev/null; then
echo "Stopping server for Issue #${ISSUE_NO} (PID: $PID)..."
kill "$PID"
sleep 3
# 強制終了(必要な場合)
kill -0 "$PID" 2>/dev/null && kill -9 "$PID"
fi
rm -f "$PID_FILE"
fi
# Step 2: ポートベースの検出(フォールバック)
# npm run devで直接起動したサーバーはPIDファイルがないため、ポートで検出
if check_lsof_available && [ -n "$WORKTREE_ABS" ]; then
# 検出対象ポートの配列を構築
PORTS_TO_CHECK=(3000) # デフォルトポート
# Issue専用ポート(4桁以下のIssue番号のみ)
# ポート番号上限65535のため、3{issueNo}形式は1-9999まで
if [ "$ISSUE_NO" -le 9999 ]; then
PORTS_TO_CHECK+=("3${ISSUE_NO}")
fi
# 各ポートをチェック
for PORT in "${PORTS_TO_CHECK[@]}"; do
stop_server_by_port "$PORT" "$WORKTREE_ABS" "$ISSUE_NO"
done
fi
Phase 3: tmuxセッション終了
- Issue番号に対応するtmuxセッションを検索
- 存在する場合は終了(
tmux kill-session)
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.
- 2d ago First seen · 279 lines · 0 tokens per session scan A ee4eeecf7911
worktree-cleanup is a command published in the GitHub repository Kewton/CommandMate (39 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,395 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
crow-image
Show an image in Crow's Images panel — pass the file path as the argument.
release-notes
Draft release notes, recommend and apply a version bump, and update CHANGELOG.md for the next dormouse release by analyzing all merge commits and squash-merged PRs since the last release tag. Used as step 2 of the release checklist in docs/specs/deploy.md.
refresh-compare-pages
Freshly research, add, and refresh marketing compare pages, then open a descriptive PR.
build-docs
Build and serve the docs site locally with Jekyll.
release
Cut a domux release — tag HEAD, push, watch the GH Action.
review-session-log
Use when the user asks what a session did, wants to review session history, or needs to find errors in a session log.