agentsclimarketplace

Angular

Skill ngocsangyem/MeowKit/.claude/skills/angular

Production ready. AI Agent Workflow System for Claude Code

Install
npx -y skills add ngocsangyem/MeowKit --skill angular

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when working with Angular code — components, signals, services, forms, routing, HTTP, testing, SSR, or tooling. Targets Angular v20+ modern patterns. Auto-activates on .ts files in Angular projects (detected via angular.json).

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.8 KB, as published. Nobody here has run it

Angular

Angular v20+ patterns — 10 topics consolidated with progressive disclosure.

v20+ Modern Defaults (apply always)

  • Standalone components are default — no NgModule needed
  • Signal-based inputs/outputs — use input(), input.required(), output() (not @Input/@Output)
  • Signal-based state — use signal(), computed(), linkedSignal() (not BehaviorSubject)
  • inject() function — use inject() in field initializers (not constructor injection)
  • Native control flow — use @if, @for with track, @switch (not *ngIf/*ngFor)
  • OnPush change detection — always set changeDetection: ChangeDetectionStrategy.OnPush
  • Functional guards/resolvers — use functions (not class-based guards)
  • resource() / httpResource() — prefer over manual HttpClient subscribe for data loading

When to Read Each Reference

Task involvesRead
Components, templates, host bindings, content projectionreferences/component.md
signal(), computed(), linkedSignal(), effect(), reactive statereferences/signals.md
inject(), providers, injection tokens, servicesreferences/di.md
Custom directives, DOM manipulation, host listenersreferences/directives.md
Forms, validation, signal forms APIreferences/forms.md
HTTP calls, resource(), httpResource(), interceptorsreferences/http.md
Routes, lazy loading, guards, resolvers, navigationreferences/routing.md
SSR, hydration, prerendering, browser-only APIsreferences/ssr.md
Unit tests, integration tests, TestBed, Vitestreferences/testing.md
Angular CLI, schematics, build config, project setupreferences/tooling.md

Read multiple references when task spans topics (e.g., component + signals + forms).

Gotchas (top 5 — most common Claude mistakes)

  1. Using @Input/@Output decorators: deprecated in v20+ → use input(), output() signal functions
  2. **Using ngIf/ngFor: deprecated template syntax → use @if, @for with track expression
  3. Constructor injection: outdated pattern → use inject() in field initializers
  4. BehaviorSubject for component state: over-complex → use signal() + computed()
  5. Class-based guards/interceptors: deprecated → use functional CanActivateFn, HttpInterceptorFn

Full list: references/gotchas.md

Workflow Integration

Auto-activates during Phase 3 (Build) when Angular project detected (angular.json or @angular/core in package.json). Loaded by developer agent alongside mk:typescript.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.