angular-schematics
ALWAYS use when working with Angular Schematics, custom generators, code generation, or building CLI tools in Angular.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
---
name: "angular-schematics"
description: "ALWAYS use when working with Angular Schematics, custom generators, code generation, or building CLI tools in Angular."
license: "MIT"
---
# Angular Schematics
**Version:** Angular 21 (2025)
**Tags:** Schematics, Generators, CLI, Code Generation
**References:** [Schematics Guide](https://angular.io/guide/schematics) • [@schematics/angular](https://github.com/angular/angular/tree/main/packages/schematics/angular)
## Best Practices
- Create schematic
```bash
npm install -g @angular-devkit/schematics-cli
schematics schematics .:my-schematic
```
- Create rule
```ts
import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics';
export function myScheme(options: any): Rule {
return (tree: Tree, context: SchematicContext) => {
tree.create(options.path + '/file.ts', 'content');
return tree;
};
}
```
- Use templates
```ts
import { apply, url, template } from '@angular-devkit/schematics';
export function myScheme(options: any): Rule {
const templateSource = apply(url('./files'), [
template({ ...options }),
move(options.path)
]);
return chain([mergeWith(templateSource)]);
}
```More Frontend Frameworks skills
frontend-design
anthropics/skills
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
design-taste-frontend
leonxlnx/taste-skill
Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check.
hyperframes-creative
heygen-com/hyperframes
Non-animation creative direction for HyperFrames videos. Use for design spec (frame.md / design.md) handling, palettes, typography, narration, beat planning, audio-reactive visuals, composition patterns, and brand / style decisions. For atomic motion patterns and scene blueprints, use hyperframes-animation.

