nx-plugins

Discover and install Nx plugins to extend an Nx workspace.

6|4|Updated Nov 1, 2025
One-click install
npx skills add https://github.com/Montte-erp/montte-nx --skill nx-plugins-montte-erp
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nx-plugins
Source: https://github.com/Montte-erp/montte-nx/tree/main/.opencode/skills/nx-plugins
Command: npx skills add https://github.com/Montte-erp/montte-nx --skill nx-plugins-montte-erp

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Helps developers find and install Nx plugins to extend an Nx monorepo workspace with frameworks, executors, and tooling without manually searching and wiring packages together.

Core Features & Use Cases

  • Discover Plugins: Use package manager commands to list available Nx plugins and community packages.
  • Install & Configure: Add and scaffold plugin integrations into the workspace, for example adding React support with @nx/react.
  • Use Case: When integrating a new frontend or backend stack into a monorepo, quickly find compatible Nx plugins and install them to provide build, test, and lint tooling.

Quick Start

List available Nx plugins and then install the React plugin by running pnpm nx list followed by pnpm nx add @nx/react.

Frequently Asked Questions about nx-plugins

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

FAQPage Schema
How do I find and install Nx plugins for a monorepo workspace?

To discover and install Nx plugins, run pnpm nx list to enumerate available packages and pnpm nx add <plugin> to install and configure the chosen plugin in your Nx workspace.

What is the best way to add React or Next.js support to an Nx workspace?

The best way to add React or Next.js support to an Nx workspace is by using pnpm nx add @nx/react to automatically install and scaffold the framework integration and its tooling.

When do I need to use Nx plugins in a monorepo?

You need Nx plugins when integrating a new frontend or backend stack into a monorepo, allowing you to quickly find compatible packages and install them to provide build, test, and lint tooling.

Does the nx-plugins approach work with pnpm for adding custom executors and linters?

Yes, the nx-plugins approach works with pnpm, allowing you to use pnpm nx list and pnpm nx add to install and configure custom executors and linters across your workspace projects.

What is the difference between manually wiring packages and using Nx plugins?

Using Nx plugins automatically discovers and scaffolds framework integrations and tooling into an Nx workspace, whereas manually wiring packages requires searching and connecting dependencies without automated configuration.