Skills Agentes

Write Guide

Genera guías técnicas que enseñan casos de uso reales con ejemplos progresivos: markdown con frontmatter YAML, introducción, de dos a cuatro pasos y una sección de siguientes pasos.

Oficial
Estrellas
142k

en todo el repo

Actividad
46

0–100, la ruta de este skill

Actualizado
hace 3 meses

último commit aquí

Commits
1

últimos 90 días

Contexto
1.6k tok

130 tok en reposo

Paquete
1 archivo

6 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add vercel/next.js --skill write-guide --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Genera guías técnicas que enseñan casos de uso reales mediante ejemplos progresivos
  • Produce una guía en markdown con frontmatter YAML, introducción, de dos a cuatro pasos progresivos y una sección de siguientes pasos
  • Parte de skills de funcionalidad, documentación de API, ejemplos de código existentes o una especificación del usuario

Úsalo cuando

  • Se pide escribir, crear o redactar una guía o un tutorial
  • Se convierte documentación de funcionalidad, referencia de API o conocimiento de un skill en contenido de aprendizaje paso a paso

No lo uses cuando

    Qué lo activa

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

    • Escribe una guía de esta funcionalidad
    • Convierte esta referencia de API en un tutorial
    • Hazme una guía paso a paso de este caso de uso

    SKILL.md

    En inglés

    Writing Guides

    Goal

    Produce a technical guide that teaches a real-world use case through progressive examples. Concepts are introduced only when the reader needs them.

    Each guide solves one specific problem. Not a category of problems. If the outline has 5+ steps or covers multiple approaches, split it.

    Structure

    Every guide follows this arc: introduction, example setup, 2-5 progressive steps, next steps.

    Each step follows this loop: working code → new requirement → friction → explanation → resolution → observable proof.

    Sections: introduction (no heading, 2 paragraphs max), ## Example (what we're building + source link), ### Step N (action-oriented titles, 2-4 steps), ## Next steps (summary + related links).

    Headings should tell a story on their own. If readers only saw the headings, they'd understand the guide's takeaway.

    Template

    ---
    title: {Action-oriented, e.g., "Building X" or "How to Y"}
    description: {One sentence}
    nav_title: {Short title for navigation}
    ---
    
    {What the reader will accomplish and why it matters. The friction and how this approach resolves it. 2 paragraphs max.}
    
    ## Example
    
    As an example, we'll build {what we're building}.
    
    We'll start with {step 1}, then {step 2}, and {step 3}.
    
    {Source code link.}
    
    ### Step 1: {Action-oriented title}
    
    {Brief context, 1-2 sentences.}
    
    ```tsx filename="path/to/file.tsx"
    // Minimal working code
    ```
    
    {Explain what happens.}
    
    {Introduce friction: warning, limitation, or constraint.}
    
    {Resolution: explain the choice, apply the fix.}
    
    {Verify the fix with observable proof.}
    
    ### Step 2: {Action-oriented title}
    
    {Same pattern: context → code → explain → friction → resolution → proof.}
    
    ### Step 3: {Action-oriented title}
    
    {Same pattern.}
    
    ## Next steps
    
    You now know how to {summary}.
    
    Next, learn how to:
    
    - [Related guide 1]()
    - [Related guide 2]()
    

    Workflow

    1. Research: Check available skills for relevant features. Read existing docs for context and linking opportunities.
    2. Plan: Outline sections. Verify scope (one problem, 2-4 steps). Each step needs a friction point and resolution.
    3. Write: Follow the template above. Apply the rules below.
    4. Review: Re-read the rules, verify, then present.

    Rules

    1. Progressive disclosure. Start with the smallest working example. Introduce complexity only when the example breaks. Name concepts at the moment of resolution, after the reader has felt the problem. Full loop: working → new requirement → something breaks → explain why → name the fix → apply → verify with proof → move on.
    2. Show problems visually. Console errors, terminal output, build warnings, slow-loading pages. "If we refresh the page, we can see the component blocks the response."
    3. Verify resolutions with observable proof. Before/after comparisons, browser reloads, terminal output. "If we refresh the page again, we can see it loads instantly."
    4. One friction point per step. If a step has multiple friction points, split it.
    5. Minimal code blocks. Only the code needed for the current step. Collapse unchanged functions with function Header() {}.
    6. No em dashes. Use periods, commas, or parentheses instead.
    7. Mechanical, observable language. Describe what happens, not how it feels.
    8. No selling, justifying, or comparing. No "the best way," no historical context, no framework comparisons.
    Don't Do
    "creates friction in the pipeline" "blocks the response"
    "needs dynamic information" "depends on request-time data"
    "requires dynamic processing" "output can't be known ahead of time"
    "The component blocks the response — causing delays" "The component blocks the response. This causes delays."
    1. Bridge new framework terms with legacy or generic vocabulary in description and intro. Guides win or lose SERPs on the colloquial query (e.g. "next js form submission", "next js api endpoint", "next js error page"), not on the framework's preferred noun. When the guide covers a renamed or differentiated concept, include one synonym (Pages-era term, REST/web term, or industry-standard label) in the frontmatter description and once in the introduction. Fold into prose. No separate "Synonyms" or "Also known as" section.
    Don't Do
    "Learn how to use Route Handlers" "Build API endpoints (formerly API Routes) with Route Handlers"
    "Learn how to mutate data with Server Functions" "Submit forms and update data with Server Functions, the App Router approach to form posts and API mutations"

    References

    Read these guides in docs/01-app/02-guides/ before writing. They demonstrate the patterns above.

    • public-static-pages.mdx — intro → example → 3 progressive steps → next steps. Concepts named at point of resolution. Problems shown with build output.
    • forms.mdx — progressive feature building without explicit "Step" labels. Each section adds one capability.

    Reproducido de vercel/next.js 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.

    Detalles

    Creador
    vercel
    Categoría
    Documentos
    Licencia
    MIT
    Recursos incluidos
    Solo SKILL.md
    Repositorio
    vercel/next.js
    Código fuente
    Ver SKILL.md

    Etiquetas

    Más de vercel/next.js

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

    Activa Cache Components en una app de Next.js y resuelve las rutas bloqueantes que aparecen. Úsalo para adoptar o migrar, activar el flag cacheComponents o decidir entre excluir rutas y arreglarlas.

    Costo de contexto al activarse
    8.1k tok
    Tamaño del paquete
    3 archivos
    Última actualización
    hace 3 días
    Oficialherramientas desarrollo

    Lleva una ruta de Next.js a navegación instantánea bajo Cache Components o PPR mediante un bucle agéntico: codifica el objetivo como un e2e instant() en rojo y lo trabaja hasta verde, ruta a ruta.

    Costo de contexto al activarse
    6.3k tok
    Tamaño del paquete
    6 archivos
    Última actualización
    hace 5 días
    Oficialherramientas desarrollo

    Activa Partial Prefetching en una app de Next.js y resuelve las insights que surgen: audita los Link con prefetch, activa partialPrefetching y opta por rutas con prefetch = 'partial'.

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

    Verifica el comportamiento en runtime de Next.js tras editar código de la aplicación. Combina /_next/mcp, la visión de Next.js, con agent-browser, la del navegador. Requiere un next dev en marcha.

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

    Gestiona PRs apilados y parte el trabajo en ramas revisables con gh-stack: creación, visualización, edición, push, envío, sincronización, rebase, merge y checkout.

    Costo de contexto al activarse
    2.3k tok
    Tamaño del paquete
    4 archivos
    Última actualización
    hace 12 días
    Oficialherramientas desarrollo

    Compara el rendimiento de cambios de React o Next.js en VMs de Vercel Sandbox con estadística A/B pareada: rps, latencia, p95, TTFB, RSS y bytes de documento y Flight.

    Costo de contexto al activarse
    4.1k tok
    Tamaño del paquete
    13 archivos
    Última actualización
    hace 19 días
    Oficialtesting qa

    Skills relacionados

    Flujo guiado para actualizar la documentación de Next.js según los cambios de código. Úsalo al preguntar qué documentación hace falta, sincronizar docs con código o documentar una funcionalidad.

    Costo de contexto al activarse
    1.9k tok
    Tamaño del paquete
    3 archivos
    Última actualización
    hace 3 meses
    Oficialdocumentos

    Produce documentación de referencia de API de Next.js — funciones, componentes, convenciones de archivo, directivas y opciones de configuración — como página .mdx con frontmatter, ejemplos y reglas.

    Costo de contexto al activarse
    2.2k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 3 meses
    Oficialdocumentos

    Cómo crear y mantener skills de agente en .agents/skills/. Úsalo al crear un SKILL.md, escribir descripciones, elegir campos de frontmatter o decidir qué va en un skill y qué en AGENTS.md.

    Costo de contexto al activarse
    1k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 3 meses
    Oficialherramientas desarrollo