Files
ISA-Frontend/AGENTS.md
Lorenz Hilpert 6a2410104e chore: remove nx-mcp and use native Nx CLI commands
Replace nx-mcp server tooling with native Nx CLI commands across
documentation files. Updates docs-researcher agent, CLAUDE.md, and
AGENTS.md to reference npx nx show/graph commands directly.
2025-11-28 14:57:13 +01:00

14 lines
733 B
Markdown

<!-- nx configuration start-->
<!-- Leave the start & end comments to automatically receive updates. -->
# General Guidelines for working with Nx
- When running tasks (build, lint, test, e2e, etc.), always use the Nx CLI (`nx run`, `nx run-many`, `nx affected`) instead of underlying tooling directly
- Use `npx nx show projects` to list all projects in the workspace
- Use `npx nx show project <name>` to analyze specific project structure and dependencies
- Use `npx nx graph` to visualize project dependencies
- For Nx documentation, use Context7 or WebSearch to find up-to-date docs
- If the user needs help with an Nx configuration or project graph error, run `npx nx report` for diagnostic info
<!-- nx configuration end-->