release

A release checklist for publishing a new version of the agentx Go module library. It checks the repository, runs tests and linting, chooses a semantic version, and updates release notes.

In plain words
What is it for?
Use it to prepare and carry out an agentx library release, including repository checks, quality checks, version selection, and changelog updates.
Why use it?
It reduces the chance of releasing from the wrong branch, with unfinished changes, failing checks, or an incorrect version number.

Command for Claude Code

Install

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.

agentmods
npx agentmods add commands/sageox/agentx/release
Clone the repo
git clone --depth 1 https://github.com/sageox/agentx

Made for: Claude Code.

Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,152 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.01152
Opus 5 $0.00000 $0.00576
Sonnet 5 $0.00000 $0.00230
Haiku 4.5 $0.00000 $0.00115

Measured yesterday against content hash b534499b5b71, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

release 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 yesterday.

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.

- Manually trigger: `curl https://proxy.golang.org/github.com/sageox/agentx/@v/vX.Y.Z.info`
.claude/commands/release.md · 182 lines

How it starts

The opening of the file, as written. The whole thing — 182 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Release agentx Go Module

Release a new version of the agentx Go module library.

Process

1. Pre-flight Checks

Verify the repository is ready for release.

# Check current branch is main
git branch --show-current

# Check for uncommitted changes
git status --porcelain

# Ensure we're up to date with remote
git fetch origin
git status -uno

Requirements:

  • Must be on main branch
  • Working directory must be clean (no uncommitted changes)
  • Local branch must be up to date with remote

2. Run Tests and Linting

Ensure all quality checks pass.

# Run full check suite
make check

All tests must pass before proceeding.

3. Determine Version Number

Check the current version and recent changes.

# List existing tags
git tag -l 'v*' | sort -V | tail -5

# View recent commits since last tag
git log $(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~20")..HEAD --oneline

Version Guidelines (Semantic Versioning):

  • MAJOR (1.0.0): Breaking API changes
  • MINOR (0.X.0): New features, backward compatible
  • PATCH (0.0.X): Bug fixes, backward compatible

4. Review and Update CHANGELOG.md

Analyze changes since the last release.

# View detailed changes
git log $(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~20")..HEAD --pretty=format:"%h %s"

# View files changed
git diff $(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~20")..HEAD --stat

Update CHANGELOG.md with:

  • New version header with today's date
  • Categorize changes under: Added, Changed, Deprecated, Removed, Fixed, Security
  • Keep descriptions concise but informative

Example entry:

## [0.3.0] - 2026-02-15

### Added
- New agent support for XYZ coding assistant

### Changed
- Improved detection accuracy for environment variables

### Fixed
- Race condition in hook manager initialization

5. Commit CHANGELOG Updates

git add CHANGELOG.md
git commit -m "chore: prepare release vX.Y.Z"

Read the full file on GitHub · 182 lines

Changes

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.

  1. yesterday First seen · 182 lines · 0 tokens per session scan A b534499b5b71

Subscribe to this mod's changes

release is a command published in the GitHub repository sageox/agentx (4 stars, last pushed 15d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,152 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-31.