Agent Claude Code
Creates modern Angular v20+ applications with signals, standalone components, and latest control flow syntax.
Agent Claude Code
Creates modern Angular v20+ applications with signals, standalone components, and latest control flow syntax.
Cursor rule Cursor
The AI Dev Starter Template for smart, or lazy, people. If you want to talk a lot of jive and act like you know what you are doing... This is for you!
Cursor rule Cursor
@Component({ selector: 'app-hero-detail', imports: [CommonModule, RouterOutlet, HeroAvatarComponent], templateUrl: './hero-detail.component.html', styleUrl: './hero-detail.component.css', changeDetection: ChangeDetectionStrategy.OnPush }) export class HeroDetailComponent { // Component implementation }.
Cursor rule Cursor
@if (user()) { {{ user().name }} } @else { No user found }.
Cursor rule Cursor
Angular Services Best Practices.
Cursor rule Cursor
Angular Directives Best Practices.
Cursor rule Cursor
@Pipe({ name: 'truncate', standalone: true }) export class TruncatePipe implements PipeTransform { transform(value: string, limit: number = 100, completeWords: boolean = false, ellipsis: string = '...'): string { if (!value) return ''; if (value.length <= limit) return value.
Cursor rule Cursor
import { createStore, withState, withComputed, withMethods, patchState } from '@ngrx/signals'; import { rxMethod } from '@ngrx/signals/rxjs-interop'; import { pipe, switchMap, map, catchError } from 'rxjs'; import { inject } from '@angular/core'; import { tapResponse } from '@ngrx/operators'.
Cursor rule Cursor
// app.routes.ts import { Routes } from '@angular/router'.
Cursor rule Cursor
Angular Testing Best Practices.
Cursor rule Cursor
Angular Store Architecture and State Management.
Cursor rule Cursor
Angular Data Flow Patterns. where/how write and read data.
Cursor rule Cursor
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
Cursor rule Cursor
Cursor rule "angular-best-practices" from JrPribs/SmarterStarter, covering general guidelines, routing best practices, component input/output patterns, side panel implementation and state management.