Files
sck_0 aa71e76eb9 chore: release 6.5.0 - Community & Experience
- Add date_added to all 950+ skills for complete tracking
- Update version to 6.5.0 in package.json and README
- Regenerate all indexes and catalog
- Sync all generated files

Features from merged PR #150:
- Stars/Upvotes system for community-driven discovery
- Auto-update mechanism via START_APP.bat
- Interactive Prompt Builder
- Date tracking badges
- Smart auto-categorization

All skills validated and indexed.

Made-with: Cursor
2026-02-27 09:19:41 +01:00
..
2026-02-04 08:58:45 +01:00
2026-02-04 08:58:45 +01:00

Angular State Management

Complete state management patterns for Angular applications optimized for AI agents and LLMs.

Overview

This skill provides decision frameworks and implementation patterns for:

  • Signal-based Services - Lightweight state for shared data
  • NgRx SignalStore - Feature-scoped state with computed values
  • NgRx Store - Enterprise-scale global state management
  • RxJS ComponentStore - Reactive component-level state
  • Forms State - Reactive and template-driven form patterns

Structure

The SKILL.md file is organized into:

  1. State Categories - Local, shared, global, server, URL, and form state
  2. Selection Criteria - Decision trees for choosing the right solution
  3. Implementation Patterns - Complete examples for each approach
  4. Migration Guides - Moving from BehaviorSubject to Signals
  5. Bridging Patterns - Integrating Signals with RxJS

When to Use Each Pattern

  • Signal Service: Shared UI state (theme, user preferences)
  • NgRx SignalStore: Feature state with computed values
  • NgRx Store: Complex cross-feature dependencies
  • ComponentStore: Component-scoped async operations
  • Reactive Forms: Form state with validation

Version

Current version: 1.0.0 (February 2026)

References