ワンクリックで
angular-expert
Angular framework expert including components, services, RxJS, templates, and testing
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Angular framework expert including components, services, RxJS, templates, and testing
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Creates structured plans from requirements. Generates comprehensive plans with steps, dependencies, risks, and success criteria. Coordinates with specialist agents for planning input and validates plan completeness. Uses template-renderer for formatted output.
Create, validate, and convert skills for the agent ecosystem. Enforces standardized structure for consistency. Enables self-evolution by creating new skills on demand, converting MCP servers and codebases to skills.
Research-backed skill refresh workflow for updating existing skills with TDD checkpoints, memory-aware integration, and EVOLVE/reflection trigger handling.
Ensure accessibility in UI components including semantic HTML, ARIA attributes, keyboard navigation, and WCAG 2.2 AA compliance.
Use when you want to improve response quality through meta-cognitive reasoning. Applies 15+ reasoning methods to reconsider and refine initial outputs.
N-round opposing-stance debates for trade-off analysis. Assigns pro/con roles to agents, runs structured debate rounds with quality scoring, and produces a moderator synthesis with confidence-rated recommendation. Generalizable to architecture, technology, security, and design decisions.
SOC 職業分類に基づく
| name | angular-expert |
| version | 1.1.0 |
| category | Frameworks |
| agents | ["developer","frontend-pro"] |
| tags | ["angular","typescript","rxjs","components","frontend"] |
| description | Angular framework expert including components, services, RxJS, templates, and testing |
| model | sonnet |
| invoked_by | both |
| user_invocable | true |
| tools | ["Read","Write","Edit","Bash","Grep","Glob"] |
| consolidated_from | 1 skills |
| verified | true |
| lastVerifiedAt | "2026-02-22T00:00:00.000Z" |
| best_practices | ["Use standalone components (Angular 17+ default)","Apply signals for reactive state management","Use OnPush change detection for performance","Unsubscribe from Observables with takeUntilDestroyed() or async pipe","Prioritize type safety and strict TypeScript"] |
| error_handling | graceful |
| streaming | supported |
| source | builtin |
| trust_score | 100 |
| provenance_sha | b8db4d5afb95f9de |
When reviewing or writing code, apply these guidelines:
When reviewing or writing code, apply these guidelines:
When reviewing or writing code, apply these guidelines:
When reviewing or writing code, apply these guidelines:
@Input() values are read-only from the child's perspective; communicate back to the parent via @Output() events or shared services.takeUntilDestroyed(), the async pipe, or DestroyRef; uncleaned subscriptions are the #1 Angular memory leak vector.OnPush change detection for non-trivial components — default change detection triggers on every event everywhere in the tree; OnPush triggers only on input reference changes.any type assertions to bypass TypeScript — type-unsafe code causes runtime errors that strict mode would catch at compile time; use proper types or generics instead.| Anti-Pattern | Why It Fails | Correct Approach |
|---|---|---|
| Using NgModule for new components | Legacy pattern deprecated since Angular 17 | Use standalone components |
| Direct DOM manipulation with ElementRef | Breaks SSR and web worker compatibility | Use Angular renderer or signals |
| Not unsubscribing from Observables | Memory leaks accumulate across component lifecycle | Use async pipe or takeUntilDestroyed() |
| Default change detection on data-heavy components | Unnecessary full-tree checks on every event | Use OnPush change detection strategy |
| Deeply nested imperative subscriptions | Hard to test, lifecycle leak risk | Prefer async pipe in template |
Using any type to bypass compiler | Runtime errors that TypeScript would prevent | Use proper types or unknown with type guards |
This expert skill consolidates 1 individual skills:
Before starting:
cat .claude/context/memory/learnings.md
After completing: Record any new patterns or exceptions discovered.
ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.