Borrowing it
Nothing to install: this file belongs to exileum/meta-mcp. 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/exileum/meta-mcp/main/.claude/skills/meta-mcp-release/SKILL.mdgit clone --depth 1 https://github.com/exileum/meta-mcpWrote 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/exileum/meta-mcp/meta-mcp-release)<a href="https://agentmods.dev/skills/exileum/meta-mcp/meta-mcp-release"><img src="https://agentmods.dev/badge/skills/exileum/meta-mcp/meta-mcp-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/exileum/meta-mcp/meta-mcp-release"><img src="https://agentmods.dev/badge/skills/exileum/meta-mcp/meta-mcp-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00145 | $0.01462 |
| Opus 5 | $0.00072 | $0.00731 |
| Sonnet 5 | $0.00029 | $0.00292 |
| Haiku 4.5 | $0.00015 | $0.00146 |
Grade A, and why
meta-mcp-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 — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release meta-mcp
You are releasing version $ARGUMENTS of meta-mcp.
If no version is provided, ask the user for the target version number (semver: X.Y.Z).
This workflow works best with extended thinking enabled — version bump validation benefits from careful checking.
Step 1: Validate Prerequisites
Create tasks to track progress. Run these checks first — if any fail, stop and explain what's wrong.
-
Branch check — must be on
main:git branch --show-current -
Clean working tree — no uncommitted changes:
git status --porcelain -
Synced with remote — fetch and check:
git fetch origin main git rev-list --left-right --count origin/main...HEADLeft > 0 means behind remote, right > 0 means ahead. Both should be 0.
-
Tag doesn't exist yet:
git tag -l "v$VERSION" gh release view "v$VERSION" 2>&1
Step 2: Validate and Update CHANGELOG.md
- Read
CHANGELOG.mdand find the[Unreleased]section. - It must have content under
### Fixed,### Changed, or### Added— reject if empty. - Show the unreleased changes and use
AskUserQuestionto ask for confirmation before proceeding. - Add a new empty
## [Unreleased]section at the top. - Rename the old
[Unreleased]content to## [X.Y.Z] — YYYY-MM-DD(today's date).
Step 3: Bump Version Everywhere
First, determine the current version from package.json. Then search for ALL occurrences using the Grep tool:
pattern: "CURRENT_VERSION" (the literal current version string)
glob: "*.{json,ts,md,txt}"
exclude: node_modules/, dist/, package-lock.json
Files that typically need version bumps:
| File | Location |
|---|---|
package.json |
"version": "X.Y.Z" |
server.json |
"version": "X.Y.Z" (appears twice) |
Note:
src/index.tsreads the version frompackage.jsonat runtime viacreateRequire— no manual bump needed there.
After finding all occurrences, update each one. Do not touch version references inside node_modules/, dist/, or package-lock.json — the lock file will be regenerated.
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 · 147 lines · 145 tokens per session scan A 8994d434cb8a
meta-mcp-release is a skill published in the GitHub repository exileum/meta-mcp (12 stars, last pushed today), licensed MIT. It adds 145 tokens to every session and 1,462 once invoked, about $0.0007 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
release-init
Detect project type and generate a tailored project-level /release skill. Run once per project to set up releasing.
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
multi-agent-release-manager
Cleans up the workspace, formats code, runs presubmit checks, and uploads CLs to Gerrit.
release-notes
Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.
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.
updater_guide
Guidance for checking for and installing Row-Bot updates.