nx

Installation
SKILL.md

Nx Monorepo

Nx is the project-graph and task layer over an Angular (or mixed) monorepo. Use it the token-cheap way: orient through the CLI's derived graph, and scope every task to the projects a change actually touches - never dump the whole workspace or run every target.

Navigate the project graph, do not read it

  • Map the workspace through the CLI, not by opening config files: nx show projects lists every project; nx show project <name> --json gives one project's targets, tags, and dependencies; nx graph (interactive) or nx graph --file=graph.json is the dependency graph. Read these instead of opening a pile of project.json / nx.json files to reconstruct the structure by hand.
  • Do not hand the whole graph dump into context to answer a narrow question - query the one project (nx show project <name>) or the affected set (below). The full graph is large; pull only the slice the task needs.
Installs
2
GitHub Stars
1
First Seen
Jul 8, 2026
nx — envoydev/claude-stack