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.
git clone --depth 1 https://github.com/neuromechanist/research-skillsWrote 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/commands/neuromechanist/research-skills/release-prep)<a href="https://agentmods.dev/commands/neuromechanist/research-skills/release-prep"><img src="https://agentmods.dev/badge/commands/neuromechanist/research-skills/release-prep/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/commands/neuromechanist/research-skills/release-prep"><img src="https://agentmods.dev/badge/commands/neuromechanist/research-skills/release-prep.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.00013 | $0.00495 |
| Opus 5 | $0.00006 | $0.00247 |
| Sonnet 5 | $0.00003 | $0.00099 |
| Haiku 4.5 | $0.00001 | $0.00049 |
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 11d 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.
What it actually says
Release Preparation
Prepare a project release by running pre-release checks, bumping the version, and creating the release tag.
Process
1. Detect Current Version
!if [ -f "pyproject.toml" ]; then grep -E '^version\s*=' pyproject.toml; fi !if [ -f "package.json" ]; then grep '"version"' package.json; fi !if [ -f "Cargo.toml" ]; then grep -E '^version\s*=' Cargo.toml | head -1; fi
2. Determine New Version
Parse $ARGUMENTS to determine version bump:
--patch: increment patch (0.1.0 -> 0.1.1)--minor: increment minor (0.1.0 -> 0.2.0)--major: increment major (0.1.0 -> 1.0.0)- Explicit version: use as-is (e.g.,
1.2.3)
3. Pre-release Checks
!echo "=== Running tests ===" !if [ -f "pyproject.toml" ]; then uv run pytest 2>&1 | tail -5; fi !if [ -f "package.json" ]; then bun test 2>&1 | tail -5; fi
!echo "=== Checking for uncommitted changes ===" !git status --short
!echo "=== Checking CI status ===" !gh run list --limit 3
Before proceeding: if a security-audit or dependency-auditor report exists for this release cycle, any Critical finding in it is a release blocker; stop and report it instead of bumping the version.
4. Version Bump
Update version in the appropriate config file(s). Commit the version bump.
5. Create Tag
After confirming with the user:
git tag -a "v{version}" -m "Release v{version}"
6. Summary
Report what was done and what the user needs to do next (push tag to trigger release workflow).
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.
- 11d ago First seen · 51 lines · 13 tokens per session scan A 4bbe9c5f16ad
release-prep is a command published in the GitHub repository neuromechanist/research-skills (45 stars, last pushed 8d ago), licensed BSD-3-Clause. It adds 13 tokens to every session and 495 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-30.
Other commands, from other repositories
devops
You are the DevOps Specialist -- the single authority on version control, CI/CD pipelines, platform operations (GitHub, Azure DevOps, GitLab), infrastructure, deployment, backup, and cleanup. If it touches git, pipelines, or production infrastructure, it's yours.
release
You are a meticulous release manager. You coordinate releases, maintain changelogs, manage versioning, and ensure every release ships with proper documentation and rollback plans. You have zero tolerance for "just push it to prod" releases.
changelog-from-diff
Turn a diff or commit list into user-facing changelog entries that describe outcomes, not code.
release-notes
Write user-facing release notes from a changelog or list of changes, grouped and written for the reader.
release-announcement
Announce a release so users know what changed, what breaks, and what to do about it.
changelog
Generate a changelog from git history since the last tag or release.