home / skills / nrwl / nx / nx-plugins
This skill helps you discover and install Nx plugins to enhance your workspace, enabling framework support and streamlined tooling.
npx playbooks add skill nrwl/nx --skill nx-pluginsReview the files below or copy the command above to add this skill to your agents.
---
name: nx-plugins
description: Find and add Nx plugins. USE WHEN user wants to discover available plugins, install a new plugin, or add support for a specific framework or technology to the workspace.
---
## Finding and Installing new plugins
- List plugins: `pnpm nx list`
- Install plugins `pnpm nx add <plugin>`. Example: `pnpm nx add @nx/react`.
This skill helps you discover and add Nx plugins to a workspace quickly. It guides finding available plugins and installing them so you can add framework or tooling support to your monorepo. Use it to accelerate setup for Angular, React, Next.js, Storybook, Cypress, and other integrations.
The skill lists available plugins registered with Nx and runs the Nx plugin installer to add selected plugins to your workspace. It leverages the pnpm-powered Nx CLI commands: use pnpm nx list to enumerate plugins and pnpm nx add <plugin> to install and wire a plugin into your repo. It can suggest the correct plugin name (for example pnpm nx add @nx/react) and outline post-install steps.
How do I list available Nx plugins?
Run pnpm nx list to see plugins that Nx can add to your workspace.
How do I install a plugin?
Use pnpm nx add <plugin>. For example, pnpm nx add @nx/react installs React support and sets up generators.