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/zippoxer/subtask/releasegit clone --depth 1 https://github.com/zippoxer/subtaskWhat 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.00006 | $0.01149 |
| Opus 5 | $0.00003 | $0.00575 |
| Sonnet 5 | $0.00001 | $0.00230 |
| Haiku 4.5 | $0.00001 | $0.00115 |
Grade A, and why
release 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.
How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Context
- Latest stable: !
git tag -l 'v[0-9]*.[0-9]*.[0-9]*' --sort=-v:refname | grep -v '-' | head -1 || echo "none" - Latest beta: !
git tag -l 'v*-beta*' --sort=-v:refname | head -1 || echo "none" - Current branch: !
git branch --show-current - Git status: !
git status --short - Commits since last tag: !
git log $(git describe --tags --abbrev=0 2>/dev/null)..HEAD --oneline 2>/dev/null || git log --oneline -5
Task
Create a new release.
Steps
-
Show current state to the user:
- Latest stable version
- Latest beta version (if any)
- What versions each release type would create
-
Ask user what release to create using AskUserQuestion:
- Calculate and show concrete version numbers for each option
- Example options (adjust based on current state):
- "v0.2.0 (minor)" — requires
mainbranch - "v0.1.2 (patch)" — requires
mainbranch - "v1.0.0 (major)" — requires
mainbranch - "v0.2.0-beta.1 (new beta)" — requires
devbranch - "v0.2.0-beta.2 (next beta)" — only if beta exists, requires
devbranch
- "v0.2.0 (minor)" — requires
- If argument was provided (e.g.,
/release patch), skip the question and use it
-
Check prerequisites:
- Working directory is clean
- Tests pass:
go test ./... - IMPORTANT - Branch rules:
- Stable releases (major/minor/patch): MUST be on
mainbranch - Beta releases: MUST be on
devbranch - If on wrong branch, stop and tell the user to switch branches first
- Stable releases (major/minor/patch): MUST be on
-
Create and push tag:
VERSION=vX.Y.Z # or vX.Y.Z-beta.N for beta git tag "$VERSION" git push origin "$VERSION" -
Monitor release workflow:
gh run watch --workflow release.yml --interval 10 -
Mark as prerelease (beta only):
gh release edit "$VERSION" --prereleaseThis ensures the beta won't be picked up by auto-update (which uses
/releases/latest). -
Verify release:
gh release view "$VERSION" gh release view "$VERSION" --json assets --jq '.assets[].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 · 142 lines · 6 tokens per session scan A 9844da0bd7c5
release is a command published in the GitHub repository zippoxer/subtask (340 stars, last pushed 4mo ago), licensed MIT. It adds 6 tokens to every session and 1,149 once invoked, about $0.0000 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-30.
Other commands, from other repositories
project
Manage projects: register repos, inspect, configure per-project settings, and remove.
send
Send a message to a running agent session. Use this to correct or direct a live agent mid-stream without killing and respawning it.
maintainer
Meta-skill that loads all llmwiki governance docs and exposes the three maintainer slash commands.
release
Walk the llmwiki release process step by step.
ox-session-pause
belongs in the ox CLI JSON output (guidance field), not here. Skills are agent-specific wrappers; ox serves all agents (Codex, etc.). --> Suspend the current session recording. Local cache continues to receive entries, but the upload at stop time will exclude the suspended range.
setup_research_plan
Set up or start a research project.