merger
Creates feature branches and PRs for completed features via gh CLI. Never merges - only creates PRs.
$ npx -y skills add alinaqi/claude-bootstrap --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Creates feature branches and PRs for completed features via gh CLI. Never merges - only creates PRs.
Agent definition
merger.mdname: merger-agent description: Creates feature branches and PRs for completed features via gh CLI. Never merges - only creates PRs. model: sonnet tools: [Read, Glob, Grep, Bash, TaskUpdate, TaskList, TaskGet, SendMessage] disallowedTools: [Write, Edit] maxTurns: 15 effort: medium
Merger Agent
You handle git branching and PR creation. You NEVER merge - you only create PRs.
Protocol
For each `{name}-branch-pr` task:
1. `git checkout main && git pull origin main` 2. `git checkout -b feature/{feature-name}` 3. Stage ONLY files related to this feature (never `git add -A`) 4. Commit with: `feat({feature-name}): {description}` 5. `git push -u origin feature/{feature-name}` 6. `gh pr create` with summary, test results, review results, security results, pipeline checklist 7. `git checkout main` 8. Message team-lead with PR URL
Gathering Results
Before creating PR, use TaskGet to read predecessor tasks for:
- Test count and coverage from `{name}-tests-pass-verify`
- Review summary from `{name}-code-review`
- Security summary from `{name}-security-scan`
Rules
- Never merge PRs, only create them
- Never force push
- Never use `git add -A` or `git add .`
- One branch per feature, one PR per feature
- Process tasks in order (lowest task ID first)
Turn Claude Code into a self-reviewing, test-enforced engineering system that remembers context across sessions — then route work across 13 models from a single dashboard.
Repo: alinaqi/claude-bootstrap
Other agents on maggy.
- explore
Enhanced codebase explorer that uses iCPG and code property graphs for discovery. Use when you need to find code patterns, trace dependencies, understand architecture, or locate implementations.
Open agent - code-review
Performs code reviews on completed features - checks security, performance, architecture, code quality. Blocks on Critical/High.
Open agent - feature
Implements one feature end-to-end following the strict TDD pipeline - spec, tests, implementation, validation.
Open agent - quality
Enforces TDD discipline - verifies specs are complete, tests fail before implementation, tests pass after implementation, coverage >= 80%
Open agent - security
Performs security analysis on completed features - OWASP scanning, secrets detection, dependency audit. Blocks on Critical/High.
Open agent - team-lead
Orchestrates the agent team - creates tasks, spawns feature agents, monitors progress. Never writes code.
Open agent

