release-management

release-management is a cursor rule for Cursor from floriscornel/todo-mcp. It costs 461 tokens per session, scanned A, original, MIT.

A set of release-management rules for an npm project, covering version numbers, changelogs, release branches, pull requests, GitHub releases, tests, and automated publishing. Semantic versioning uses patch, minor, and major numbers to describe the size of a change.

In plain words
What is it for?
Use it to prepare releases, choose version bumps, update changelogs, run coverage tests, create release pull requests and GitHub releases, and trigger automated npm publishing.
Why use it?
It provides a repeatable release checklist and reduces mistakes such as publishing manually or forgetting version, changelog, and test updates.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit Use it to prepare releases, choose version bumps, update changelogs, run coverage tests, create release pull requests and GitHub releases, and trigger automated npm publishing.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/floriscornel/todo-mcp/release-management
Install

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.

Clone the repo
git clone --depth 1 https://github.com/floriscornel/todo-mcp

Made for: Cursor.

Wrote 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.

agentmods badge for release-management

README.md
[![agentmods](https://agentmods.dev/badge/rules/floriscornel/todo-mcp/release-management.svg)](https://agentmods.dev/rules/floriscornel/todo-mcp/release-management)
Your own site
<a href="https://agentmods.dev/rules/floriscornel/todo-mcp/release-management"><img src="https://agentmods.dev/badge/rules/floriscornel/todo-mcp/release-management.svg" alt="Measured on agentmods" height="20"></a>
Per session 461 This file is loaded in full into every session.
When invoked 461 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00461 $0.00461
Opus 5 $0.00230 $0.00230
Sonnet 5 $0.00092 $0.00092
Haiku 4.5 $0.00046 $0.00046

Measured 8d ago against content hash c74ecabcb0bf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

release-management 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 8d 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.

.cursor/rules/release-management.mdc · 61 lines

What it actually says

Release Management

Version Bumping

When preparing a release:

  1. Never run npm publish manually - This is handled by GitHub Actions

  2. Update version in package.json and src/index.ts using semantic versioning:

    • Patch (0.1.2 → 0.1.3): Bug fixes, documentation updates
    • Minor (0.1.2 → 0.2.0): New features, backward compatible
    • Major (0.1.2 → 1.0.0): Breaking changes
  3. Update CHANGELOG.md with release notes:

    • What's new
    • Bug fixes
    • Breaking changes (if any)
    • Migration notes

Release Process

  1. Prepare Release Branch:

    git checkout -b release/v0.1.3
    
  2. Update Version & Changelog:

    • Bump version in package.json and src/index.ts
    • Update CHANGELOG.md
    • Run npm run test:coverage to ensure everything works
  3. Create Release PR:

    • Title: "Release v0.1.3"
    • Include changelog in PR description
    • Ensure all CI checks pass
  4. Create GitHub Release:

    • After PR is merged, create a GitHub release
    • Tag format: v0.1.3
    • Include changelog in release notes
    • This triggers automatic NPM publishing

Pre-Release Checklist

  • All tests pass with coverage
  • Documentation is up to date
  • CHANGELOG.md is updated
  • Version number follows semver
  • No breaking changes without major version bump
  • CI pipeline passes on main branch

Automated Publishing

The GitHub Actions workflow handles:

  • Building the package
  • Running final tests
  • Publishing to NPM registry
  • Creating distribution files

Never bypass this process - it ensures consistency and proper CI validation.

Changes

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.

  1. 8d ago First seen · 61 lines · 461 tokens per session scan A c74ecabcb0bf

Subscribe to this mod's changes

release-management is a cursor rule published in the GitHub repository floriscornel/todo-mcp (2 stars, last pushed 6mo ago), licensed MIT. It adds 461 tokens to every session, about $0.0023 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.