angular-developer

Generiert Angular-Code und bietet architektonische Beratung. Auslösen bei der Erstellung von Projekten, Komponenten oder Services oder für Best Practices zu Reaktivität (Signale, linkedSignal, resource), Formularen, Dependency Injection, Routing, SSR, Barrierefreiheit (ARIA), Animationen, Styling (Komponentenstile, Tailwind CSS), Tests oder CLI-Tools.

npx skills add https://github.com/angular/skills --skill angular-developer

Angular Developer Guidelines

  1. Always analyze the project's Angular version before providing guidance, as best practices and available features can vary significantly between versions. If creating a new project with Angular CLI, do not specify a version unless prompted by the user.

  2. When generating code, follow Angular's style guide and best practices for maintainability and performance. Use the Angular CLI for scaffolding components, services, directives, pipes, and routes to ensure consistency.

  3. Once you finish generating code, run ng build to ensure there are no build errors. If there are errors, analyze the error messages and fix them before proceeding. Do not skip this step, as it is critical for ensuring the generated code is correct and functional.

Creating New Projects

If no guidelines are provided by the user, here are some default rules to follow when creating a new Angular project:

  1. Use the latest stable version of Angular unless the user specifies otherwise.
  2. Use Signals Forms for form management in new projects (available in Angular v21 and newer) Find out more.

Execution Rules for ng new: When asked to create a new Angular project, you must determine the correct execution command by following these strict steps:

Step 1: Check for an explicit user version.

  • IF the user requests a specific version (e.g., Angular 15), bypass local installations and strictly use npx.
  • Command: npx @angular/cli@<requested_version> new <project-name>

Step 2: Check for an existing Angular installation.

  • IF no specific version is requested, run ng version in the terminal to check if the Angular CLI is already installed on the system.
  • IF the command succeeds and returns an installed version, use the local/global installation directly.
  • Command: ng new <project-name>

Step 3: Fallback to Latest.

  • IF no specific version is requested AND the ng version command fails (indicating no Angular installation exists), you must use npx to fetch the latest version.
  • Command: npx @angular/cli@latest new <project-name>

Components

When working with Angular components, consult the following references based on the task:

  • Fundamentals: Anatomy, metadata, core concepts, and template control flow (@if, @for, @switch). Read components.md
  • Inputs: Signal-based inputs, transforms, and model inputs. Read inputs.md
  • Outputs: Signal-based outputs and custom event best practices. Read outputs.md
  • Host Elements: Host bindings and attribute injection. Read host-elements.md

If you require deeper documentation not found in the references above, read the documentation at https://angular.dev/guide/components.

Reactivity and Data Management

When managing state and data reactivity, use Angular Signals and consult the following references:

  • Signals Overview: Core signal concepts (signal, computed), reactive contexts, and untracked. Read signals-overview.md
  • Dependent State (linkedSignal): Creating writable state linked to source signals. Read linked-signal.md
  • Async Reactivity (resource): Fetching asynchronous data directly into signal state. Read resource.md
  • Side Effects (effect): Logging, third-party DOM manipulation (afterRenderEffect), and when NOT to use effects. Read effects.md

HTTP Communication

When communicating with backend services, use Angular HTTP APIs and consult the following reference:

  • HTTP Client and Resources: provideHttpClient, HttpClient, interceptors, and httpResource. Read http-client.md

Forms

In most cases for new apps, prefer signal forms. When making a forms decision, analyze the project and consider the following guidelines:

  • If the application is using v21 or newer and this is a new form, prefer signal forms.

  • For older applications or when working with existing forms, use the appropriate form type that matches the applications current form strategy.

  • Signal Forms: Use signals for form state management. Read signal-forms.md

  • Template-driven forms: Use for simple forms. Read template-driven-forms.md

  • Reactive forms: Use for complex forms. Read reactive-forms.md

Dependency Injection

When implementing dependency injection in Angular, follow these guidelines:

  • Fundamentals: Overview of Dependency Injection, services, and the inject() function. Read di-fundamentals.md
  • Creating and Using Services: Creating services, the providedIn: 'root' option, and injecting into components or other services. Read creating-services.md
  • Defining Dependency Providers: Automatic vs manual provision, InjectionToken, useClass, useValue, useFactory, and scopes. Read defining-providers.md
  • Injection Context: Where inject() is allowed, runInInjectionContext, and assertInInjectionContext. Read injection-context.md
  • Hierarchical Injectors: The EnvironmentInjector vs ElementInjector, resolution rules, modifiers (optional, skipSelf), and providers vs viewProviders. Read hierarchical-injectors.md

Pipes

When formatting values in templates, creating custom pipes, or reusing pipe-like logic in TypeScript, consult the following reference. Prefer pipes in templates; outside templates, avoid injecting pipe classes just to call transform().

  • Pipes: Built-in pipe imports, custom pipe naming and implementation, pure vs impure pipes, and TypeScript reuse patterns using standalone formatting functions or extracted plain functions. Read pipes.md

Angular Aria

When building accessible custom components for any of the following patterns: Accordion, Listbox, Combobox, Menu, Tabs, Toolbar, Tree, Grid, consult the following reference:

  • Angular Aria Components: Building headless, accessible components (Accordion, Listbox, Combobox, Menu, Tabs, Toolbar, Tree, Grid) and styling ARIA attributes. Read angular-aria.md

Routing

When implementing navigation in Angular, consult the following references:

  • Define Routes: URL paths, static vs dynamic segments, wildcards, and redirects. Read define-routes.md
  • Route Loading Strategies: Eager vs lazy loading, and context-aware loading. Read loading-strategies.md
  • Show Routes with Outlets: Using <router-outlet>, nested outlets, and named outlets. Read show-routes-with-outlets.md
  • Navigate to Routes: Declarative navigation with RouterLink and programmatic navigation with Router. Read navigate-to-routes.md
  • Control Route Access with Guards: Implementing CanActivate, CanMatch, and other guards for security. Read route-guards.md
  • Data Resolvers: Pre-fetching data before route activation with ResolveFn. Read data-resolvers.md
  • Router Lifecycle and Events: Chronological order of navigation events and debugging. Read router-lifecycle.md
  • Rendering Strategies: CSR, SSG (Prerendering), and SSR with hydration. Read rendering-strategies.md
  • Route Transition Animations: Enabling and customizing the View Transitions API. Read route-animations.md

If you require deeper documentation or more context, visit the official Angular Routing guide.

Styling and Animations

When implementing styling and animations in Angular, consult the following references:

  • Using Tailwind CSS with Angular: Integrating Tailwind CSS into Angular projects. Read tailwind-css.md
  • Angular Animations: Using native CSS (recommended) or the legacy DSL for dynamic effects. Read angular-animations.md
  • Styling components: Best practices for component styles and encapsulation. Read component-styling.md

Testing

When writing or updating tests, consult the following references based on the task:

  • Fundamentals: Best practices for unit testing (Vitest), async patterns, and TestBed. Read testing-fundamentals.md
  • Component Harnesses: Standard patterns for robust component interaction. Read component-harnesses.md
  • Router Testing: Using RouterTestingHarness for reliable navigation tests. Read router-testing.md
  • End-to-End (E2E) Testing: Setting up and running E2E tests. Read e2e-testing.md

Tooling

When working with Angular tooling, consult the following references:

  • Angular CLI: Creating applications, generating code (components, routes, services), serving, and building. Read cli.md
  • Code Modernization: Automatically refactoring to modern standards using migrations. Read migrations.md
  • Angular MCP Server: Available tools, configuration, and experimental features. Read mcp.md
  • Environment Configuration: Strategies for build-time and runtime configuration. Read environment-configuration.md

Verwandte Skills

golang-lint
samber
Best Practices für Linting und golangci-lint-Konfiguration für Golang-Projekte — Ausführen von Linters, Konfigurieren der .golangci.yml, Unterdrücken von Warnungen mit nolint-Direktiven, Interpretieren von Lint-Ausgaben und Auswählen von Linters. Verwenden bei der Konfiguration von golangci-lint, bei Fragen zu Lint-Warnungen oder nolint-Unterdrückungen, beim Einrichten von Code-Qualitätswerkzeugen oder bei der Auswahl von Linters. Auch verwenden, wenn der Benutzer golangci-lint, go vet, staticcheck oder revive erwähnt.
developmentcode-reviewtesting
edit-canvas-app
microsoft
Vorhandene Power Apps Canvas-App bearbeiten. VERWENDEN, wenn der Benutzer eine vorhandene Canvas-App oder pa.yaml-Dateien ändern, aktualisieren, umgestalten oder bearbeiten möchte.
official
ai-avatar-video
doany-ai
We need to translate the text inside <text> from English to German. The target language is Deutsch. The directory item type is agent skill, and the name to preserve is ai-avatar-video. The instruction says: "Do not include the name unless it appears in the source text." The name does not appear in the source text, so we should not add it. Also, do not add labels like "description" or "skill name". Just translate the text. The text describes creating AI avatar videos using various models via runcomfy CLI. We need to preserve product names, protocol names, URLs, numbers, and technical terms. So "RunComfy", "runcomfy CLI", "ByteDance OmniHuman", "Wan-AI Wan 2-7", "HappyHorse 1.0", "Seedance v2 Pro" should remain as is. Also "UGC voiceover", "virtual presenter", "dubbed product demo", "lip-synced" are technical terms; we should translate them appropriately but keep the meaning. Let
videocreativemedia
modify-jsi-features
facebook
Leitfaden zum Hinzufügen neuer JSI-Funktionalität zur JavaScript Interface (JSI)-Ebene. Verwenden, wenn der Benutzer darum bittet, neue Methoden oder Funktionen in… hinzuzufügen, zu erstellen oder zu implementieren.
official
prepare-code-freeze
nvidia
Bereite einen NeMo Relay Code-Freeze vor, indem du den Release-Branch erstellst, die Konfiguration des nächtlichen Alpha-Branches aktualisierst, den Main auf die nächste Version erhöhst und den…
official
gh-agent-session
github
GitHub CLI Agent Session Erweiterung
official
cloudflare
Cloudflare
Umfassende Cloudflare-Plattform-Fertigkeit, die Workers, Pages, Speicher (KV, D1, R2), KI (Workers AI, Vectorize, Agents SDK), Netzwerk (Tunnel, Spectrum), Sicherheit (WAF, DDoS) und Infrastructure-as-Code (Terraform, Pulumi) abdeckt. Für jede Cloudflare-Entwicklungsaufgabe nutzbar.
official
dbs-diagnosis
dontbesilent2025
dontbesilent 商业模式诊断。两种模式:问诊(消解你的问题)和体检(拆解你的商业模式)。触发方式:/dbs-diagnosis、/问诊、「帮我看看商业模式」「诊断一下我的业务」「我有个商业问题」 Business model diagnosis using dontbesilent's ontological framework. Two modes: consultation (dissolve your question) and checkup (analyze your business model). Trigger: /dbs-diagnosis, "diagnose my business model", "I have a business question
researchdata-analysisproductivity