mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
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.
14 lines
733 B
Markdown
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-->
|