nx-plugins

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

3|10|Updated Feb 23, 2026
One-click install
npx skills add https://github.com/fleetshift/fleetshift-poc --skill nx-plugins-fleetshift
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-plugins
Source: https://github.com/fleetshift/fleetshift-poc/tree/main/.agents/skills/nx-plugins
Command: npx skills add https://github.com/fleetshift/fleetshift-poc --skill nx-plugins-fleetshift

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers working in an Nx monorepo often need to extend the workspace with support for new frameworks or technologies, but finding the right plugin and installing it correctly can be unclear. This Skill provides the exact commands to list available Nx plugins and add them to the workspace. ## 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: Add a plugin to the workspace with pnpm nx add <plugin>, which handles installation and configuration. - Use Case: You want to add React support to an existing Nx workspace. Use this Skill to discover the official plugin and install it with pnpm nx add @nx/react. ## Quick Start Ask the assistant to find and install the Nx plugin for the framework you want to add to your 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 Nx workspace to display all available plugins. The output shows official and community plugins you can install to extend workspace capabilities.

How do I install an Nx plugin with pnpm?

Use pnpm nx add followed by the plugin package name, for example pnpm nx add @nx/react. The nx add command installs the package and runs any required setup generators automatically.

Can I add React support to an existing Nx workspace?

Yes, run pnpm nx add @nx/react in your workspace root. This installs the React plugin and configures the workspace so you can generate React applications and libraries.

What package manager does the nx add command require?

The commands in this Skill use pnpm, so the workspace should manage dependencies with pnpm. The nx list and nx add commands themselves are standard Nx CLI operations.