Skills Agentes

Merge Ready

Lleva una rama de "el código existe" a "lista para la revisión final del maintainer": revisión multi-eje con subagentes, hallazgos verificados, arreglos, `ci:check`, commits de checkpoint y un PR actualizado.

Estrellas
16k

en todo el repo

Actividad
57

0–100, la ruta de este skill

Actualizado
el mes pasado

último commit aquí

Commits
3

últimos 90 días

Contexto
1.4k tok

97 tok en reposo

Paquete
1 archivo

6 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add every-app/open-seo --skill merge-ready --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Lleva el trabajo actual hasta el punto en que solo falta la revisión y el merge del maintainer, sin fusionar nunca el PR.
  • Sincroniza con `main`, resolviendo conflictos a favor de main para el código que la rama no tocó a propósito, y hace un commit de checkpoint.
  • Lanza subagentes de revisión en paralelo, uno por eje: complejidad innecesaria, seguridad, facturación y medición, idiomática de librerías y proyecto, y restos de código vibe-coded.
  • Verifica cada hallazgo `blocker`/`should-fix` con subagentes adversariales que emiten APPLY / APPLY-MODIFIED / REJECT antes de arreglar.
  • Arregla en grupos lógicos con commits de checkpoint, deja `pnpm ci:check` limpio, empuja y abre o actualiza el PR con descripción de alto nivel y guía de revisión.

Úsalo cuando

  • El usuario dice que una feature, fix o rama debería quedar "merge ready", o lo añade a una petición de build ("construye X y déjalo merge-ready").

No lo uses cuando

    Qué lo activa

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

    • Deja esta rama merge-ready
    • Construye la feature X y déjala lista para revisión
    • Prepara estos cambios para la revisión final del maintainer

    SKILL.md

    En inglés

    Merge ready

    Drive the current work to the point where the only remaining step is the maintainer's own review and merge. The deliverable is a pushed branch with a clean pnpm ci:check, checkpoint commits along the way, and an open PR with a high-level description plus review instructions.

    Never merge the PR. The maintainer always reviews last.

    0. Figure out the starting point

    This skill composes with feature work — it is not only a review pass:

    • Invoked alongside a build request ("build X, make it merge-ready"): implement the feature/fix first, committing as you go, then continue below. The review phases cover all changes on the branch vs origin/main, not just the last edit.
    • Invoked on existing work ("make this branch merge-ready"): start directly at step 1. The scope is git diff origin/main...HEAD plus anything uncommitted.

    1. Sync with main

    • git fetch origin main. If the branch is behind, merge origin/main in and resolve conflicts (favor main's version for code this branch didn't intentionally change).
    • Checkpoint: commit the merge before starting review, so conflict resolution is auditable separately from review fixes.

    2. Multi-axis subagent review

    Spawn independent review subagents in parallel, one per axis, each given repo access and the complete branch scope:

    • committed changes: git diff origin/main...HEAD
    • staged changes: git diff --cached
    • unstaged changes: git diff
    • untracked files: git status --short, followed by reading every in-scope untracked file

    Do not let an uncommitted or newly created file escape review merely because it is absent from origin/main...HEAD.

    1. Unnecessary complexity — thin wrappers, needless indirection, single-use abstractions, defensive guards for impossible states, dead config. This codebase deliberately stays simple.
    2. Security — authz on new endpoints (org/project scoping), SSRF, injection, secrets handling, anything user-input-shaped reaching D1/R2/external APIs.
    3. Billing & metering — ways a user could trigger DataForSEO/provider spend without being metered, charged-but-failed paths, retry/loop amplification, endpoints with unexpectedly high per-call user cost. Credits are billed via Autumn; uncounted spend is a revenue leak.
    4. Library & project idioms — TanStack (Router/Query/Start) used idiomatically; patterns match how the rest of the codebase already does it (shared application/provider error boundaries, db/schema conventions, existing component patterns). Flag novel patterns where an established one exists.
    5. Vibe-coded cruft — leftover scaffolding, stale comments narrating the edit history, console.logs, TODO-without-owner, copy-pasted near-duplicates, files/exports nothing uses.

    Each reviewer returns findings with file:line, severity (blocker / should-fix / nitpick), and a one-line rationale. Tell reviewers explicitly: this is an early-stage product — do not chase theoretical edge cases; mark anything debatable as nitpick.

    3. Verify findings — never blindly accept

    For each blocker and should-fix finding, spawn verification subagents (in parallel) that adversarially check the finding against the actual code and verdict APPLY / APPLY-MODIFIED / REJECT with reasoning. Drop rejected findings. Nitpicks don't need verification — they're reported, not necessarily fixed.

    Preserve review learnings

    After verification, route durable learnings without forcing every review to change policy:

    • If an APPLY or APPLY-MODIFIED finding reveals a recurring or high-risk repository invariant that existing .greptile/ context and CI do not capture, use maintain-greptile-rules and apply its promotion bar.
    • Keep one-off bugs as code fixes and regression tests. Put deterministic mechanical checks in CI or lint instead of Greptile.
    • When a small tooling, documentation, or workflow frustration occurs, use papercuts to append it to .agents/PAPERCUTS.md; do not derail merge-ready work to fix it.

    4. Fix, check, loop

    • Apply verified blocker/should-fix fixes. Apply nitpicks only when trivial and clearly right; otherwise list them in the PR for the maintainer to judge.
    • Checkpoint: commit fixes in logical groups (e.g. one commit per axis or per concern) so the fix history is reviewable on its own.
    • Run pnpm ci:check (prettier, knip, tsc, oxlint). Fix failures and re-run until clean. If a fix was substantial (not formatting/lint), run a quick re-review of just that change.
    • Loop until ci:check passes and no verified findings remain unaddressed.

    5. Push and open/update the PR

    • Push the branch. Open a PR against main if one doesn't exist; otherwise update the existing PR's description.
    • PR description requirements:
      • High-level — what changed and why, written for a human skimming. No file paths, no per-file changelog.
      • How to review — a short ordered guide: what to look at first, what the risky/judgment-call areas are, what was deliberately left out of scope.
      • Review notes — unfixed nitpicks and any REJECT verdicts worth a second opinion, clearly labeled as such.
    • Report back: PR link, one-paragraph summary, and anything that still needs the maintainer's judgment. Do not merge.

    Reproducido de every-app/open-seo 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

    El entregable es una rama empujada con `pnpm ci:check` limpio y un PR abierto; nunca fusiona el PR.

    Detalles

    Creador
    every-app
    Licencia
    MIT
    Recursos incluidos
    Solo SKILL.md
    Código fuente
    Ver SKILL.md

    Etiquetas

    Más de every-app/open-seo

    Este repo incluye 19 skills. Si instalas uno, normalmente ya tienes los demás.

    Entra en un modo de coach de OpenSEO cercano que explica los flujos, recomienda los siguientes pasos y ayuda a usar bien agentes, búsqueda web, scraping y datos MCP.

    Costo de contexto al activarse
    1.6k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 12 días
    seo geo

    Rellena el contexto compartido de OpenSEO de un proyecto (alcance del sitio, objetivos, posicionamiento, competidores, páginas clave y preferencias), más comprobaciones de MCP y entrada de Search Console.

    Costo de contexto al activarse
    2.3k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 12 días
    seo geo

    Crea o actualiza una skill en este repositorio de la forma correcta: hogar canónico en `.agents/skills`, marca interna o pública, symlinks en `.claude/skills` y registro en las docs públicas para las skills de producto.

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

    Audita un sitio y entrega un informe SEO de una página, en lenguaje llano, que cualquiera puede accionar, centrado en una única acción para esta semana.

    Costo de contexto al activarse
    1.8k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 12 días
    seo geo

    Audita un Google Business Profile, lo compara con competidores locales y mapea la visibilidad en Google Maps alrededor de una ubicación para decidir qué arreglar primero.

    Costo de contexto al activarse
    1.7k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 12 días
    seo geo

    Descubre oportunidades de palabras clave, evalúa métricas y SERPs y guarda o etiqueta los términos prometedores usando los datos MCP de OpenSEO.

    Costo de contexto al activarse
    1.4k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 12 días
    seo geo