actual-mcp-server: Agent for Claude Code

.claude/agents/release-manager.md

release-manager is an agent for Claude Code from agigante80/actual-mcp-server. It costs 50 tokens per session (1,963 once invoked), scanned A, original, MIT.

A release-management agent for an MCP server that connects AI assistants with Actual Budget. It handles version changes, documentation updates, GitHub issues and pull requests, and the project's branch rules.

In plain words
What is it for?
Use it to bump patch, minor, or major versions, sync documentation, triage or close GitHub issues, follow pull-request conventions, and push changes to the development branch.
Why use it?
It keeps development work on the correct branch and reduces mistakes in version numbering, issue handling, and GitHub workflow.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; positional $N argument.

This is agigante80/actual-mcp-server's own configuration. It tells Claude Code how to work on actual-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything actual-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to agigante80/actual-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/agigante80/actual-mcp-server/main/.claude/agents/release-manager.md
Clone the repo
git clone --depth 1 https://github.com/agigante80/actual-mcp-server

Made for: Claude Code.

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-manager

README.md
[![agentmods](https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/release-manager.svg)](https://agentmods.dev/agents/agigante80/actual-mcp-server/release-manager)
Your own site
<a href="https://agentmods.dev/agents/agigante80/actual-mcp-server/release-manager"><img src="https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/release-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,963 The whole file, excluding the scripts and references it only reads on demand.
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.00050 $0.01963
Opus 5 $0.00025 $0.00981
Sonnet 5 $0.00010 $0.00393
Haiku 4.5 $0.00005 $0.00196

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

Security

Grade A, and why

release-manager 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.

.claude/agents/release-manager.md · 177 lines

How it starts

The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the release manager for actual-mcp-server. You handle version bumps, documentation sync, GitHub issue/PR lifecycle, and git workflow enforcement.

Git workflow — non-negotiable

  • Always work on develop. Never push directly to main.
  • Push to origin/develop after every commit.
  • main is only updated with explicit user permission ("push to main" or "release").
  • When the user says "push to github" without specifying a branch → push to develop.

Version bump commands

npm run release:patch   # 0.4.35 → 0.4.36  (bug fixes)
npm run release:minor   # 0.4.35 → 0.5.0   (new tools or features)
npm run release:major   # 0.4.35 → 1.0.0   (breaking changes)

These run scripts/version-bump.js which:

  1. Production-tag freshness check (added 2026-05-07). Before bumping, the script queries git ls-remote --tags origin and aborts with a clear remediation message if the local VERSION is BEHIND the latest published vX.Y.Z tag. This guards against the failure mode where the scheduled Dependency Update & Auto-Release workflow has already shipped a release while a local branch was unsynced — bumping in that state would reuse a version number that's already on production. If you see the abort, run git fetch origin && git merge origin/main (or --ff-only if your branch is an ancestor) before retrying. Override only with --force when production is genuinely wrong.
  2. Bumps VERSION file and package.json
  3. Updates all **Version:** and **Tool Count:** markers across docs automatically
  4. Files updated: every **Version:** / **Tool Count:** marker across README.md, every docs/*.md (the script enumerates the docs/ directory dynamically), and .github/copilot-instructions.md

Never edit version markers manually — always use the script.

To sync markers without bumping the version:

npm run docs:sync

MANDATORY pre-bump algorithm (the agent MUST execute this before invoking any release:* command)

Read the full file on GitHub · 177 lines

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 · 177 lines · 50 tokens per session scan A 1e6baea31ecc

Subscribe to this mod's changes

release-manager is an agent published in the GitHub repository agigante80/actual-mcp-server (50 stars, last pushed yesterday), licensed MIT. It adds 50 tokens to every session and 1,963 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-30.

Related

Other agents, from other repositories

pm-release-conductor

Guided release runbook with 6 explicit gates (G0 Pre-tag readiness, G1 Adversarial review, G2 Version bump + CHANGELOG prep, G2.5 Commit release-prep + re-verify, G3 Tag + push, G4 Post-tag hygiene). Chains to pm-skill-auditor at G0 (and again at G2.5 verification) and to pm-changelog-curator at G2. Refuses to advance…

product-on-purpose/pm-skills · 172 tokens

community-manager

Open source community yonetim agent'i. GitHub issue triage, PR onceliklendirme, contributor onboarding, release notes, community health metrikleri. vibecosystem ve diger acik kaynak projeler icin.

vibeeval/vibecosystem · 51 tokens

github

You are the GitHub agent for K:BOT (isaacsight/kernel). You manage the repository's public surface: issues, pull requests, releases, labels, discussions, and community engagement.

isaacsight/kernel · 0 tokens

project-shipper

PROACTIVELY use this agent when approaching launch milestones, release deadlines, or go-to-market activities. This agent specializes in coordinating launches, managing release processes, and executing go-to-market strategies within the 6-day development cycle. Should be triggered automatically when release dates are…

xbim08/awesome-claude-code-plugins · 0 tokens

release-manager

Release manager for Flutter apps handling versioning, changelog management, Fastlane automation, and store submissions to App Store and Google Play. Masters code signing, build configuration, and CI/CD with GitHub Actions.

smicolon/ai-kit · 45 tokens

Shipper

Post-review shipping agent — commits, updates the roadmap, captures postmortem, and optionally creates a PR after a PASS verdict.

srnichols/plan-forge · 29 tokens