What problem does it solve? Building Angular frontends on the ABP framework requires knowing many framework-specific patterns—generated proxies, ListService, PermissionGuard, localization pipes, and modal/toaster services. This Skill provides ready-to-use patterns so you avoid misusing ABP Angular APIs or reinventing boilerplate. ## Core Features & Use Cases - Service Proxy Generation: Use abp generate-proxy -t ng to create typed service classes in src/app/proxy/ from backend APIs. - List & CRUD Patterns: Wire ListService hookToQuery, ConfirmationService delete flows, reactive forms with validation, and modal-based create/edit dialogs. - Authorization & Localization: Apply PermissionGuard on routes, the *abpPermission directive in templates, and the abpLocalization pipe for translated UI text. - Use Case: When adding a new feature module (e.g., a book management page) to an ABP Angular app, follow the included patterns to scaffold the module, lazy-loaded routing, list component, form, and permission checks consistently. ## Quick Start Ask the AI to create an ABP Angular list component with routing, permissions, and localization for your entity using this skill.