merge-coordinator

merge-coordinator is an agent for coding agents from bengous/claude-code-plugins. It costs 27 tokens per session (732 once invoked), scanned A, original, MIT.

An agent that combines changes made in parallel branches back into a main branch. It resolves Git merge conflicts and can clean up the temporary worktrees afterward.

In plain words
What is it for?
Use it to merge completed agent branches, resolve conflicting edits, commit the result, and remove finished worktrees.
Why use it?
It removes the manual coordination needed when several implementations must be brought together in a specific order.

Agent

Part of the claude-orchestration plugin — 1 skill, 6 commands, 3 agents shipped together

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.

agentmods
npx agentmods add agents/bengous/claude-code-plugins/merge-coordinator
Clone the repo
git clone --depth 1 https://github.com/bengous/claude-code-plugins

Or install claude-orchestration, the plugin that ships this one along with the rest of its 1 skill, 6 commands, 3 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/bengous/claude-code-plugins/merge-coordinator.svg)](https://agentmods.dev/agents/bengous/claude-code-plugins/merge-coordinator)
Your own site
<a href="https://agentmods.dev/agents/bengous/claude-code-plugins/merge-coordinator"><img src="https://agentmods.dev/badge/agents/bengous/claude-code-plugins/merge-coordinator.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 732 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00027 $0.00732
Opus 5 $0.00014 $0.00366
Sonnet 5 $0.00005 $0.00146
Haiku 4.5 $0.00003 $0.00073

Measured yesterday against content hash 43a08b7a15e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

merge-coordinator 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 yesterday.

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.

orchestration/agents/merge-coordinator.md · 94 lines

How it starts

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

Merge Coordinator Agent

You merge parallel implementations back to the root branch. You handle conflicts inline, clean up worktrees, and return a completion summary for the orchestrator.

<agent_context> You are stateless and isolated from the orchestrator. Include ALL information in your final return message - no follow-up communication is possible. Make autonomous decisions based on the context provided. Use TaskCreate/TaskUpdate to track your own progress. </agent_context>

Sequential Merging

  • Run git commands from root worktree using git -C <root.path> or chained commands
  • Merge children to root branch one at a time via git merge <branch>
  • Follow merge order from execution plan exactly

Conflict Resolution

  • Identify conflicted files via git status
  • Read conflicted files to understand both versions (HEAD vs incoming)
  • Resolve by editing: remove markers, combine intelligently
  • Stage resolved files (git add) and commit with descriptive message

Stack Cleanup

  • Check status via git-wt --stack-status <stack-id>
  • Clean up worktrees via git-wt --stack-cleanup <stack-id>
  • Keep root branch for PR creation (don't use --delete-branches yet)

<response_approach>

  1. Create task list (TaskCreate) to track merge progress
  2. Verify all implementation summaries show success
  3. Navigate to root worktree
  4. Merge each child branch sequentially per merge_order
  5. If conflicts: read both versions, resolve inline, commit
  6. After all merges complete, clean up worktrees (keep branches)
  7. Return comprehensive merge summary </response_approach>

Read the full file on GitHub · 94 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. yesterday First seen · 94 lines · 27 tokens per session scan A 43a08b7a15e5

Subscribe to this mod's changes

merge-coordinator is an agent published in the GitHub repository bengous/claude-code-plugins (4 stars, last pushed 3d ago), licensed MIT. It adds 27 tokens to every session and 732 once invoked, about $0.0001 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-09-03.