angular-signals-forms
ALWAYS use when working with Angular Signal Forms, reactive forms with signals, FormControl with signals, or new forms API in Angular.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
---
name: "angular-signals-forms"
description: "ALWAYS use when working with Angular Signal Forms, reactive forms with signals, FormControl with signals, or new forms API in Angular."
license: "MIT"
---
# Angular Signal Forms
**Version:** Angular 19+ (2025)
**Tags:** Signal Forms, Reactive Forms, Signals
**References:** [Signal Forms](https://angular.dev/guide/forms/signal-forms)
## Best Practices
- Use signal-based FormControl
```ts
import { signal } from '@angular/forms';
@Component({})
export class MyComponent {
name = signal('');
updateName(value: string) {
this.name.set(value);
}
}
```
- Use withValidators
```ts
email = signal('', {
validators: [Validators.required, Validators.email]
});
```
- Use withAsyncValidators
```ts
username = signal('', {
asyncValidators: [uniqueUsernameValidator]
});
```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.

