AgenticPawan

60 mods across 1 repository, 2 stars between them.

audit-plugin

02

AgenticPawan/FullStack-Pilot

Command Claude Code

Brutal pre-submission audit of a Claude Code plugin marketplace — vulnerabilities, wiring integrity, standards compliance, skill gaps.

2 1mo ago A 24 tokens original MIT

AgenticPawan/FullStack-Pilot

Instructions file CodexOpenCode

Instructions for AgenticPawan/FullStack-Pilot, covering agent routing & orchestration — fullstack pilot, agent roster, stack specialists (one trio per plugin), pipeline agents (pilot-core) and persona agents (pilot-core).

2 1mo ago A 3,008 tokens original MIT

AgenticPawan/FullStack-Pilot

Instructions file

Instructions for AgenticPawan/FullStack-Pilot, covering fullstack pilot — developer guide, purpose, repository layout, command conventions and plugin manifest conventions.

2 1mo ago C 4,862 tokens original MIT

pilot-angular

05

AgenticPawan/FullStack-Pilot

Plugin Claude Code

Angular / TypeScript governance for v15-20: signals and state, performance, accessibility (WCAG 2.2 AA), UI/UX visual consistency (spacing/type scale, responsive layout, visual hierarchy), permissions-only route guards, authentication (OIDC/PKCE), HTTP resilience, routing, SSR, testing, i18n, theming, dynamic forms…

2 1mo ago A tokens not measured original MIT

angular-implementor

06

AgenticPawan/FullStack-Pilot

Agent

Implements Angular / TypeScript fixes and features in compliance with all materialized angular rules and pilot-angular skills. Takes an angular-reviewer finding (rule/skill ID + file:line) or a feature request, applies minimal targeted edits, verifies with tsc/ng build, and hands back a summary formatted for re-review…

2 1mo ago A 92 tokens original MIT

angular-reviewer

07

AgenticPawan/FullStack-Pilot

Agent

Reviews an Angular component diff or file against all materialized angular rules and pilot-angular skills. Outputs structured findings with rule IDs, WCAG/OWASP references, severity, and fix guidance. Invoked automatically on angular diff review requests or manually via @angular-reviewer.

2 1mo ago A 58 tokens original MIT

angular-support

08

AgenticPawan/FullStack-Pilot

Agent

Product-support assistant for Angular frontend issues. Takes a symptom (console error, blank screen, broken request, UI freeze, memory growth), gathers evidence read-only — including live browser inspection via the bundled Playwright tools when available — identifies the root cause with cited file:line evidence, and…

2 1mo ago A 96 tokens original MIT

angular-a11y

09

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

17

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

23

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

24

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