vibe-cherry-pick-integration

vibe-cherry-pick-integration is a skill for Claude Code from mracal/vibe-engineering. It costs 35 tokens per session (514 once invoked), scanned A, a copy of vibe-cherry-pick-integration, MIT.

A procedure for combining commits made by separate development agents or worktrees into one branch. A worktree is an independent working copy of the same repository.

In plain words
What is it for?
Use it after multiple agents have completed work on separate branches. It inventories the branches, chooses an integration order, cherry-picks the commits, resolves conflicts, and tests the result.
Why use it?
It provides an ordered way to combine parallel changes and handle conflicts while preserving the intended work. It also calls for checks during integration.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it after multiple agents have completed work on separate branches. It inventories the branches, chooses an integration order, cherry-picks the commits, resolves conflicts, and tests the result.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mracal/vibe-engineering/cherry-pick-integration
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 mracal/vibe-engineering --skill cherry-pick-integration
Clone the repo
git clone --depth 1 https://github.com/mracal/vibe-engineering

Made for: Claude Code.

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 vibe-cherry-pick-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/mracal/vibe-engineering/cherry-pick-integration.svg)](https://agentmods.dev/skills/mracal/vibe-engineering/cherry-pick-integration)
Your own site
<a href="https://agentmods.dev/skills/mracal/vibe-engineering/cherry-pick-integration"><img src="https://agentmods.dev/badge/skills/mracal/vibe-engineering/cherry-pick-integration.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 514 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 100% copy Near-identical to another mod 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.00035 $0.00514
Opus 5 $0.00017 $0.00257
Sonnet 5 $0.00007 $0.00103
Haiku 4.5 $0.00003 $0.00051

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

Security

Grade A, and why

vibe-cherry-pick-integration 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.

Origin

This is a copy

100% identical to vibe-cherry-pick-integration — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/cherry-pick-integration/SKILL.md · 69 lines

What it actually says

vibe-cherry-pick-integration

Parallel agents produce parallel branches. This skill integrates them safely without merge conflicts destroying work.

When to Use This Skill

  • Multiple agents completed work in isolated branches/worktrees
  • Need to combine parallel work onto a single integration branch
  • After vibe-parallel-task-decomposition dispatched work

When NOT to Use This Skill

  • Single branch with sequential work (just push)
  • Merge conflicts are expected and desired for resolution
  • The parallel work was all in the same files (this won't help — resolve manually)

Steps

  1. Inventory branches — List all branches with completed work:

    git branch --list 'worktree-*' 'feature/*'
    
  2. Determine integration order — Cherry-pick in dependency order:

    • Independent tasks first (any order within batch)
    • Dependent tasks after their dependencies
  3. For each branch: a. Identify commits to cherry-pick: git log main..branch-name --oneline b. Cherry-pick onto integration branch: git cherry-pick <commit-hash> c. If conflict:

    • Examine both sides
    • Resolve keeping the semantic intent of both
    • git cherry-pick --continue d. Run tests after each cherry-pick: [test command] e. If tests fail: fix before proceeding to next branch
  4. Verify integration — Run full test suite after all cherry-picks

  5. Clean up — Remove integrated branches if desired

Output Format

Cherry-Pick Integration

Branches integrated: X Commits cherry-picked: Y Conflicts resolved: Z Tests: PASS/FAIL after integration

Branch Commits Conflicts Tests After
worktree-abc 3 0 PASS
worktree-def 2 1 PASS

Conflict Resolutions

  1. [File]: [How it was resolved]

Final Status

  • All tests passing: Yes/No
  • Integration branch: [name]
  • Ready to merge: Yes/No
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 · 69 lines · 35 tokens per session scan A fac6194665e2

Subscribe to this mod's changes

vibe-cherry-pick-integration is a skill published in the GitHub repository mracal/vibe-engineering (3 stars, last pushed yesterday), licensed MIT. It adds 35 tokens to every session and 514 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to vibe-cherry-pick-integration, differing in 0 lines, and is treated as a copy.