
Angular Cli
- 185 installs
- 6 repo stars
- Updated April 4, 2026
- oguzhan18/angular-ecosystem-skills
Run Angular CLI generate, build, serve, and test commands with correct flags when scaffolding apps, libraries, and production bundles.
About
Teaches Angular CLI commands and conventions from oguzhan18/angular-ecosystem-skills for generating components, serving dev builds, optimizing production bundles, and managing workspace configuration so Claude scaffolds Angular projects efficiently.
- ng generate schematics
- Serve and build commands
- Library and app scaffolding
- Production optimization flags
- Workspace configuration
Angular Cli by the numbers
- 185 all-time installs (skills.sh)
- +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #208 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oguzhan18/angular-ecosystem-skills --skill angular-cliAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 185 |
|---|---|
| repo stars | ★ 6 |
| Last updated | April 4, 2026 |
| Repository | oguzhan18/angular-ecosystem-skills ↗ |
What it does
Run Angular CLI generate, build, serve, and test commands with correct flags when scaffolding apps, libraries, and production bundles.
Files
@angular/cli
Version: Angular 21 (2025) Tags: CLI, Generators, Build, Scaffolding
References: CLI Reference • Generators • Builders
API Changes
This section documents recent version-specific API changes.
- NEW: Control flow migration —
ng g @angular/core:control-flowfor @if/@for migration source
- NEW: Signal input migration —
ng g @angular/core:signal-input-migrationfor signal inputs source
- NEW: Route lazy loading migration —
ng g @angular/core:route-lazy-loadingfor standalone routes
- NEW: Named workspaces — Multiple applications in single angular.json
- NEW: esbuild by default — Faster builds with esbuild/Vite
Best Practices
- Use generators for scaffolding
# Generate component
ng g c components/my-component
# Generate service
ng g s services/my-service
# Generate guard
ng g g guards/auth
# Generate interceptor
ng g interceptor timing
# Generate library
ng g library my-lib
# Generate with standalone
ng g c my-component --standalone- Use schematics for migrations
# Migrate to control flow
ng g @angular/core:control-flow
# Migrate to signal inputs
ng g @angular/core:signal-input-migration
# Migrate to lazy loading routes
ng g @angular/core:route-lazy-loading- Use ng add for packages
# Add Angular Material
ng add @angular/material
# Add SSR
ng add @angular/ssr
# Add PWA
ng add @angular/pwa- Configure workspace defaults
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"my-app": {
"schematics": {
"@schematics/angular:component": {
"style": "scss",
"standalone": true
}
}
}
}
}- Use ng run for builders
# Run custom builder
ng run my-app:build
# Run SSR
ng run my-app:serve-ssr
# Run prerender
ng run my-app:prerender- Use ng config for settings
# Set default style
ng config defaults.style=scss
# Enable analytics
ng analytics enable- Use ng update for migrations
# Update packages
ng update
# Update specific package
ng update @angular/core- Use ng build with options
# Production build
ng build --configuration=production
# Dev build with stats
ng build --stats-json- Use standalone by default
# New project with standalone
ng new my-app --standalone- Use functional over class-based
# Generate functional guard
ng g g guards/auth --functional
# Generate functional interceptor
ng g interceptor my-interceptor --functionalDocs Reference Index
Official Documentation
- Angular CLI - Main CLI reference
- Generate Command
- Build Command
- Schematics