angular-tooling

Guide Angular CLI workflows for v20+ project scaffolding, builds, and tests.

Updated Mar 2, 2026
One-click install
npx skills add https://github.com/MassimilianoPili/claude-code-config --skill angular-tooling-massimilianopili
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: angular-tooling
Source: https://github.com/MassimilianoPili/claude-code-config/tree/main/skills/angular-tooling
Command: npx skills add https://github.com/MassimilianoPili/claude-code-config --skill angular-tooling-massimilianopili

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill streamlines the entire Angular development lifecycle, from project setup and code generation to building, testing, and optimization, ensuring efficient and standardized development practices.

Core Features & Use Cases

  • Project Scaffolding: Quickly create new Angular projects with customizable configurations.
  • Code Generation: Generate components, services, directives, pipes, and more using ng generate.
  • Build & Optimization: Configure and execute development and production builds, analyze bundle sizes, and manage caching.
  • Testing & Linting: Run unit tests, E2E tests, and enforce code quality with linters.
  • Use Case: When starting a new Angular feature, use this Skill to generate the necessary component, service, and associated test files, ensuring they follow project conventions.

Quick Start

Generate a new Angular component named 'user-profile' within the 'features' directory.

Frequently Asked Questions about angular-tooling

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a new Angular component using the CLI?

To scaffold an Angular component, use the `ng generate` command to create component, service, directive, or pipe files. This ensures the generated code follows standard Angular CLI project conventions and automatically configures the necessary TypeScript imports.

What is the best way to configure an Angular production build for bundle size optimization?

The best way to configure an Angular production build is using the Angular CLI build commands to manage caching and analyze bundle sizes. This streamlines the build process and ensures efficient frontend output for your Angular v20+ projects.

Does this Angular CLI guidance support testing and linting workflows?

Yes, this guidance supports testing and linting workflows by providing commands to run unit tests and E2E tests. It helps enforce code quality by integrating standard Angular CLI testing tools directly into your development lifecycle.

Can I use these Angular CLI commands to initialize a project with custom configurations?

Yes, you can use the Angular CLI project initialization commands to quickly create new Angular projects with customizable configurations. This abstracts complex setup operations into actionable instructions for standardized frontend development.

Why should I use the Angular CLI for code generation instead of manual file creation?

Using the Angular CLI for code generation ensures standardized development practices by automatically creating associated test files and correctly wiring dependencies. Manual file creation risks misalignment with project conventions and requires extra configuration management.