What problem does it solve?
This skill removes the repetitive and error-prone work of hand-crafting Angular schematics and custom generators by providing clear patterns and best practices to scaffold, template, and apply code transformations reliably.
Core Features & Use Cases
- Scaffold Custom Generators: Create reusable schematics to generate components, services, modules, and feature blueprints.
- Template-driven File Creation: Apply templates, move files, and merge changes into the Angular project tree using @angular-devkit/schematics primitives.
- CLI Integration & Maintenance: Integrate schematics into Angular CLI workflows and automate large-scale code changes or upgrades across projects.
- Use Case: Add a standardized feature module with component, service, and routing setup to multiple applications in a monorepo using a single custom schematic.
Quick Start
Generate a new schematic named my-schematic that creates a component file at src/app/my-component using template variables for name and path.