nx-plugins

Find and install Nx plugins to add framework support to a workspace.

3|Updated May 14, 2026
One-click install
npx skills add https://github.com/jbadeau/fabster --skill nx-plugins-jbadeau
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-plugins
Source: https://github.com/jbadeau/fabster/tree/main/.cursor/skills/nx-plugins
Command: npx skills add https://github.com/jbadeau/fabster --skill nx-plugins-jbadeau

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers working in an Nx monorepo often need to discover which plugins exist and how to add support for a new framework or technology without digging through documentation. ## Core Features & Use Cases - Plugin Discovery: List all available Nx plugins with pnpm nx list to see what frameworks and tools can be integrated. - Plugin Installation: Install a plugin with a single command, e.g. pnpm nx add @nx/react, which wires the package into the workspace. - Use Case: When a team wants to add React support to an existing Nx workspace, use this Skill to find the right plugin and install it correctly. ## Quick Start List the available Nx plugins and install the React plugin into this workspace.

Frequently Asked Questions about nx-plugins

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list available Nx plugins?

Run `pnpm nx list` in your workspace to display all available Nx plugins. The output shows which plugins are installed and which can be added to the workspace.

How do I install an Nx plugin like @nx/react?

Use the command `pnpm nx add <plugin>`, for example `pnpm nx add @nx/react`. This installs the plugin package and integrates it into your Nx workspace configuration.

Can I add a new framework to an existing Nx workspace?

Yes, Nx plugins are designed to add framework or technology support to existing workspaces. Find the matching plugin with `pnpm nx list` and install it with `pnpm nx add`.

What package manager does the Nx plugin workflow use?

The documented commands use pnpm, as in `pnpm nx list` and `pnpm nx add <plugin>`. The same nx subcommands work with other package managers by substituting the appropriate runner.