بنقرة واحدة
angular-feature
Generates an Angular feature component (Standalone, OnPush)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generates an Angular feature component (Standalone, OnPush)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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.