Skills Agentes

Concurrent Branches

Resuelve conflictos de merge con varias ramas abiertas: unión, recomputación y reconstrucción como resoluciones correctas; artefactos generados, serialización no determinista e IDs renumerados; un auto-merge limpio no es un test que pasa.

Estrellas
947

en todo el repo

Actividad
60

0–100, la ruta de este skill

Actualizado
hace 5 días

último commit aquí

Commits
1

últimos 90 días

Contexto
2.8k tok

187 tok en reposo

Paquete
1 archivo

11 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add kajisho5/ffmpeg-skill --skill concurrent-branches --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Identifica los archivos hotspot que casi todos los commits tocan y establece una regla de resolución para cada uno antes de que lleguen los conflictos.
  • Aplica la resolución que corresponde a cada tipo: unión para registros aditivos, recomputar desde origin/main para contadores, reconstruir artefactos generados y tomar la config base reaplicando el delta.
  • Detecta lo que un merge limpio no muestra: serialización no determinista, tests duplicados que se sombrean, identificadores renumerados con referencias rotas y artefactos que nunca deberían mergearse.
  • Verifica el merge resultante comprobando con git grep que ambas ramas sobrevivieron y ejecutando el gate real de CI local sobre el árbol fusionado.

Úsalo cuando

  • Al rebasar o fusionar una rama de larga duración.
  • Al resolver marcadores de conflicto en un repositorio con varias ramas abiertas.
  • Al revisar un merge commit o decidir qué debe commitear el repo y qué debe generar.
  • Al preparar un repositorio que va a recibir contribuciones en paralelo.

No lo uses cuando

    Qué lo activa

    Di cualquiera de estas frases y el agente debería cargar este skill.

    • Tengo dos ramas abiertas y el manifest está en conflicto; ¿cómo lo resuelvo?
    • El campo de versión choca en todas las ramas, ¿cuál es la regla correcta?
    • El merge automático ha salido limpio pero algo se ha roto; ¿qué puede haber pasado?
    • Estoy revisando un merge commit: ¿cómo confirmo que las dos ramas siguen presentes?
    • Voy a abrir un repo a contribuciones paralelas; ¿qué archivos hotspot debería preparar?

    SKILL.md

    En inglés

    Merging Concurrent Branches

    When several branches are open against the same repo at once, the conflicts do not land in the code you were thinking about. They land in a small, predictable set of hotspot files that nearly every change has to touch — a registry manifest, a version field, shared tool config, one aggregated test module, a tracked build output.

    Each hotspot has exactly one correct resolution, and they are not the same rule. "Take ours" / "take theirs" is right for almost none of them. Worse, getting one wrong is silent: the dropped entry, the collided version, the stale bundle all merge green and are found later by someone who cannot reproduce them.

    Find the hotspots before you need to resolve them

    Files touched by nearly every commit are the files your branch will conflict on.

    # the 15 files most commits touch — your hotspot list
    git log --format= --name-only -n 200 | sort | uniq -c | sort -rn | head -15
    

    Write the resolution rule for each one into the contributing docs. Under conflict pressure, with a stale branch and a red CI run, nobody re-derives "the version field is recomputed, not merged" correctly.

    Additive registries: union both sides, never choose one

    A manifest that lists every component — plugin entries, module paths, exported names, a feature list. Two branches each append an entry, and the conflict spans both additions:

    <<<<<<< HEAD
        "./components/exporter",
        "./components/importer"        // theirs, already merged to main
    =======
        "./components/exporter",
        "./components/validator"       // yours
    >>>>>>> feature/validator
    

    Both sides are correct and neither is a substitute for the other. Resolve by keeping every entry from both sides. Taking a side deletes a component that is still fully present in the tree — the code compiles, the tests pass, and the component is simply never registered or installed.

    Nothing catches that unless you check the registry against the filesystem:

    # every registered path exists
    jq -r '.plugins[].components[]' manifest.json | while read -r p; do
      [ -e "${p#./}" ] || echo "registered but missing: $p"
    done
    # every component on disk is registered
    for d in components/*/; do
      grep -q "\"./${d%/}\"" manifest.json || echo "present but unregistered: $d"
    done
    

    Run it as a repo test, not as a merge-day ritual. It is the only thing standing between a mis-resolved conflict and a component that quietly does not ship.

    Single-value counters: recompute from the integration branch

    A version field, a sequence number, a "latest migration" pointer. Both branches bumped 2.17.0 to 2.18.0; both are wrong now, because a third branch already merged and main is at 2.18.0 too.

    Union is meaningless here and picking a side reintroduces a collision. The rule is recompute from the current integration branch, not from either side of the conflict — every change that merged since you branched consumed one increment:

    git fetch origin main
    git show origin/main:manifest.json | jq -r '.metadata.version'   # -> 2.18.0
    # your branch takes 2.19.0, regardless of what your branch said before
    

    Do this as the last step before pushing, not during the merge. If another branch lands while you resolve, you redo only one line.

    Generated artifacts: rebuild, never merge

    A committed minified bundle, a built PDF, a compiled schema, a checked-in snapshot. Git will happily produce a merge for the text ones and force a binary choice for the rest — and every such result is wrong, because a derived file's only correct content is whatever the merged sources generate.

    Resolve the sources, then regenerate:

    git checkout --merge -- src/ ui/app.jsx   # resolve the real inputs first
    make build                                 # regenerate the artifact
    git add dist/bundle.js docs/handbook.pdf
    

    Two things make this reviewable rather than a leap of faith:

    • Pin the generator version. If the bundler or typesetter is pinned, its output is byte-identical anywhere, and a reviewer can regenerate and diff to confirm the artifact matches the source. Unpinned, the artifact diff is a mix of your change and a tool upgrade, and nobody can tell them apart.
    • Verify only the expected regions moved. A rebuilt document reflows: a one-paragraph edit typically spreads across two or three consecutive pages. Raster-diff or diff the rebuilt artifact against one built from the base commit in the same environment, and say in the PR which regions changed and why. Anything else that moved is your merge, not your edit.

    Non-deterministic serialization turns every branch into a conflict

    If a tracked file is written by iterating a map, set, or dict whose order is not stable, the whole file is rewritten on every run. Then every branch conflicts on every line, diffs are unreviewable, and real conflicts hide inside the churn.

    Sort before writing:

    # BAD — map iteration order; the file is rewritten differently every time
    records = [to_record(k, v) for k, v in index.items()]
    
    # GOOD — a stable key. ISO-8601 dates sort chronologically as plain strings,
    # so no date parsing is needed to get a deterministic, reviewable file.
    records = sorted((to_record(k, v) for k, v in index.items()), key=lambda r: r["date"])
    

    This applies to any code path that rebuilds a committed file from an unordered collection, including the ones added later. Once one path forgets, the file is churny again.

    Shared tool config: take the base file, re-apply your delta

    pyproject.toml, package.json, lint config, a CI workflow — files where your branch added three lines and four other branches added their own. Reconciling hunks by hand is where dev-dependency pins and tool sections get silently dropped.

    Take the integration branch's copy wholesale — it already carries everything that landed while you were away — then re-add only the lines your branch introduced:

    git checkout origin/main -- pyproject.toml
    # re-add just your delta, then confirm nothing else moved
    git diff origin/main -- pyproject.toml
    

    That last git diff should show your addition and nothing else. If it shows a pin reverting or a tool section disappearing, you took a side by accident.

    Aggregated test modules: keep both suites, then check for shadowing

    Two branches append cases to the same test file. Union them — but a union can produce two tests with the same name, and in Python and JavaScript the later definition simply replaces the earlier one. The file looks longer, the suite count looks plausible, and one branch's case never runs.

    grep -oE '^\s*(def test_[A-Za-z0-9_]+|it\(.[^,]*|test\(.[^,]*)' tests/test_thing.py \
      | sort | uniq -d
    

    The same shape bites production code: two branches independently add the same module-level helper, the resolution keeps both, and the second shadows the first.

    Append; never renumber a shared identifier

    Repos that carry stable identifiers cited from elsewhere — claim IDs in a source ledger, migration numbers, fixture keys, snapshot names — break in a way conflict markers cannot show you. Renumbering C7-C12 to make room is a clean, conflict-free edit that invalidates every citation of those IDs in files your merge never touched.

    Add new identifiers by continuing the numbering past the highest one that exists anywhere, and never reuse or renumber one. If two branches both claimed C17, renumber yours and fix your own references; do not renumber the side that already merged.

    A clean auto-merge is not verification

    Two branches editing far-apart regions of one large file merge cleanly and can still be semantically wrong: one side's change depends on a helper the other removed, or both added equivalent logic under different names, or one side's edit now sits inside a branch the other made unreachable.

    After any non-trivial merge, confirm both sides survived — grep the merged tree for a distinctive string from each:

    git grep -n "computes the retry budget"     # a phrase only their change added
    git grep -n "REDACTION_PLACEHOLDER"         # a symbol only yours added
    

    Present and consistent, not just present. Then read the two regions together.

    Match the repo's integration style, and re-run the real gate

    git log --graph --oneline -20    # merge commits, or a linear rebased history?
    

    Follow whichever the history already uses. Then run the repo's actual CI commands locally before pushing: a resolved merge is code that has never existed anywhere before, and neither branch's CI run covered it. A green check on your branch and a green check on main say nothing about their union. See reproducing-ci-locally for deriving the commands the runner actually uses.

    Checklist

    • Hotspot files identified from git log --name-only before branching
    • Registry/manifest conflicts resolved by union; every entry from both sides kept
    • Registry checked against the filesystem in both directions, in CI
    • Version/counter fields recomputed from origin/main, not taken from either side
    • Generated artifacts rebuilt from merged sources, never text- or binary-merged
    • Generator version pinned so a reviewer can regenerate and diff
    • Files serialized from maps/sets sorted by a stable key
    • Shared tool config taken from base, delta re-applied, git diff shows only your lines
    • Merged test modules checked for duplicate test names
    • New shared identifiers appended; none reused or renumbered
    • A distinctive string from each side found in the merged tree
    • Repo's real CI gate run locally on the merged result before pushing

    Note for this repository (ffmpeg-skill)

    This is exactly the pattern seen across the PR #28-#37 merge cascade for the 0.10.0 release: CHANGELOG.md was the hotspot file nearly every PR touched, and the correct resolution every time was "union both sides, never choose one" (keep every bullet, verify no leftover conflict markers). package.json's version field is the single-value-counter case: it should be recomputed once, after all merges land, not carried through each individual merge.

    Learn More

    • reproducing-ci-locally (also added to this repo's .claude/skills/) — running the runner's real commands on the merged tree

    Source: wdm0006/python-skills (MIT).

    Reproducido de kajisho5/ffmpeg-skill bajo licencia MIT. Leer esta página en markdown.

    Archivos

    1 archivo en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

    Antes de instalar

    Necesita en el PATH:gitjq

    Detalles

    Creador
    kajisho5
    Licencia
    MIT
    Recursos incluidos
    Solo SKILL.md
    Código fuente
    Ver SKILL.md

    Etiquetas

    Más de kajisho5/ffmpeg-skill

    Este repo incluye 13 skills. Si instalas uno, normalmente ya tienes los demás. Ver el pack ffmpeg-skill entero y su comando de instalación

    Edita vídeo y audio con FFmpeg local desde lenguaje natural: cortes, unión, reframe 9:16/1:1, velocidad, subtítulos, overlays, multicámara/sync, LUFS, HDR→SDR, LUTs, export y verificación. Python 3.9 stdlib, sin nube ni API keys.

    Costo de contexto al activarse
    8.1k tok
    Tamaño del paquete
    123 archivos
    Última actualización
    ayer
    redaccion contenido

    Genera configuraciones de CI/CD para GitHub Actions: compilación y pruebas de librerías y paquetes. Úsalo al crear o actualizar workflows de npm, Python, Go o Rust con caché de dependencias, pruebas en matriz y publicación de artefactos.

    Costo de contexto al activarse
    1.1k tok
    Tamaño del paquete
    5 archivos
    Última actualización
    hace 5 días
    devops infraestructura

    Guarda operaciones destructivas: borrados, sobrescrituras, reescritura de historial o resolución de nombres a rutas; rechaza en vez de avisar, comprueba antes de mutar, clasifica por estructura y prueba cada mitad.

    Costo de contexto al activarse
    2.6k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 5 días
    herramientas desarrollo

    Previene, detecta y corrige la subida a git de secretos (.env, API tokens, credenciales) y artefactos dev (builds, BD de trabajo, editor/SO). Cubre .gitignore (por qué no deja de trackear), git rm --cached, auditoría, historial y rotación.

    Costo de contexto al activarse
    2.1k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 5 días
    herramientas desarrollo

    Gestiona lanzamientos de librerías Python: versionado semántico, changelog (Keep a Changelog), automatización con GitHub Actions y deprecaciones. Úsalo al planificar lanzamientos, escribir changelogs o comunicar breaking changes.

    Costo de contexto al activarse
    1.1k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 5 días
    herramientas desarrollo

    Reproduce el gate de CI en local a partir del workflow: comando, rutas, marcadores y entorno exactos; desbloquea pasos cortocircuitados, fija la versión del linter que resuelve CI y confirma que el run es verde.

    Costo de contexto al activarse
    2.9k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 5 días
    herramientas desarrollo

    Skills relacionados

    Crea servidores MCP robustos en Python con FastMCP: diseño de herramientas, contratos de error, trabajo bloqueante, subprocesos/CLI, distribución, pruebas e inyección de prompts. Úsalo al escribir, exponer, depurar o probar servidores MCP.

    Costo de contexto al activarse
    3.2k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 5 días
    herramientas desarrollo

    Guarda operaciones destructivas: borrados, sobrescrituras, reescritura de historial o resolución de nombres a rutas; rechaza en vez de avisar, comprueba antes de mutar, clasifica por estructura y prueba cada mitad.

    Costo de contexto al activarse
    2.6k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 5 días
    herramientas desarrollo

    Previene, detecta y corrige la subida a git de secretos (.env, API tokens, credenciales) y artefactos dev (builds, BD de trabajo, editor/SO). Cubre .gitignore (por qué no deja de trackear), git rm --cached, auditoría, historial y rotación.

    Costo de contexto al activarse
    2.1k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 5 días
    herramientas desarrollo