Use Angular signals for local synchronous state and derived values.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add Andersseen/agentyx --skill angular-signals --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Angular Signals?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/andersseen-angular-signals)More formats (shields.io, HTML) on the badges page.
---
name: angular-signals
description: Use Angular signals for local synchronous state and derived values.
---
# Angular signals
Use signals when state is synchronous and read by templates or nearby code.
## State
Create writable state with `signal()`. Derive values with `computed()` instead of syncing fields by
hand. Keep `effect()` for side effects such as logging, persistence, or imperative integration.
## Boundaries
Use signal inputs, queries, and model APIs where they fit new Angular code. Bridge RxJS at the edge
with Angular interop helpers when a stream must feed signal state.
## RxJS
Do not replace every observable with a signal. RxJS remains appropriate for async streams, event
composition, cancellation, retries, and multicasting.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!