merge-master

merge-master is a skill for Claude Code, Codex from savedpixel/ai-agent-rules-generator. It costs 37 tokens per session (304 once invoked), scanned A, original, MIT.

A workflow for merging a development Git branch into master or main, the branch commonly used for production-ready code. It also pushes the merged result.

In plain words
What is it for?
Moving completed development changes into the main production branch when there are no merge conflicts.
Why use it?
It provides a fixed sequence for checking unpushed work, handling the merge, and returning to the development branch.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Moving completed development changes into the main production branch when there are no merge conflicts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/savedpixel/ai-agent-rules-generator/merge-master
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.

Any agent
npx skills add savedpixel/ai-agent-rules-generator --skill merge-master
Clone the repo
git clone --depth 1 https://github.com/savedpixel/ai-agent-rules-generator

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/savedpixel/ai-agent-rules-generator/merge-master.svg)](https://agentmods.dev/skills/savedpixel/ai-agent-rules-generator/merge-master)
Your own site
<a href="https://agentmods.dev/skills/savedpixel/ai-agent-rules-generator/merge-master"><img src="https://agentmods.dev/badge/skills/savedpixel/ai-agent-rules-generator/merge-master.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 304 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.00037 $0.00304
Opus 5 $0.00018 $0.00152
Sonnet 5 $0.00007 $0.00061
Haiku 4.5 $0.00004 $0.00030

Measured 7d ago against content hash 83a3b3c35da5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

merge-master 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 7d 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.

examples/glitch-payment-gateway/v1.1/codex/generated/.agents/skills/merge-master/SKILL.md · 47 lines

What it actually says

Merge Dev into Master

Merge the dev branch into master (or main) and push. Includes safety checks.


Steps

  1. Ensure all dev changes are pushed — run git status and git log origin/dev..dev. If there are unpushed commits, push them first (with user approval).

  2. Switch to master/main:

    git checkout master   # or main
    git pull origin master
    
  3. Merge dev:

    git merge dev --no-ff -m "merge(dev→master): <summary>"
    

    If there are conflicts, report them and wait for user instructions.

  4. Push master:

    git push origin master
    
  5. Switch back to dev:

    git checkout dev
    

Rules

  • Only merge pushed changes. Never merge uncommitted or unpushed work.
  • Never force push to master/main.
  • If merge conflicts occur, STOP and report. Do not auto-resolve.
  • Always push immediately after merging.
  • Switch back to dev when done.
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. 7d ago First seen · 47 lines · 37 tokens per session scan A 83a3b3c35da5

Subscribe to this mod's changes

merge-master is a skill published in the GitHub repository savedpixel/ai-agent-rules-generator (7 stars, last pushed 4mo ago), licensed MIT. It adds 37 tokens to every session and 304 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

worktree-pr

Decide whether a task deserves its own git worktree and, if chosen, run it end to end: branch from the integration branch rather than the current tree, keep the main working copy untouched while the task runs, compare the result against the untouched baseline before declaring it done, and prepare it for a pull request…

scarletkc/agents · 148 tokens

git-github-flow

Use for branch prep, clean commits, PR descriptions, GitHub issue triage, changelogs, release notes, review response, merge readiness, or publishing a branch safely.

DominikTobureto/awesome-grok-build · 41 tokens

jira-cli

Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows. Use when the user asks about Jira tasks, tickets, issues, sprints, or needs to manage project work items.

Code-and-Sorts/awesome-copilot-agents · 60 tokens

azure-prices

Look up and compare Azure service pricing using the Azure Retail Prices API. Use this skill whenever the user asks about Azure costs, pricing, rates, or wants to compare prices across regions or services — even if they don't say "pricing" explicitly. Trigger for questions like "how much does a D2 v2 VM cost?"…

Code-and-Sorts/awesome-copilot-agents · 90 tokens

finishing-a-development-branch

Verifies, summarises, and closes a development branch.

andreaswasita/copilot-agents-dojo · 19 tokens

pr-workflow

Prepares branches and PRs for clean, reviewable merges.

andreaswasita/copilot-agents-dojo · 17 tokens