Instructions file
Claude Code instructions for AratKruglik/claude-laravel, covering agent dispatch (mandatory), claude-specific behavior, important and setup.
Instructions file
Claude Code instructions for AratKruglik/claude-laravel, covering agent dispatch (mandatory), claude-specific behavior, important and setup.
Plugin Claude Code
Multi-stack AI-assisted SDLC pipelines for Claude Code. Stack Provider Pattern: core owns the pipeline, framework plugins register themselves via stack.md profiles.
Plugin Claude Code
Angular 18-21 SPA frontend stack provider for SDLC marketplace. Standalone components + NgModule equally, signals + services + NgRx (Store/Component Store/Signals), Reactive Forms (typed), Angular Router with functional guards, TestBed + component harnesses + Angular Testing Library. Modern era (signal-first, control…
Agent
Angular 18-21 SPA implementer (frontend aspect). Replaces vanilla developer/node-architect when @angular/core is in dependencies. Knows standalone components + NgModule fallback, signals (signal/computed/effect), services-as-state, NgRx (Store/Component Store/Signals), typed Reactive Forms, Angular Router with…
Hook
Runs after a tool call finishes for Edit and Write tool calls, running an inline shell check. From AratKruglik/claude-sdlc.
Skill Claude CodeCodex
Angular 18-21 project structure, standalone components vs NgModule, control flow (@if/@for/@switch + ngIf/ngFor legacy), decorators, dependency injection (inject() function), lifecycle hooks, pipes, Angular Universal SSR pointer. Use this skill to: Detect project style (standalone vs NgModule) and apply matching…
Skill Claude CodeCodex
Angular forms: Reactive Forms (preferred — typed FormGroup/FormControl since Angular 14, FormBuilder, custom + async validators, FormArray, multi-step) and Template-driven ([(ngModel)] + FormsModule). Validation strategies, server error mapping, accessibility. Use this skill to: Build Reactive Forms with typed…
Skill Claude CodeCodex
Angular Router (built-in @angular/router) — route configuration for standalone and NgModule projects, functional guards (Angular 14.1+), lazy loading, route resolvers, typed params via signals/observables, programmatic navigation, route data and meta. Use this skill to: Configure routes (standalone-style or…
Skill Claude CodeCodex
State management for Angular 18-21: signals (signal/computed/effect), services-as-state, NgRx Store + Effects + Selectors, NgRx Component Store, NgRx Signals (newer signal-based store). RxJS essentials — operators, async pipe, takeUntilDestroyed, signal/observable interop. Use this skill to: Pick the right state tool…
Skill Claude CodeCodex
Testing Angular 18-21: TestBed, component harnesses (@angular/cdk/testing), Karma+Jasmine (default historical) vs Jest (jest-preset-angular, modern), Angular Testing Library (RTL-style). HttpClient mocking via HttpTestingController. NgRx Effects testing. Cypress / Playwright e2e. Use this skill to: Detect runner…
Plugin Claude Code
ASP.NET Core backend + database stack provider (priority=100, detects appsettings.json). Provides aspnet-core-architect (Sonnet/medium — Minimal API / MVC, DTOs, FluentValidation, DI, Options, authorization, HTTPS/HSTS, EF Core stubs) and efcore-specialist (Sonnet/low — Fluent API config, migrations, indexes). Adds…
Agent
ASP.NET Core backend implementer (backend aspect). Replaces the vanilla developer on ASP.NET Core projects. Knows Minimal API and MVC controllers, the DI container, Options pattern, FluentValidation/DataAnnotations, policy- and resource-based authorization, Data Protection API, HTTPS/HSTS pipeline, EF Core entity…
Agent
Database specialist for ASP.NET Core / EF Core, runs in the "database" extra phase after development. Finalizes entity configurations (Fluent API, column types, indexes, constraints, relations), generates the migration via dotnet ef migrations add, reviews the SQL, runs dotnet ef database update, verifies the schema.…
Skill Claude CodeCodex
ASP.NET Core web framework conventions: Minimal API vs MVC controllers, Program.cs composition, DI lifetimes (Scoped/Singleton/Transient), Options pattern with IOptions , middleware ordering (HTTPS redirect → routing → authentication → authorization), model binding and validation (FluentValidation / DataAnnotations)…
Skill Claude CodeCodex
Entity Framework Core patterns for ASP.NET Core projects: DbContext design, code-first entity configuration (Fluent API via IEntityTypeConfiguration ), relations (HasOne/HasMany, cascade/restrict/set-null), indexes and unique constraints, projection to DTOs (Select + AsNoTracking), avoiding N+1 (Include…
Plugin Claude Code
Shared C#/.NET foundation skills for the SDLC marketplace. Contains stack-agnostic conventions: csharp-conventions (modern C# idioms — nullable reference types, records, pattern matching, async/await, IDisposable, naming), dotnet-tooling (dotnet CLI, NuGet, csproj/sln, central package management, dotnet format) and…
Skill Claude CodeCodex
Modern C# idioms for any .NET project (C# 10+, .NET 6+): nullable reference types, records, readonly structs, primary constructors, pattern matching, async/await with CancellationToken, IDisposable/IAsyncDisposable, file-scoped namespaces, var usage, naming conventions (PascalCase members, camelCase fields, I-prefixed…
Skill Claude CodeCodex
Skill "dotnet-testing" from AratKruglik/claude-sdlc, covering .net testing patterns (stack-agnostic), test framework: xunit, nuget packages for a test project, xunit fundamentals and parameterised tests — [theory].
Skill Claude CodeCodex
.NET SDK and NuGet tooling conventions: dotnet CLI commands (new/build/run/test/publish/restore/format), NuGet package management (PackageReference, Directory.Packages.props central package management, packages.lock.json), project file conventions (.csproj, .sln, global.json, Directory.Build.props), multi-targeting…
Plugin Claude Code
Django backend + database stack provider (priority=150). Detects manage.py or Django in pyproject.toml/requirements.txt. Provides django-architect (Sonnet/medium — views, DRF ViewSets, serializers, forms, URLconf, middleware, signals, model definitions, Django templates, DRF API contract for SPA) and django-migrations.
Agent
Django backend implementer (backend aspect). Replaces the vanilla developer on Django projects. Knows CBV and DRF ViewSets, serializers, forms, URLconf with app namespacing, middleware, signals, Django ORM model definitions, template rendering, and DRF API contract design for SPA frontends. Do NOT use for…
Agent
Database specialist for Django, runs in the "database" extra phase after development. Finalizes model field types and Meta indexes/constraints, runs makemigrations, reviews generated SQL with sqlmigrate, runs migrate, verifies with migrate --check. Do NOT use for: application logic (django-architect), tests…
Skill Claude CodeCodex
Django web framework conventions: app layout, settings split (base/local/production), URLconf with app namespacing, CBV and DRF ViewSets, DRF serializers and permissions, form validation, signals, Django admin registration, and middleware. Activated automatically by django-plugin/stack.md. Works alongside…
Skill Claude CodeCodex
Django ORM patterns: model definitions, field types, model managers, custom QuerySet methods, selectrelated/prefetchrelated for N+1 prevention, transactions, F/Q expressions, Meta indexes and constraints. For django-architect (model definitions) and django-migrations-specialist (field finalization). Activated…