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/existential-birds/beagle/release-taggit clone --depth 1 https://github.com/existential-birds/beagleWhat 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.00011 | $0.00766 |
| Opus 5 | $0.00005 | $0.00383 |
| Sonnet 5 | $0.00002 | $0.00153 |
| Haiku 4.5 | $0.00001 | $0.00077 |
Grade A, and why
release-tag 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- release-tag — 88% identical, 45 lines differ
How it starts
The opening of the file, as written. The whole thing — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Tag
Create and push a version tag after a release PR has been merged.
Input: Version number (e.g., 1.9.0) - the v prefix is optional
$ARGUMENTS
Prerequisites
Verify the release PR is merged and we're ready to tag:
# Ensure we're on main with latest changes
git checkout main
git pull
# Extract version from input (strip 'v' prefix if present)
VERSION="${ARGUMENTS#v}"
# Verify plugin.json version matches
echo "Checking version consistency..."
PLUGIN_VERSION=$(grep '"version"' .claude-plugin/plugin.json | sed 's/.*"\([0-9.]*\)".*/\1/')
if [ "$PLUGIN_VERSION" != "$VERSION" ]; then
echo "ERROR: plugin.json version ($PLUGIN_VERSION) doesn't match requested version ($VERSION)"
echo "Ensure the release PR was merged first."
exit 1
fi
echo "plugin.json version: $PLUGIN_VERSION - matches"
If the version doesn't match, the script aborts with an error. The release PR must be merged first.
Step 1: Verify CHANGELOG Entry
Confirm the version has a changelog entry:
grep "## \[${VERSION}\]" CHANGELOG.md
If no entry exists, abort - the release PR may not have been merged.
Step 2: Check Tag Doesn't Exist
git tag -l "v${VERSION}"
If the tag already exists, inform the user and ask if they want to view the release instead.
Step 3: Create Annotated Tag
Generate a brief summary from the CHANGELOG for the tag message:
# Extract the first category and its first item from this version's section
SUMMARY=$(sed -n "/## \[${VERSION}\]/,/## \[/p" CHANGELOG.md | grep "^- " | head -1 | sed 's/^- //' | cut -c1-60)
echo "Tag summary: ${SUMMARY}"
Create the tag:
git tag -a "v${VERSION}" -m "Release v${VERSION} - ${SUMMARY}"
Step 4: Push Tag
git push origin "v${VERSION}"
Step 5: Create GitHub Release
Create the GitHub release using the changelog content:
# Extract changelog section for this version
NOTES=$(sed -n "/## \[${VERSION}\]/,/## \[/p" CHANGELOG.md | sed '$ d')
# Create GitHub release
gh release create "v${VERSION}" --title "v${VERSION}" --notes "$NOTES"
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 · 123 lines · 11 tokens per session scan A 90cf840cb5c3
release-tag is a command published in the GitHub repository existential-birds/beagle (79 stars, last pushed 24d ago), licensed Apache-2.0. It adds 11 tokens to every session and 766 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-30.
Other commands, from other repositories
review-renovate
Review and merge renovate PRs with automerge configuration updates.
release
Perform a full release: generate release notes, bump version, commit, tag, and push.
release
Create a full stable release for the project. Optionally pass a title suffix (e.g., "Template Presets Fix") or extra notes.
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.
release
The pre-tag controller: version sync, changelog, clean tree, gate, and suite — every failure listed, the tag printed, never run.