nrwl/nx-ai-agents-config▌
7 approved skills in this repository
nx-import
Productivity
Primary docs:
link-workspace-packages
Productivity
Link workspace packages in monorepos across npm, yarn, pnpm, and bun. \n \n Detects package manager via packageManager field or lockfile presence, then uses the appropriate workspace linking command for each manager \n pnpm and yarn use workspace: protocol; npm auto-symlinks workspace packages; bun supports workspace: protocol \n Resolves \"cannot find module\" and import resolution errors by adding dependencies between sibling packages with proper symlink creation \n Each manager has different
nx-generate
Productivity
Scaffold projects, libraries, and code using Nx generators with workspace pattern consistency. \n \n Discovers and runs Nx generators for creating apps, libraries, features, and custom workspace artifacts \n Prioritizes local workspace generators over plugin generators to maintain repo-specific conventions \n Performs dry-run validation before execution to verify correct file placement and structure \n Reads generator source code to understand actual behavior beyond schema, ensuring generated co
nx-run-tasks
Productivity
Execute build, test, lint, serve, and other Nx workspace tasks with flexible filtering and caching. \n \n Run single tasks with nx run <project>:<task> or multiple tasks across projects using nx run-many with project filtering by name, pattern, or tag \n Use nx affected to run tasks only on changed projects and their dependents, ideal for CI pipelines and large workspaces \n Control execution with flags like --parallel , --skipNxCache , --nxBail , and --configuration to customize behav
monitor-ci
Productivity
You are the orchestrator for monitoring Nx Cloud CI pipeline executions and handling self-healing fixes. You spawn subagents to interact with Nx Cloud, run deterministic decision scripts, and take action based on the results.
nx-workspace
Productivity
Read-only exploration of Nx workspace structure, projects, configuration, and dependencies. \n \n Query workspace projects with filtering by name, glob patterns, tags, and target availability using nx show projects \n Retrieve full resolved project configuration including inferred targets via nx show project <name> --json , avoiding partial project.json reads \n Inspect target definitions, executors, options, inputs, and outputs to understand available tasks and caching behavior \n Analyze
nx-plugins
Productivity
Discover and install Nx plugins to extend workspace capabilities with framework and technology support. \n \n Use pnpm nx list to browse available plugins in the Nx ecosystem \n Install plugins with pnpm nx add <plugin> to add framework support (React, Angular, Node, etc.) or tooling integrations \n Automatically configures generators, executors, and workspace settings for the selected technology \n