Skip to main content
Back to registry

angular-best-practices

boise-state-development/agentcore-public-stack

For complex derived state patterns, see references/signal-patterns.md .

Installs419
Install command
npx skills add https://github.com/boise-state-development/agentcore-public-stack --skill angular-best-practices
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
For complex derived state patterns, see references/signal-patterns.md . Use resource() for async data fetching with signals: Key resource patterns: - Use strict type checking - Prefer type inference when type is obvious - Avoid any ; use unknown when type is uncertain - Always use standalone components (do NOT set standalone: true — it's the default in v20+) - Set changeDetection: ChangeDetectionStrategy.OnPush - Use input() and output() functions instead of decorators - Use computed() for derived state - Keep components small and single-responsibility - Prefer inline templates for small components - Use Reactive forms over Template-driven - Use class bindings instead of ngClass - Use style bindings instead of ngStyle - For external templates/styles, use paths relative to the component TS file - Do NOT use @HostBinding / @HostListener — use the host object in the decorator instead - Use signals for local component state - Use computed() for derived state - Keep state transformations pure and predictable - Do NOT use mutate on signals — use update or set instead - params returns undefined → loader doesn't run, status becomes 'idle' - Use abortSignal to cancel in-flight requests - Check hasValue() before accessing value() to handle loading/error states - Status values: 'idle' , 'loading' , 'reloading' , 'resolved' , 'error' , 'local' - Use native control flow: @if , @for ,...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does angular-best-practices do?

For complex derived state patterns, see references/signal-patterns.md .

Is angular-best-practices good?

angular-best-practices does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does angular-best-practices work with?

angular-best-practices currently lists compatibility with codex, gemini-cli, opencode, kimi-cli, amp, github-copilot.

What are alternatives to angular-best-practices?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install angular-best-practices?

npx skills add https://github.com/boise-state-development/agentcore-public-stack --skill angular-best-practices

Related skills

Alternatives in Software Engineering