hoangnguyen0403/angular-tooling
Angular CLI usage, code generation, build configuration, and bundle optimization. Use for Angular CLI/build tasks; defer standalone webpack configuration and generic test-runner setup.
npx skills add https://github.com/HoangNguyen0403/agent-skills-standard --skill angular-tooling
ng generate component (or ng g c)--dry-run previews before write. --change-detection=OnPush sets CD at generation. skip-tests skips spec.ng generate — never create files manually.ng new my-app --style=scss --routing # Create project
ng g c features/user-profile # Generate component
ng g s services/auth # Generate service (providedIn: root)
ng g guard guards/auth # Generate functional guard
ng g interceptor interceptors/auth # Generate functional interceptor
ng g pipe pipes/truncate # Generate standalone pipe
--dry-run — Preview output without writing files. Always use --dry-run first for unfamiliar generators.skip-tests — Skips spec file generation.--flat — Skips subfolder creation.--change-detection=OnPush — Sets CD strategy on generation.--style=scss — Sets stylesheet format.ng serve --openng build -c production. Output goes to dist/my-app/browser/.ng add @angular/ssr then ng build (adds server/ output).ng test --code-coverage --watch=false. Coverage output goes to coverage/ directory.ng build -c production --stats-json
npx esbuild-visualizer --metadata dist/my-app/browser/stats.json --open
angular.json budgets — don't lower without understanding what's large.ng update — lists available updates.ng update @angular/core @angular/cli — runs official codemods.ng generate for consistency and proper registration.ng update --force: Fix peer dependency conflicts instead of skipping.When this skill applies, preserve the following domain terminology or equivalent concrete examples in the answer when relevant:
Take hoangnguyen0403/angular-tooling from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npx.
Without those the skill loads but fails at the first command.