Borrowing it
Nothing to install: this file belongs to SafeBreach/safebreach-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/SafeBreach/safebreach-mcp/main/.claude/skills/mcp-create-release/SKILL.mdgit clone --depth 1 https://github.com/SafeBreach/safebreach-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/safebreach/safebreach-mcp/mcp-create-release)<a href="https://agentmods.dev/skills/safebreach/safebreach-mcp/mcp-create-release"><img src="https://agentmods.dev/badge/skills/safebreach/safebreach-mcp/mcp-create-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/safebreach/safebreach-mcp/mcp-create-release"><img src="https://agentmods.dev/badge/skills/safebreach/safebreach-mcp/mcp-create-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.00060 | $0.02003 |
| Opus 5 | $0.00030 | $0.01001 |
| Sonnet 5 | $0.00012 | $0.00401 |
| Haiku 4.5 | $0.00006 | $0.00200 |
Grade A, and why
mcp-create-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 12d 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 — 230 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create MCP Release
Prepare a release candidate for the SafeBreach MCP servers.
Bumps version in pyproject.toml, generates changelog from git history, and creates a GitHub PR.
Step 1: Validate Environment
- Read
pyproject.tomlin the repo root — confirm it containsname = "safebreach-mcp-server". If not found, halt: "This command must be run from the safebreach-mcp repository root." - Check working tree is clean:
If dirty, present options via AskUserQuestion:git status --porcelain- "Stash changes" — run
git stash push --include-untracked -m "pre-release stash"then continue (the--include-untrackedflag is required to capture new/untracked files, not just modified ones) - "Abort" — stop the workflow
- "Stash changes" — run
Step 2: Ask Version Bump Type
Present the choice via AskUserQuestion:
- Minor — increment minor version, reset patch (e.g., 1.1.0 → 1.2.0)
- Major — increment major version, reset minor and patch (e.g., 1.1.0 → 2.0.0)
Step 3: Determine Current Version and Calculate Next
- Read
pyproject.tomland extract theversionfield from line 3 (format:version = "X.Y.Z") - Parse into major, minor, patch integers
- Apply the bump:
- Minor: increment minor, set patch to 0
- Major: increment major, set minor and patch to 0
- Display:
Version: {current} → {next}
Step 4: Create Release Branch
- Ensure on main with latest:
git checkout main && git pull origin main - Construct branch name:
release_{next_version}(e.g.,release_1.2.0) - Check if branch already exists:
git branch -a --list "*release_{next_version}*" - If it exists, ask the user via AskUserQuestion:
- "Use existing branch" — checkout the existing branch
- "Create with suffix" — use
release_{next_version}-v2 - "Abort" — stop the workflow
- Create and checkout:
git checkout -b {branch_name}
Step 5: Bump Version
Use the Edit tool to update pyproject.toml line 3, changing the old version string to the new one:
version = "{current}" → version = "{next}"
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.
- 12d ago First seen · 230 lines · 60 tokens per session scan A b2b69f23c862
mcp-create-release is a skill published in the GitHub repository SafeBreach/safebreach-mcp (7 stars, last pushed yesterday), licensed BSD-3-Clause. It adds 60 tokens to every session and 2,003 once invoked, about $0.0003 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
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.
changelog-composer
Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".