Borrowing it
Nothing to install: this file belongs to ngthluu/loope. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/ngthluu/loope/main/.claude/skills/release-new-version/SKILL.mdgit clone --depth 1 https://github.com/ngthluu/loopeWrote 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/ngthluu/loope/release-new-version)<a href="https://agentmods.dev/skills/ngthluu/loope/release-new-version"><img src="https://agentmods.dev/badge/skills/ngthluu/loope/release-new-version.svg" alt="Measured on agentmods" 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.00038 | $0.01535 |
| Opus 5 | $0.00019 | $0.00767 |
| Sonnet 5 | $0.00008 | $0.00307 |
| Haiku 4.5 | $0.00004 | $0.00153 |
Grade A, and why
release-new-version 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 6d 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 — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Cutting a loope release
Announce at start: "Using release-new-version to cut a release."
This procedure is stop and report, never unwind. If any step fails, say
which step failed and what has already happened, then stop. Never run
git reset, git tag -d, git push --force, gh release delete,
git stash, git checkout, or git pull in this skill — not even to clean up
after yourself. A half-finished run is safe to re-run.
Never propose a version number. The author types it.
Step 1 — Preflight
Run in one Bash call:
echo "branch: $(git rev-parse --abbrev-ref HEAD)"
echo "dirty: [$(git status --porcelain)]"
git fetch --tags origin
echo "divergence: $(git rev-list --left-right --count origin/main...HEAD)"
gh auth status
Stop if any of these hold, reporting exactly which check failed:
| Check | Stop if |
|---|---|
On main |
branch is not main |
| Clean tree | git status --porcelain output is non-empty |
| Synced with origin | either number in the divergence count is non-zero |
| GitHub CLI ready | gh auth status exited non-zero |
Do not stash, reset, checkout, or pull on the author's behalf. Tell them what to fix and stop.
Step 2 — Establish the range
git describe --tags --abbrev=0
- If this fails (no tags yet): the range is the full history — use
HEADas the range for the log/diff commands below, and introduce the note as the first release when you present it. - Otherwise the range is
<latest>..HEAD.
Then:
git rev-list --count <range>
If the count is 0, report that there is nothing to release since <latest>
and stop.
Step 3 — Collect the material
git log --no-merges --pretty=format:'%h %s%n%b---' <range>
git diff --stat <range>
Merge commits are excluded: this repo does not squash, so the PR merge commits
carry nothing the branch commits do not. Use --stat, not the full diff — the
commit subjects and bodies carry the intent, and the stat keeps the subagent
input bounded.
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.
- 6d ago First seen · 177 lines · 38 tokens per session scan A e246170773d7
release-new-version is a skill published in the GitHub repository ngthluu/loope (11 stars, last pushed 14d ago), licensed MIT. It adds 38 tokens to every session and 1,535 once invoked, about $0.0002 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 skills, from other repositories
version-bump
Automated semantic versioning and release workflow for Claude Code plugins. Handles version increments across package.json, marketplace.json, plugin.json manifests, build verification, git tagging, GitHub releases, and changelog generation. NPM publishing is the final human-required handoff because the maintainer…
batch
Research and plan a large-scale change, then execute it in parallel across 5–30 isolated worktree agents that each open a PR.
github
GitHub via gh CLI: PRs, issues, reviews, repos, auth.
release
Use this skill for EVERY ClawRouter release. Enforces the full checklist — version sync, CHANGELOG, build, tests, npm publish, git tag, GitHub release. No step can be skipped.
pack-submit
Package one of this agent's own skills as a standalone community pack and submit it to the aeon registry as a PR.
shiplog
Recap of everything shipped since the last run - cross-repo PRs, security fixes, star deltas, and X traction, synthesized into a digest article and a ready-to-post shiplog in your voice.