Plugin Claude Code
Codebase governance for full-stack Microsoft shops (Angular, .NET, SQL Server, Azure).
Plugin Claude Code
Codebase governance for full-stack Microsoft shops (Angular, .NET, SQL Server, Azure).
Command Claude Code
Brutal pre-submission audit of a Claude Code plugin marketplace — vulnerabilities, wiring integrity, standards compliance, skill gaps.
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).
Instructions file
Instructions for AgenticPawan/FullStack-Pilot, covering fullstack pilot — developer guide, purpose, repository layout, command conventions and plugin manifest conventions.
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…
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…
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.
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…
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.
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…
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…
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…
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…
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…
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…
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.
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…
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…
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.
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…
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…
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.
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…
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+).