Borrowing it
Nothing to install: this file belongs to couimet/rangeLink. 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/couimet/rangeLink/main/.claude/skills/release-prep/SKILL.mdgit clone --depth 1 https://github.com/couimet/rangeLinkWrote 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/couimet/rangelink/release-prep)<a href="https://agentmods.dev/skills/couimet/rangelink/release-prep"><img src="https://agentmods.dev/badge/skills/couimet/rangelink/release-prep.svg" alt="Measured on agentmods" 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.00000 | $0.01218 |
| Opus 5 | $0.00000 | $0.00609 |
| Sonnet 5 | $0.00000 | $0.00244 |
| Haiku 4.5 | $0.00000 | $0.00122 |
Grade A, and why
release-prep 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 7d 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 — 89 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Prep
Finish the GitHub tracking artifacts for a release of the VS Code extension after the release lock workflow has run. The lock script (pnpm release:lock:vscode-extension X.Y.Z) creates the QA issue and the dev.to issue and adds them to the release board; this skill creates the remaining cross-repo couimet.github.io article-registration issue, adds it to the board, and reports all three URLs.
Input: X.Y.Z target version (e.g., /release-prep 2.1.0)
Step 1: Verify the release lock completed
The lock workflow must have run first; its console summary prints this skill prompt. Confirm its state:
packages/rangelink-vscode-extension/qa/release-testing-instructions-vX.Y.Z.mdexists- Its frontmatter contains both
qa_issue_url:anddevto_issue_url:with real URLs
If either check fails, stop and print: run pnpm release:lock:vscode-extension X.Y.Z first, then re-run this skill.
Step 2: Read the issue URLs from the instructions frontmatter
Extract both URLs from the frontmatter of packages/rangelink-vscode-extension/qa/release-testing-instructions-vX.Y.Z.md:
- QA issue URL: the value of
qa_issue_url - Dev.to issue URL: the value of
devto_issue_url
These are the issues the lock script created and already added to the release board.
Step 3: Check for an existing cross-repo issue
The article-registration issue lives in couimet/couimet.github.io. Check for an existing open issue with an exact title match before creating a new one, capturing the URL when one exists:
EXISTING_ISSUE_URL=$(gh issue list \
--repo couimet/couimet.github.io \
--state open \
--search "Register RangeLink X.Y.Z article on the site in:title" \
--json title,url --limit 100 \
--jq '.[] | select(.title == "Register RangeLink X.Y.Z article on the site") | .url' \
| head -1)
The --jq filter selects only an issue whose title EXACTLY matches Register RangeLink X.Y.Z article on the site, and --limit 100 covers the full expected result set; together they guard against an older open issue with a similar title being misidentified as this release's registration issue. If $EXISTING_ISSUE_URL is non-empty, reuse that exact URL for the Step 5 board step and the Step 6 report and skip creation, preserving the skill's re-runnability. Step 4 (creation) runs only when no exact match was found.
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.
- 7d ago First seen · 89 lines · 0 tokens per session scan A 563d1d3b3544
release-prep is a skill published in the GitHub repository couimet/rangeLink (10 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,218 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-31.
Other skills, from other repositories
omh-deploy-and-monitor
This is a Hermes-native deploy-and-monitor workflow skill.
git-wrapup
Land working-tree changes as logical commits — the work grouped by concern, topped by a release commit (version bump, changelog, regenerated artifacts) and an annotated tag. Verify, commit, tag. Stops at "committed and tagged locally" — no push, no publish. The release-and-publish skill picks up from here. Distilled…
release-and-publish
Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…
release-notes
Draft user-facing release notes from a git log range. Trigger when the user asks for "release notes", "changelog entry", or "what shipped this week" with a git ref range. Output is markdown sections grouped by Features / Fixes / Breaking with PR links.
finalize
Finalize orphaned recordings - stop processes, compress, push to orphan branch. TRIGGERS - finalize recording, stop asciinema, orphaned recording.
github
Use when automating GitHub issues, pull requests, reviews, CI checks, labels, releases, or engineering collaboration loops through the GitHub CLI.