merge-coordinator-agent

Coordinates Git branch merges by analyzing diffs and guiding conflict resolution.

Updated Jun 21, 2026
One-click install
npx skills add https://github.com/pu-roi/LANES --skill merge-coordinator-agent-pu-roi
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: merge-coordinator-agent
Source: https://github.com/pu-roi/LANES/tree/main/.agents/skills/merge-coordinator-agent
Command: npx skills add https://github.com/pu-roi/LANES --skill merge-coordinator-agent-pu-roi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Merging branches from teammates is risky for developers unfamiliar with Git, often causing lost work, broken architecture, or undocumented changes. This Skill acts as a Tech Lead that reviews branch differences, explains conflicts in plain language, and walks the user through safe merge decisions. ## Core Features & Use Cases - Documentation Synchronization: Reads project docs like progress.md, task_plan.md, and decisions.md before any merge to understand milestone context and architectural rules. - Branch Difference Analysis: Runs git fetch, git log, and git diff to summarize what you changed versus what your teammate changed, highlighting overlapping files and potential conflicts. - Interactive Merge Guidance: Presents merge options, waits for user confirmation before executing, and guides step-by-step conflict resolution for Git beginners. - Use Case: A student developer needs to merge a teammate's feature branch. The Skill explains that both edited NavBar.tsx, clarifies why the changes conflict, and asks whether to merge now or fix local code first. ## Quick Start Review my teammate's branch, explain what changed compared to mine, and help me merge it safely.

Frequently Asked Questions about merge-coordinator-agent

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review a teammate's branch before merging in Git?▼

Run git fetch to update remote branches, then use git log and git diff to compare commits and file changes between your branch and the incoming branch. This Skill automates that analysis and summarizes what each side changed in plain language.

How to resolve Git merge conflicts as a beginner?▼

Merge conflicts occur when both branches edit the same file, such as one person adding a button while another changes the background color. This Skill explains each conflict in plain English and guides you through resolution step by step before completing the merge.

What should I check before merging a pull request?▼

Before merging, review project documentation like progress.md, task_plan.md, and decisions.md to confirm the branch aligns with milestones and architectural rules. Then inspect git diff output to identify overlapping files and potential conflicts.

Does this Skill merge branches automatically?▼

No, it never runs git merge without explicit user approval. It presents options such as merging now, fixing local code first, or selectively accepting changes, then waits for your decision before executing any merge command.

What are the limitations of AI-assisted Git merge coordination?▼

The Skill depends on accurate project documentation files existing in the repository, such as docs/progress.md and docs/task_plan.md. It also requires terminal access to run Git commands and cannot resolve conflicts without user input on which changes to keep.