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/gillkyle/agent-tail/releasegit clone --depth 1 https://github.com/gillkyle/agent-tailWhat 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.00618 |
| Opus 5 | $0.00000 | $0.00309 |
| Sonnet 5 | $0.00000 | $0.00124 |
| Haiku 4.5 | $0.00000 | $0.00062 |
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 3d 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 — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release
Publish a new version of all packages to npm.
Steps
-
Pre-flight checks — Run these in parallel:
pnpm run test— all tests must passpnpm run typecheck— no type errorspnpm run build— all packages build cleanlygit status— check for uncommitted changes
-
Determine version bump — Ask the user which bump type to apply:
pnpm version:patch(0.x.Y → 0.x.Y+1) — bug fixespnpm version:minor(0.X.y → 0.X+1.0) — new featurespnpm version:major(X.y.z → X+1.0.0) — breaking changes
If the user already specified a version bump type, use that directly without asking.
-
Update the changelog — Add a new entry to
docs/src/app/changelog/page.tsxin thereleasesarray. Follow the existing format:{ version: "<new version>", date: "<Month Year>", changes: [ { type: "added" | "fixed" | "improved" | "removed", text: <>Description</> }, ], },Ask the user what changes to include if not obvious from recent commits.
-
Commit and tag — Stage all changes and create a version commit and tag:
git add -A git commit -m "v<new version>" git tag v<new version> -
Build — Run
pnpm -r run buildto generate fresh dist files. -
Prompt user to publish — Display this command for the user to run manually (requires their OTP from authenticator):
pnpm -r publish --access public --no-git-checks --otp=<OTP>Do NOT run the publish command yourself. The user must run it with their OTP code.
-
After publish — Remind the user to push the commit and tag:
git push && git push --tags
Important Notes
- All four packages (
agent-tail-core,vite-plugin-agent-tail,next-plugin-agent-tail,agent-tail) share the same version number. - Always use
pnpm publish, nevernpm publish— pnpm resolvesworkspace:^dependencies at publish time. - npm 2FA is enabled, so every publish requires an
--otpcode. - The
--no-git-checksflag is needed because the build step generates dist files that make the working tree dirty. - Core must be published first since other packages depend on it. The
pnpm -r publishcommand handles this via the workspace dependency graph.
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.
- 3d ago First seen · 59 lines · 0 tokens per session scan A 8cf1a5ec6ee6
release is a command published in the GitHub repository gillkyle/agent-tail (91 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 618 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.
Other commands, from other repositories
reapdev.versionBump
Version bump — 변경 분석 후 bump 유형을 제안, 유저가 최종 결정.
reapdev.alphaPublish
Alpha Publish — 현재 상태를 alpha 태그로 npm 배포.
review-renovate
Review and merge renovate PRs with automerge configuration updates.
speckit.assess.intake
Capture and normalize a raw idea (text, URL, ticket, or codebase pointer) into an intake note.
SHIP_RELEASE
Ship the active release/X.Y.Z — build the installer, merge to main, tag, push, and publish the GitHub release. Run after /prerelease passes.
release
This compatibility command keeps /oh-my-claudecode:release available without loading the full release skill description in every Claude Code session.