Skills Agentes

Nx Generate

Genera código con generadores de Nx. Se activa al mencionar scaffolding, crear apps o libs, o configurar la estructura del proyecto; se usa antes de explorar porque gestiona el descubrimiento internamente.

Oficial
Estrellas
28

en todo el repo

Actividad
43

0–100, la ruta de este skill

Actualizado
hace 3 meses

último commit aquí

Commits
0

últimos 90 días

Contexto
2k tok

92 tok en reposo

Paquete
1 archivo

8 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add nrwl/nx-ai-agents-config --skill nx-generate --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Descubre generadores disponibles con `nx list` y los compara con generadores locales del workspace
  • Lee el código fuente del generador para entender qué archivos crea y sus efectos secundarios
  • Ejecuta el generador en modo `--dry-run` antes de aplicarlo de verdad
  • Decide entre librerías buildable y non-buildable según el caso de uso
  • Formatea y verifica el código generado con lint, test, build y typecheck

Úsalo cuando

  • Crear una nueva aplicación o librería en el workspace
  • Scaffolding de funcionalidades o código repetitivo
  • Ejecutar generadores propios del workspace o de un plugin

No lo uses cuando

    Qué lo activa

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

    • Crea una nueva librería con Nx
    • Genera una app de React en este workspace
    • Scaffoldea un nuevo proyecto con Nx
    • Añade un nuevo componente con el generador de Nx

    SKILL.md

    En inglés

    Run Nx Generator

    Nx generators are powerful tools that scaffold projects, make automated code migrations or automate repetitive tasks in a monorepo. They ensure consistency across the codebase and reduce boilerplate work.

    This skill applies when the user wants to:

    • Create new projects like libraries or applications
    • Scaffold features or boilerplate code
    • Run workspace-specific or custom generators
    • Do anything else that an nx generator exists for

    Key Principles

    1. Always use --no-interactive - Prevents prompts that would hang execution
    2. Read the generator source code - The schema alone is not enough; understand what the generator actually does
    3. Match existing repo patterns - Study similar artifacts in the repo and follow their conventions
    4. Verify with lint/test/build/typecheck etc. - Generated code must pass verification. The listed targets are just an example, use what's appropriate for this workspace.

    Steps

    1. Discover Available Generators

    Use the Nx CLI to discover available generators:

    • List all generators for a plugin: npx nx list @nx/react
    • View available plugins: npx nx list

    This includes plugin generators (e.g., @nx/react:library) and local workspace generators.

    2. Match Generator to User Request

    Identify which generator(s) could fulfill the user's needs. Consider what artifact type they want, which framework is relevant, and any specific generator names mentioned.

    IMPORTANT: When both a local workspace generator and an external plugin generator could satisfy the request, always prefer the local workspace generator. Local generators are customized for the specific repo's patterns.

    If no suitable generator exists, you can stop using this skill. However, the burden of proof is high—carefully consider all available generators before deciding none apply.

    3. Get Generator Options

    Use the --help flag to understand available options:

    npx nx g @nx/react:library --help
    

    Pay attention to required options, defaults that might need overriding, and options relevant to the user's request.

    Library Buildability

    Default to non-buildable libraries unless there's a specific reason for buildable.

    Type When to use Generator flags
    Non-buildable (default) Internal monorepo libs consumed by apps No --bundler flag
    Buildable Publishing to npm, cross-repo sharing, stable libs for cache hits --bundler=vite or --bundler=swc

    Non-buildable libs:

    • Export .ts/.tsx source directly
    • Consumer's bundler compiles them
    • Faster dev experience, less config

    Buildable libs:

    • Have their own build target
    • Useful for stable libs that rarely change (cache hits)
    • Required for npm publishing

    If unclear, ask the user: "Should this library be buildable (own build step, better caching) or non-buildable (source consumed directly, simpler setup)?"

    4. Read Generator Source Code

    This step is critical. The schema alone does not tell you everything. Reading the source code helps you:

    • Know exactly what files will be created/modified and where
    • Understand side effects (updating configs, installing deps, etc.)
    • Identify behaviors and options not obvious from the schema
    • Understand how options interact with each other

    To find generator source code:

    • For plugin generators: Use node -e "console.log(require.resolve('@nx/<plugin>/generators.json'));" to find the generators.json, then locate the source from there
    • If that fails, read directly from node_modules/<plugin>/generators.json
    • For local generators: Typically in tools/generators/ or a local plugin directory. Search the repo for the generator name.

    After reading the source, reconsider: Is this the right generator? If not, go back to step 2.

    ⚠️ --directory flag behavior can be misleading. It should specify the full path of the generated library or component, not the parent path that it will be generated in.

    # ✅ Correct - directory is the full path for the library
    nx g @nx/react:library --directory=libs/my-lib
    # generates libs/my-lib/package.json and more
    
    # ❌ Wrong - this will create files at libs and libs/src/...
    nx g @nx/react:library --name=my-lib --directory=libs
    # generates libs/package.json and more
    

    5. Examine Existing Patterns

    Before generating, examine the target area of the codebase:

    • Look at similar existing artifacts (other libraries, applications, etc.)
    • Identify naming conventions, file structures, and configuration patterns
    • Note which test runners, build tools, and linters are used
    • Configure the generator to match these patterns

    6. Dry-Run to Verify File Placement

    Always run with --dry-run first to verify files will be created in the correct location:

    npx nx g @nx/react:library --name=my-lib --dry-run --no-interactive
    

    Review the output carefully. If files would be created in the wrong location, adjust your options based on what you learned from the generator source code.

    Note: Some generators don't support dry-run (e.g., if they install npm packages). If dry-run fails for this reason, proceed to running the generator for real.

    7. Run the Generator

    Execute the generator:

    nx generate <generator-name> <options> --no-interactive
    

    Tip: New packages often need workspace dependencies wired up (e.g., importing shared types, being consumed by apps). The link-workspace-packages skill can help add these correctly.

    8. Modify Generated Code (If Needed)

    Generators provide a starting point. Modify the output as needed to:

    • Add or modify functionality as requested
    • Adjust imports, exports, or configurations
    • Integrate with existing code patterns

    Important: If you replace or delete generated test files (e.g., *.spec.ts), either write meaningful replacement tests or remove the test target from the project configuration. Empty test suites will cause nx test to fail.

    9. Format and Verify

    Format all generated/modified files:

    nx format --fix
    

    This example is for built-in nx formatting with prettier. There might be other formatting tools for this workspace, use these when appropriate.

    Then verify the generated code works. Keep in mind that the changes you make with a generator or subsequent modifications might impact various projects so it's usually not enough to only run targets for the artifact you just created.

    # these targets are just an example!
    nx run-many -t build,lint,test,typecheck
    

    These targets are common examples used across many workspaces. You should do research into other targets available for this workspace and its projects. CI configuration is usually a good guide for what the critical targets are that have to pass.

    If verification fails with manageable issues (a few lint errors, minor type issues), fix them. If issues are extensive, attempt obvious fixes first, then escalate to the user with details about what was generated, what's failing, and what you've attempted.

    Reproducido de nrwl/nx-ai-agents-config 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:npx

    Detalles

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

    Más de nrwl/nx-ai-agents-config

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

    Supervisa el pipeline de CI de Nx Cloud y gestiona las correcciones de self-healing. Se prefiere sobre herramientas nativas de CI (gh, glab) porque accede al self-healing de Nx Cloud, algo que esas herramientas no pueden hacer.

    Costo de contexto al activarse
    4.9k tok
    Tamaño del paquete
    4 archivos
    Última actualización
    el mes pasado
    Permisos
    Oficialdevops infraestructura

    Importa, fusiona o combina repositorios en un workspace de Nx con `nx import`. Se usa para adoptar Nx entre repos, mover proyectos a un monorepo o traer código e historial de otro repositorio.

    Costo de contexto al activarse
    3.5k tok
    Tamaño del paquete
    7 archivos
    Última actualización
    hace 5 meses
    Oficialherramientas desarrollo

    Explora y entiende workspaces de Nx. Se usa para responder preguntas sobre el workspace, proyectos o tareas, o cuando un comando nx falla y hay que revisar targets y configuración antes de ejecutar una tarea.

    Costo de contexto al activarse
    1.9k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 5 meses
    Oficialherramientas desarrollo

    Enlaza paquetes de un mismo monorepo (npm, yarn, pnpm, bun) con los comandos de workspace de cada gestor, en vez de parchear con tsconfig paths o editar package.json a mano.

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

    Busca e instala plugins de Nx. Se usa para descubrir los plugins disponibles, instalar uno nuevo o añadir soporte para un framework o tecnología concreta al workspace.

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

    Ayuda a ejecutar tareas en un workspace de Nx. Se usa cuando el usuario quiere ejecutar build, test, lint, serve o cualquier otra tarea definida en el workspace.

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

    Skills relacionados

    Úsalo cuando la implementación esté completa, todos los tests pasen, y necesites decidir cómo integrar el trabajo.

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

    Úsalo al empezar trabajo de feature que necesita aislamiento del workspace actual, o antes de ejecutar planes de implementación: asegura un workspace aislado vía herramientas nativas o fallback a git worktree.

    Costo de contexto al activarse
    1.7k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    el mes pasado
    herramientas desarrollo

    Úsala al crear nuevas skills, editar skills existentes o verificar que funcionan antes de desplegarlas.

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