Borrowing it
Nothing to install: this file belongs to lukas-grigis/ralphctl. 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/lukas-grigis/ralphctl/main/.claude/skills/merge-pr/SKILL.mdgit clone --depth 1 https://github.com/lukas-grigis/ralphctlWrote 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/lukas-grigis/ralphctl/merge-pr)<a href="https://agentmods.dev/skills/lukas-grigis/ralphctl/merge-pr"><img src="https://agentmods.dev/badge/skills/lukas-grigis/ralphctl/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.
<a href="https://agentmods.dev/skills/lukas-grigis/ralphctl/merge-pr"><img src="https://agentmods.dev/badge/skills/lukas-grigis/ralphctl/merge-pr.svg" alt="Reviewed on agentmods" width="80" 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.00070 | $0.01061 |
| Opus 5 | $0.00035 | $0.00531 |
| Sonnet 5 | $0.00014 | $0.00212 |
| Haiku 4.5 | $0.00007 | $0.00106 |
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 9d 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.
Merge PR
Standard end-of-PR landing flow for lukas-grigis/ralphctl.
Repo + branch-protection facts that shape this flow (verified via gh repo view /
gh api .../branches/main/protection):
- Only merge commits allowed — squash and rebase are off.
gh pr merge --squashwould 422. deleteBranchOnMerge: true— branches auto-delete after merge. Do not pass--delete-branch.mainrequires 1 approving review. Solo maintainer can't self-approve, so admin bypass is the standard tool here.enforce_adminsisfalse, so the bypass is honored by the API.
Args
<pr-number>(optional) — when omitted, derive from the current branch viagh pr view --json number,....
Flow
-
Resolve the PR. If no number given:
gh pr view --json number,title,state,headRefName,baseRefName,mergeableBail if
state != OPENorbaseRefName != main. Show the usertitle+headRefNameso they see what they're about to land. -
Watch CI. Block until checks finish:
gh pr checks <num> --watch --fail-fastOn failure: surface the failing check name + URL. Do not retry, do not merge. Hand back to the user — they decide whether to push a fix or close the PR.
-
Merge with admin bypass.
gh pr merge <num> --merge --admin--adminis the load-bearing flag — it tells the GitHub API to use the caller's admin permissions to merge through the required-review rule. -
Confirm. Print the merge commit SHA:
gh pr view <num> --json mergeCommit -q .mergeCommit.oid -
Clean up the trailing branch. The remote branch is gone (
deleteBranchOnMerge: truehandled it), but the local copy and stale remote-tracking ref still linger. Switch back tomainand delete them:BRANCH="$(gh pr view <num> --json headRefName -q .headRefName)" git checkout main git pull --ff-only origin main # fast-forward to the new merge commit git fetch --prune # drop the stale `origin/<branch>` ref git branch -D "$BRANCH" 2>/dev/null || true # ok if it was never checked out locally
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.
- 9d ago First seen · 89 lines · 70 tokens per session scan A a8a53354ae46
merge-pr is a skill published in the GitHub repository lukas-grigis/ralphctl (23 stars, last pushed today), licensed MIT. It adds 70 tokens to every session and 1,061 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.
Other skills, from other repositories
pypi-release
This skill should be used when releasing tunacode-cli to PyPI. It keeps the existing local release checks, then hands the actual PyPI upload to a GitHub Actions workflow that uses the repository's PYPIAPITOKEN secret.
release
Prepare a version release — bump version files, commit, and tag. Just run /release with no arguments.
release-init
Detect project type and generate a tailored project-level /release skill. Run once per project to set up releasing.
github
Full-featured GitHub integration via the gh CLI. Manage repositories, issues, pull requests, CI/CD workflows, releases, and make raw API calls.
opensource
Open-source pipeline: fork, sanitize, and package private projects for safe public release. Chains 3 agents (forker, sanitizer, packager). Triggers: '/opensource', 'open source this', 'make this public', 'prepare for open source'.
release
Release a new version of the DevoxxGenie IntelliJ plugin — prompt for the target version, bump it in the build files, write a curated CHANGELOG.md entry and plugin.xml change-notes from the git/PR history since the last tag, build to verify, then commit, tag, and publish a matching GitHub release. Use this whenever…