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 skills add TheSmuks/ai-project-template --skill cut-releasegit clone --depth 1 https://github.com/TheSmuks/ai-project-templateWrote 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.
[](https://agentmods.dev/skills/thesmuks/ai-project-template/cut-release)<a href="https://agentmods.dev/skills/thesmuks/ai-project-template/cut-release"><img src="https://agentmods.dev/badge/skills/thesmuks/ai-project-template/cut-release/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/thesmuks/ai-project-template/cut-release"><img src="https://agentmods.dev/badge/skills/thesmuks/ai-project-template/cut-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00022 | $0.01479 |
| Opus 5 | $0.00011 | $0.00740 |
| Sonnet 5 | $0.00004 | $0.00296 |
| Haiku 4.5 | $0.00002 | $0.00148 |
Grade A, and why
cut-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 10d 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 — 197 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Cut Release
Automated release workflow: determine version → delegate to cut-release.sh → commit → create PR → merge → publish GitHub release.
When to Use
Invoke this skill whenever you are ready to cut a new release. Common triggers:
- After merging feature branches that warrant a version bump
- Before publishing a new skill or template version
- When
[Unreleased]inCHANGELOG.mdhas accumulated changes worth releasing
Prerequisites
- All work for this release is committed and pushed
CHANGELOG.mdhas entries under[Unreleased]- You have push access to the repository
Phase 1: Determine Version (You do this)
-
Read current version from
.template-version:cat .template-version -
Read changelog to understand what has changed under
[Unreleased]:head -30 CHANGELOG.md -
Compute next version using semver:
feat:commits → minor bump (e.g.1.2.0→1.3.0)fix:commits → patch bump (e.g.1.2.0→1.2.1)feat!:orBREAKING CHANGEin body → major bump (e.g.1.2.0→2.0.0)
-
Ask user to confirm or override the computed version before proceeding.
If
[Unreleased]is empty, abort — nothing to release.
Phase 2: Execute Release (cut-release.sh does this)
Run the automation script with the version bump:
bash .omp/skills/cut-release/scripts/cut-release.sh <OLD_VERSION> <NEW_VERSION>
Example:
bash .omp/skills/cut-release/scripts/cut-release.sh 0.5.0 0.6.0
What the script does:
- Pre-flight: Verifies OLD_VERSION exists in all 7 version manifest files. Aborts if any are missing (prevents wrong version being passed).
- Update files: Replaces version in all manifest files:
File Pattern .template-versionwhole file content README.mdtemplate-vX.Y.Zin badgeAGENTS.mdversion **X.Y.Z**SETUP_GUIDE.md`X.Y.Z`.omp/skills/template-guide/SKILL.md(X.Y.Z)in examples
.omp/skills/template-guide/scripts/audit.sh | TEMPLATE_VERSION=X.Y.Z line |
| CHANGELOG.md | Creates new version section from Unreleased |
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 10d ago First seen · 197 lines · 22 tokens per session scan A 387203631793
cut-release is a skill published in the GitHub repository TheSmuks/ai-project-template (7 stars, last pushed 4mo ago), licensed MIT. It adds 22 tokens to every session and 1,479 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-31.
Other skills, from other repositories
cargo-release
PM-invocable protocol for Cargo publish and release operations in the trusty-tools Rust monorepo: semver rules, 10-step release sequence, macOS codesign safety, and cross-crate dependency ordering.
github-release-management
Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.
Release Engineering
Semantic versioning, changelog generation, and release/hotfix management so releases are predictable and reversible.
release-deploy
Release and deploy via GitHub tags and GitHub Actions (not every commit). Creates production releases from main and beta releases from staging using the GitHub CLI. Use when the user asks to release, ship, deploy, cut a version, tag a release, publish beta/production, create a GitHub Release, or bump a semver tag. On…
github-release-management
Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.
github-release-management
Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.