angular-signals-http
ALWAYS use when working with Angular Signals and HttpClient, toSignal, toObservable, or HTTP with signals.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
---
name: "angular-signals-http"
description: "ALWAYS use when working with Angular Signals and HttpClient, toSignal, toObservable, or HTTP with signals."
license: "MIT"
---
# Angular Signals + HttpClient
**Version:** Angular 16+ (2025)
**Tags:** Signals, HTTP, toSignal, toObservable
**References:** [toSignal](https://angular.io/api/core/toSignal)
## Best Practices
- Use toSignal for HTTP
```ts
import { toSignal } from '@angular/core/rxjs-interop';
@Component({})
export class MyComponent {
private http = inject(HttpClient);
users = toSignal(this.http.get<User[]>('/api/users'), {
initialValue: []
});
}
```
- Use toObservable
```ts
import { toObservable, toSignal } from '@angular/core/rxjs-interop';
@Component({})
export class MyComponent {
name = signal('John');
name$ = toObservable(this.name);
}
```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.

