oguzhan18/angular-ecosystem-skills

nx

ALWAYS use when working with Nx monorepo, workspace configuration, or Angular/Nx project setup.

First seen Apr 2, 2026

Installation

$ npx skills add oguzhan18/angular-ecosystem-skills --skill nx

Also in this package

Other skills from oguzhan18/angular-ecosystem-skills · top by installs.

npx skills add oguzhan18/angular-ecosystem-skills

Browse all from oguzhan18/angular-ecosystem-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 7
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version22.0.0
More metadata
version
22.0.0
generated_by
oguzhancart
generated_at
2026-02-19

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,488 B
  • docs SUMMARY.md 105 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 167 installs

SKILL.md

Nx (Smart, Fast, Extensible Build System)

Version: 22.x (2025) Tags: Monorepo, Build System, Angular, React, Node

References: Docs — guides, tutorials • GitHubEnterprise Patterns Book

API Changes

This section documents recent version-specific API changes.

  • NEW: TypeScript Project References — Faster builds and type checks using modern TypeScript setup source
  • NEW: pnpm catalog support — Manage single version policy with pnpm catalogs source
  • NEW: Angular Rspack support — Fast bundler for Angular projects source
  • NEW: AI Agent integration — Code mode for better LLM context management source
  • NEW: Polyglot workspaces — Native support for Gradle, Maven, .NET alongside JS/TS projects

Best Practices

  • Use domain-based folder structure — Group projects by business domain
libs/
├── auth/
│   ├── feature-login/
│   └── data-access/
├── products/
│   ├── feature-list/
│   └── ui/
└── shared/
    ├── ui/
    └── utils/
  • Use Nx generators — Scaffold consistent code across workspace
# Create new library
nx g @nx/angular:library --name=shared-data-access --directory=libs/shared/data-access

# Create new feature
nx g @nx/angular:component --name=user-profile --project=my-app
  • Use affected commands — Only run tasks on changed projects
nx affected:build     # Build only changed projects
nx affected:test      # Test only changed projects
nx affected:lint     # Lint only changed projects
  • Use shared libraries — Avoid code duplication with common utilities
  • Configure task dependencies — Define how tasks depend on each other in project.json
{
  "build": {
    "dependsOn": ["^build"]
  }
}
  • Use Nx Cloud — Enable distributed caching for faster CI
  • Use nx.json and tsconfig.base.json — Enforce consistent settings across projects
  • Use @nx/angular:component generator — Follow workspace conventions for components