AratKruglik

109 mods across 2 repositories, 185 stars between them.

AratKruglik/claude-laravel

Instructions file

Claude Code instructions for AratKruglik/claude-laravel, covering agent dispatch (mandatory), claude-specific behavior, important and setup.

154 4mo ago A 473 tokens

sdlc-marketplace

50

AratKruglik/claude-sdlc

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.

31 27d ago A tokens not measured original MIT

angular-plugin

51

AratKruglik/claude-sdlc

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…

31 27d ago A tokens not measured original MIT

angular-architect

52

AratKruglik/claude-sdlc

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…

31 27d ago A 147 tokens original MIT

PostToolUse

53

AratKruglik/claude-sdlc

Hook

Runs after a tool call finishes for Edit and Write tool calls, running an inline shell check. From AratKruglik/claude-sdlc.

31 27d ago A tokens not measured original MIT

angular-conventions

54

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…

31 27d ago A 169 tokens original MIT

angular-forms

55

AratKruglik/claude-sdlc

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…

31 27d ago A 162 tokens original MIT

angular-routing

56

AratKruglik/claude-sdlc

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…

31 27d ago A 173 tokens original MIT

AratKruglik/claude-sdlc

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…

31 27d ago A 205 tokens original MIT

angular-testing

58

AratKruglik/claude-sdlc

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…

31 27d ago A 185 tokens original MIT

aspnet-core-plugin

59

AratKruglik/claude-sdlc

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…

31 27d ago A tokens not measured original MIT

AratKruglik/claude-sdlc

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…

31 27d ago A 136 tokens original MIT

efcore-specialist

61

AratKruglik/claude-sdlc

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.…

31 27d ago A 101 tokens original MIT

aspnet-conventions

62

AratKruglik/claude-sdlc

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)…

31 27d ago A 239 tokens original MIT

efcore-patterns

63

AratKruglik/claude-sdlc

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…

31 27d ago A 255 tokens original MIT

csharp-foundation

64

AratKruglik/claude-sdlc

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…

31 27d ago A tokens not measured original MIT

csharp-conventions

65

AratKruglik/claude-sdlc

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…

31 27d ago A 274 tokens original MIT

dotnet-testing

66

AratKruglik/claude-sdlc

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].

31 27d ago A 205 tokens original MIT

dotnet-tooling

67

AratKruglik/claude-sdlc

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…

31 27d ago A 217 tokens original MIT

django-plugin

68

AratKruglik/claude-sdlc

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.

31 27d ago A tokens not measured original MIT

django-architect

69

AratKruglik/claude-sdlc

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…

31 27d ago A 112 tokens original MIT

AratKruglik/claude-sdlc

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…

31 27d ago A 85 tokens original MIT

django-conventions

71

AratKruglik/claude-sdlc

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…

31 27d ago A 215 tokens original MIT

django-orm-patterns

72

AratKruglik/claude-sdlc

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…

31 27d ago A 202 tokens original MIT