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/derek-larson14/delegate/updategit clone --depth 1 https://github.com/derek-larson14/delegateWhat 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.00008 | $0.01423 |
| Opus 5 | $0.00004 | $0.00711 |
| Sonnet 5 | $0.00002 | $0.00285 |
| Haiku 4.5 | $0.00001 | $0.00142 |
Grade C, and why
update scanned grade C with 2 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf /tmp/delegate-update /tmp/delegate-update.zip Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
mkdir -p ops/scripts && curl -sL https://raw.githubusercontent.com/derek-larson14/delegate/main/ops/scripts/check-updates.sh -o ops/scripts/check-updates.sh && chmod +x ops/scripts/check-updates.sh && ops/scripts/check-u How it starts
The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Update Commands
Download the latest commands and scripts from the delegate repo.
Steps
0. Detect OS
uname -s 2>/dev/null || echo "Windows"
If the output contains "MINGW", "CYGWIN", "MSYS", or "Windows", this is a Windows environment. Use PowerShell (.ps1) scripts and $env:TEMP paths throughout. Otherwise, use bash (.sh) scripts and /tmp/ paths (existing behavior).
1. Run the update checker
macOS/Linux:
If ops/scripts/check-updates.sh exists, run it:
ops/scripts/check-updates.sh
If it doesn't exist, bootstrap it first:
mkdir -p ops/scripts && curl -sL https://raw.githubusercontent.com/derek-larson14/delegate/main/ops/scripts/check-updates.sh -o ops/scripts/check-updates.sh && chmod +x ops/scripts/check-updates.sh && ops/scripts/check-updates.sh
Windows:
If ops/scripts/check-updates.ps1 exists, run it:
powershell.exe -ExecutionPolicy Bypass -File ops/scripts/check-updates.ps1
If it doesn't exist, bootstrap it first:
powershell.exe -ExecutionPolicy Bypass -Command "New-Item -ItemType Directory -Path ops/scripts -Force | Out-Null; Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/derek-larson14/delegate/main/ops/scripts/check-updates.ps1' -OutFile 'ops/scripts/check-updates.ps1' -UseBasicParsing; & './ops/scripts/check-updates.ps1'"
If the script says "Everything is up to date" — you're done, skip to cleanup.
If no CHANGED/NEW/LOCAL ONLY items appear, everything is up to date - skip to cleanup.
LOCAL ONLY items exist locally but not upstream - either custom local files or deleted from repo. Mention these in the summary.
2. Review command changes
For CHANGED files: Show the diff to understand what changed.
macOS/Linux:
diff -u ".claude/commands/<name>" "/tmp/delegate-update/delegate-main/.claude/commands/<name>"
Windows — use the extracted path under $env:TEMP:
powershell.exe -Command "Compare-Object (Get-Content '.claude/commands/<name>') (Get-Content (Join-Path $env:TEMP 'delegate-update/delegate-main/.claude/commands/<name>'))"
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 · 169 lines · 8 tokens per session scan C 8b807c823276
update is a command published in the GitHub repository derek-larson14/delegate (39 stars, last pushed 4mo ago), licensed MIT. It adds 8 tokens to every session and 1,423 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, 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
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.