con un clic
angular-feature
Generates an Angular feature component (Standalone, OnPush)
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Generates an Angular feature component (Standalone, OnPush)
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Generates Angular animations for smooth UI transitions and interactions
Generates Angular components with best practices and patterns
Generates an Angular dialog component extending BaseDialogComponent
Generates Angular directives for DOM manipulation and behavior enhancement
Generates Angular error boundary components for graceful error handling
Generates Angular reactive forms with validation, error handling, and state management
| name | angular-feature |
| description | Generates an Angular feature component (Standalone, OnPush) |
This skill helps you generate Angular feature components following the project's standards: Standalone, OnPush change detection, and separate HTML/CSS files.
When creating a new feature component, use this template:
import { Component, ChangeDetectionStrategy, signal } from "@angular/core";
import { CommonModule } from "@angular/common";
@Component({
selector: "app-{{name}}",
standalone: true,
imports: [CommonModule],
templateUrl: "./{{name}}.component.html",
styleUrls: ["./{{name}}.component.css"],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class {{Name}}Component {
// State
// Use signals for local state
constructor() {}
}
standalone: true.changeDetection: ChangeDetectionStrategy.OnPush.CommonModule and other dependencies.