release-isparto

release-isparto is a command for coding agents from BinaryHB0916/iSparto. It costs 0 tokens per session (613 once invoked), scanned A, original, MIT.

A command for publishing a new software version from a Git repository.

In plain words
What is it for?
It helps run patch, minor, or major releases using the repository’s VERSION file, CHANGELOG.md, Git branch, commits, and pull requests.
Why use it?
It removes the need to calculate versions, check release conditions, prepare changelog entries, and create release changes manually.

Command

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/binaryhb0916/isparto/release-isparto
Clone the repo
git clone --depth 1 https://github.com/BinaryHB0916/iSparto

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for release-isparto

README.md
[![agentmods](https://agentmods.dev/badge/commands/binaryhb0916/isparto/release-isparto.svg)](https://agentmods.dev/commands/binaryhb0916/isparto/release-isparto)
Your own site
<a href="https://agentmods.dev/commands/binaryhb0916/isparto/release-isparto"><img src="https://agentmods.dev/badge/commands/binaryhb0916/isparto/release-isparto.svg" alt="Measured on agentmods" height="20"></a>
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 613 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00613
Opus 5 $0.00000 $0.00307
Sonnet 5 $0.00000 $0.00123
Haiku 4.5 $0.00000 $0.00061

Measured 3d ago against content hash 29284eb6775f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

commands/release-isparto.md · 44 lines

How it starts

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

You are the Team Lead. The user has run /release-isparto to publish a new version.

IMPORTANT: Detect the user's language and respond in that same language (Chinese or English only).

Your responsibility: Execute the release process fully automatically. No confirmations, no pauses.

Version calculation

Parse the user's argument (if any) to determine bump type:

  • /release-isparto or /release-isparto patch → patch (X.Y.Z+1)
  • /release-isparto minor → minor (X.Y+1.0)
  • /release-isparto major → major (X+1.0.0)

Read the VERSION file, compute the new version number.

Execution

  1. Verify preconditions (all must pass — if any fails, follow the recovery path):

    • Current branch must be main — if not, run git checkout main && git pull
    • Working tree must be clean — if not, report dirty files and stop
    • CHANGELOG.md must have an [Unreleased] section with content — if empty, execute the changelog prep flow: a. git checkout -b docs/changelog-MMDD b. Write changelog entries under [Unreleased] (review git log since last release tag for changes) c. git add CHANGELOG.md && git commit && git push d. Create PR via gh pr create, merge via gh pr merge --merge e. git checkout main && git pull && git branch -d docs/changelog-MMDD f. Re-run precondition checks from the top
    • Tag v<new-version> must not already exist — if it does, report and stop
  2. Execute release script:

    • Run: bash scripts/release.sh <new-version>
    • Monitor output for errors. If any step fails, report the error and the script's suggested recovery command to the user
  3. Post-release verification:

    • Confirm GitHub Release exists: gh release view v<new-version>
    • Confirm tag exists locally: git fetch --tags && git tag -l v<new-version>
    • Inform the user (in user's language) that v has been published, and include the GitHub Release URL https://github.com/BinaryHB0916/iSparto/releases/tag/v<new-version>

CRITICAL RULES:

  • NEVER run git tag or git push origin <tag> directly — the release script handles tagging via GitHub API
  • NEVER commit directly on main — the release script creates a release/ branch automatically
  • If the release script fails mid-way, do NOT retry manually — report the error and the recovery command to the user
  • This is NOT a development task — do NOT create a feature branch, do NOT spawn Codex, do NOT run Doc Engineer audit. The release script is self-contained.

Read the full file on GitHub · 44 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. 3d ago First seen · 44 lines · 0 tokens per session scan A 29284eb6775f

Subscribe to this mod's changes

release-isparto is a command published in the GitHub repository BinaryHB0916/iSparto (59 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 613 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.