AgenticPawan/FullStack-Pilot

Claude Code plugin marketplace for Angular + .NET + SQL Server + Azure - governance skills, agents, and audit/fix pipelines for full-stack Microsoft shops.

2Stars on the repository
60Mods indexed here, across every type
1mo agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

angular-a11y

01

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

WCAG 2.2 AA enforcement for Angular apps. Semantic HTML first, ARIA only when needed, focus management on route change and dialog open/close using CDK FocusTrap and LiveAnnouncer, keyboard navigation, colour contrast, skip links, and screen reader announcements. AAA items are marked advisory.

2 1mo ago A 67 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews how an Angular app consumes its .NET backend's API contract. Flags hand-typed TypeScript interfaces re-declared per feature instead of generating a typed client from the backend's OpenAPI/Swagger spec (NSwag/openapi-typescript), a generated client checked in but never regenerated against the current API…

2 1mo ago A 113 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews how an Angular SPA authenticates against an OIDC/OAuth2 IdP or the .NET backend — distinct from angular-security's permission gating, which assumes authentication already happened. Flags tokens in localStorage instead of httpOnly Secure cookies, no central auth interceptor, no silent renewal, hand-rolled…

2 1mo ago A 88 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

General Angular coding-standards enforcement — naming conventions, standalone-first architecture (v17+), service extraction for business logic, strict TypeScript compiler options, barrel-file risk, and signal-based input()/output() adoption (v17.1+). Version-gated checks read .claude/pilot/stack-profile.json…

2 1mo ago A 89 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews JSON-schema-driven Angular reactive forms — a shared field-descriptor model driving FormGroup construction and template rendering. Flags hand-coded form fields where a descriptor should drive them, validation duplicated between descriptor and ad-hoc Validators, missing generic field renderers, enabled/disabled…

2 1mo ago A 91 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews Angular application-level error handling — the frontend counterpart to dotnet-error-handling's ProblemDetails contract. Flags no global ErrorHandler for uncaught exceptions, per-component ad-hoc catchError blocks with no shared error-boundary/toast pattern, HTTP error responses not parsed against the .NET…

2 1mo ago A 94 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews Angular feature-flag usage and its coordination with dotnet-feature-flags — the same flag key must resolve consistently on both sides. Flags build-time constants requiring a rebuild to toggle, flag keys drifting from backend names, ad-hoc conditionals instead of a centralized service, no fallback when…

2 1mo ago A 93 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Typed HttpClient wrappers, interceptor-based retry with exponential backoff and per-request timeout, correlation-ID header propagation to .NET backends, error normalisation into typed error models, and loading-state management. Targets Angular 17+ functional HttpClient configuration.

2 1mo ago A 55 tokens original MIT

angular-i18n

09

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews Angular internationalization architecture — the frontend counterpart to dotnet-localization's XML-default-plus-DB-override model. Flags hardcoded UI strings with no i18n library wired, translation keys that don't share a common key space with the .NET DB-override table, locale-unaware date/number/currency…

2 1mo ago A 96 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews ongoing ESLint/Prettier enforcement in CI — distinct from angular-upgrade-path's one-time TSLint migration. Flags ESLint not run as a required CI gate, missing @angular-eslint template linting, ESLint/Prettier conflicts without eslint-config-prettier, no husky + lint-staged pre-commit hook, blanket…

2 1mo ago A 102 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Detects and prevents Angular memory leaks. Covers subscription leaks, takeUntilDestroyed() (v16+), async pipe preference, DestroyRef, detached change-detector trees, DOM event listeners left attached, and NgZone.runOutsideAngular misuse. Includes a leak-hunt checklist.

2 1mo ago A 60 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews Nx/monorepo workspace boundaries once an Angular codebase spans multiple apps or teams — the layer above angular-shared-libraries' single-library guidance. Flags no enforced module/library-tag boundaries, shared libraries without ownership or versioning, no module-federation boundary for independently…

2 1mo ago A 96 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews Angular animation/motion accessibility per WCAG 2.2 (2.3.3 Animation from Interactions, 2.2.2 Pause/Stop/Hide) — the motion dimension angular-a11y doesn't cover. Flags animations with no prefers-reduced-motion fallback, auto-playing carousels/parallax without pause controls, route transitions moving focus…

2 1mo ago A 111 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews multi-layout Angular shells (header nav vs sidebar nav, switchable per user/tenant/preference) for a centralized layout component, a layout-selection service, persisted layout preference, responsive sidebar collapse, and a single shared navigation-model consumed by every layout variant.

2 1mo ago A 57 tokens original MIT

angular-ngrx-state

15

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Governs classic NgRx Store/Effects usage in large or legacy Angular codebases and when NgRx is still the right call versus Signals covered by angular-signals-and-state. Flags full NgRx boilerplate for simple local state, unmemoized selectors recomputing on every emission, Effects with no catchError killing the whole…

2 1mo ago A 120 tokens original MIT

angular-performance

16

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Angular rendering performance: OnPush change detection, zoneless (v18+ experimental, v20 stable), @for with track (v17+), deferrable views with @defer triggers (v17+), lazy-loaded routes, bundle budget configuration in angular.json, and NgOptimizedImage for LCP (v15+).

2 1mo ago A 71 tokens original MIT

angular-pwa-offline

17

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews Angular PWA/offline-first setup for apps that need to work in the field with intermittent connectivity. Flags @angular/service-worker not configured, no offline fallback page/shell, a caching strategy that doesn't distinguish app-shell assets from API data, and no conflict-resolution story for data edited…

2 1mo ago A 102 tokens original MIT

angular-realtime

18

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews the Angular SignalR client — the frontend counterpart to dotnet-realtime's hub. Flags a raw HubConnection scattered across components instead of a typed connection service, no automatic reconnect with backoff, the access token not attached (or not refreshed) on the socket, untyped on()/invoke() calls that…

2 1mo ago A 103 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews Angular Router architecture beyond permission guards (owned by angular-security) — resolvers, typed route data, nested composition. Flags detail data fetched in ngOnInit instead of a Resolver, magic-string route data, deep routes with no lazy boundary, missing wildcard/redirect strategy, guards duplicated…

2 1mo ago A 87 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews runtime environment configuration for containerized Angular SPAs — the frontend mirror of dotnet-dynamic-configuration. Flags API URLs/flags baked into environment.ts at build time (one Docker image per environment), no runtime config.json + APPINITIALIZER pattern, config fetched too late for interceptors…

2 1mo ago A 95 tokens original MIT

angular-security

21

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Angular security hardening: XSS template-binding hygiene, DomSanitizer bypass policy, nonce-based CSP, Trusted Types (v17+), CSRF handling with the .NET backend, and permission-ONLY client-side access control — route guards and UI gating check permissions, never roles; client checks are UX only, real enforcement is…

2 1mo ago A 83 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Structuring reusable Angular code across an app or Nx/Angular-CLI workspace — shared reactive-forms building blocks (form-group factories, centralized validators) and a generic typed paged/sortable/filterable DataTableComponent, extracted into proper workspace libraries with clean public APIs instead of duplicated per…

2 1mo ago A 66 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Reviews the shared UI-kit layer beyond forms and tables already covered by angular-shared-libraries — modals/dialogs, toast/notification service, and confirmation prompts. Flags MatDialog/CDK Overlay usage reimplemented per feature instead of a shared DialogService, ad-hoc snackbar/toast calls with inconsistent…

2 1mo ago A 110 tokens original MIT

AgenticPawan/FullStack-Pilot

Skill Claude CodeCodex

Guides signal-based state design in Angular 17–20. Covers signal()/computed()/effect() patterns, when RxJS still wins, toSignal()/toObservable() interop (v16+), linkedSignal() (stable v20), and resource()/httpResource() async data (stable v20 / experimental v19.2).

2 1mo ago A 74 tokens original MIT