actual-mcp-server: Skill for Claude Code

.claude/skills/merge-pr/SKILL.md

merge-pr is a skill for Claude Code from agigante80/actual-mcp-server. It costs 191 tokens per session (1,628 once invoked), scanned A, original, MIT.

A controlled process for integrating a GitHub pull request into the project's develop branch. It treats a request to merge as a request to run the change through the project's ticket, testing, review, and release checks.

In plain words
What is it for?
Use it when a pull request needs to be integrated, including inspecting the change, creating a tracking ticket, implementing and reviewing it, and preparing it for a later release.
Why use it?
It avoids bypassing required validation, version updates, and the live environment check, and keeps the main branch from receiving unverified changes.

Skill for Claude Code

Written for Claude Code: PreToolUse hook event. Also seen: mentions CLAUDE.md.

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/skills/merge-pr/SKILL.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 merge-pr

README.md
[![agentmods](https://agentmods.dev/badge/skills/agigante80/actual-mcp-server/merge-pr/github.svg)](https://agentmods.dev/skills/agigante80/actual-mcp-server/merge-pr)
Your own site
<a href="https://agentmods.dev/skills/agigante80/actual-mcp-server/merge-pr"><img src="https://agentmods.dev/badge/skills/agigante80/actual-mcp-server/merge-pr/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.

agentmods 80×15 button for merge-pr

Your own site · 80×15
<a href="https://agentmods.dev/skills/agigante80/actual-mcp-server/merge-pr"><img src="https://agentmods.dev/badge/skills/agigante80/actual-mcp-server/merge-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 191 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,628 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00191 $0.01628
Opus 5 $0.00096 $0.00814
Sonnet 5 $0.00038 $0.00326
Haiku 4.5 $0.00019 $0.00163

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

Security

Grade A, and why

merge-pr 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.

.claude/skills/merge-pr/SKILL.md · 138 lines

How it starts

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

Merge PR (develop-first, never direct)

A request to "merge a PR" is treated as a request to INTEGRATE the PR's change through the normal process, not to click merge. Direct PR merges are forbidden here: most PRs (Dependabot especially) target main, and merging them straight in would bypass the develop-first workflow, skip the version bump and the live /local-env full gate, and re-diverge main from develop. Every change earns its way to main the same way: develop -> ticket -> gate -> implement -> bump -> /local-env full -> CI green -> (later) an explicit release.

The hard rule

  • NEVER run gh pr merge (or merge the PR in the UI) as part of this skill.
  • A version bump and a passing /local-env full are NON-NEGOTIABLE prerequisites for anything that will eventually reach main. A PR provides neither on its own, so it must go through the ticketed pipeline first.
  • The original PR is CLOSED as superseded once its change lands on develop. It never merges to main.

Inputs

The PR number (extract it from the request; if absent, ask). Everything happens on develop; main is untouched.

Pipeline

Phase 1: Inspect the PR

Read it so the integration ticket is accurate and the change is reproducible:

gh pr view <n> --json title,baseRefName,headRefName,labels,author,url,mergeable,statusCheckRollup
gh pr diff <n>                 # the actual change
gh pr diff <n> --name-only     # files touched

Classify it: dependency bump (Dependabot) vs code change; security/CVE driver (check npm audit for the package and the PR's referenced advisories); which files; whether the dep is direct or transitive (npm ls <pkg>). Note the resolved target versions from the lock diff so they can be reproduced exactly.

Phase 2: Refuse the direct merge, explicitly

State plainly that the PR will not be merged directly, and that its change is being routed through the develop-first pipeline (ticket + gate + bump + /local-env full). This is the policy, not a limitation.

Read the full file on GitHub · 138 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. 11d ago First seen · 138 lines · 191 tokens per session scan A 8c95280296aa

Subscribe to this mod's changes

merge-pr is a skill published in the GitHub repository agigante80/actual-mcp-server (54 stars, last pushed yesterday), licensed MIT. It adds 191 tokens to every session and 1,628 once invoked, about $0.0010 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 skills, from other repositories