j4flmao

63 mods across 2 repositories, 22 stars between them.

llm-finetuning

25

j4flmao/agent-skills

Skill Claude CodeCodex

Best practices for dataset preparation and PEFT/LoRA fine-tuning.

17 2d ago A 21 tokens original MIT

j4flmao/agent-skills

Skill Claude CodeCodex

PostgreSQL is an advanced, enterprise-class open-source relational database. Understanding its internals is crucial for high-performance tuning.

17 2d ago A 0 tokens original MIT

j4flmao/agent-skills

Skill Claude CodeCodex

DDD is a software engineering approach that centers the design around the business domain, bridging the gap between technical and business teams.

17 2d ago A 0 tokens original MIT

j4flmao/agent-skills

Skill Claude CodeCodex

Designing resilient microservices requires managing distributed state, failures, and complex communication networks.

17 2d ago A 0 tokens original MIT

j4flmao/agent-skills

Skill Claude CodeCodex

Use when the user asks about strategic roadmapping, technology roadmapping, product roadmap creation, prioritization frameworks (RICE, WSJF, MoSCoW), OKR alignment, stakeholder alignment, timeline planning, or roadmap communication. Do NOT use for: project management task tracking, sprint planning, or technical…

17 2d ago A 71 tokens original MIT

backend-bulk-import

31

j4flmao/agent-skills

Skill Claude CodeCodex

Enforce bulk data import patterns including CSV/Excel parsing, file upload handling, validation pipeline, progress tracking, batch processing, error reporting, rollback on failure, deduplication, and background processing. NOT for real-time data ingestion or streaming pipelines.

17 2d ago A 55 tokens original MIT

bun

32

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building with Bun runtime — Bun APIs, testing, package management, shell scripting, hot reload, SQLite, file I/O. This skill enforces: built-in APIs over npm equivalents, Bun test runner, bun install speed optimization, Bun.shell for scripts. Do NOT use for: Node.js-specific APIs…

17 2d ago A 80 tokens original MIT

Caching Strategies

33

j4flmao/agent-skills

Skill Claude CodeCodex

Redis caching patterns including Cache-Aside, Write-Through, and invalidation.

17 2d ago A 19 tokens original MIT

deno

34

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building with Deno — TypeScript runtime, Deno Deploy, Fresh framework, Deno std library. This skill enforces: permission-based security, URL import system, std lib usage over npm, Fresh island architecture. Do NOT use for: Node.js projects, Bun projects, browser-only TypeScript.

17 2d ago A 68 tokens original MIT

oak-backend

35

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building Oak backend applications — Deno native HTTP framework, middleware context, composable middleware. This skill enforces: middleware composition, proper context usage, Deno permissions, type-safe routing. Do NOT use for: Node.js Express projects, Hono on Deno, traditional Node.js backends.

17 2d ago A 68 tokens original MIT

dotnet-architecture

36

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when structuring .NET applications — clean architecture, vertical slices, CQRS, MediatR, dependency injection, and project organization. This skill enforces: solution structure conventions, dependency flow direction, DI registration patterns, and architecture testing. Requires .NET SDK (dotnet new). Do…

17 2d ago A 83 tokens original MIT

dotnet-patterns

37

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when implementing .NET patterns — MediatR pipelines, CQRS, Result pattern, EF Core patterns, pipeline behaviors, and event sourcing. This skill enforces: MediatR for CQRS, FluentValidation for validation, Result type for error handling, EF Core conventions. Requires .NET SDK (dotnet new). Do NOT use…

17 2d ago A 90 tokens original MIT

elixir

38

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building with Elixir — Phoenix framework, OTP, BEAM, LiveView, Ecto, supervision trees. This skill enforces: OTP design principles, Phoenix context boundaries, LiveView state management, Ecto schema conventions, supervision tree structure. Do NOT use for: non-Elixir projects, frontend JavaScript…

17 2d ago A 79 tokens original MIT

micronaut

41

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building Micronaut applications — compile-time DI, reactive HTTP server, AOT optimization, GraalVM native image. This skill enforces: annotation-based configuration, compile-time DI (no reflection), reactive programming with Project Reactor, declarative HTTP clients, and AOT compilation. Requires…

17 2d ago A 100 tokens original MIT

quarkus-backend

42

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building Quarkus backend applications — supersonic Java, Dev UI, GraalVM native, reactive messaging, Panache ORM. This skill enforces: compile-time metadata processing, live reload, continuous testing, container-first design. Do NOT use for: Spring Boot projects, Micronaut applications, standard…

17 2d ago A 75 tokens original MIT

nodejs-drizzle

43

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when working with Drizzle ORM — schema definition, SQL-like queries, migrations, relations, and edge deployment. This skill enforces: schema-first design, explicit SQL patterns, drizzle-kit for migrations, relational query builder, and connection management. Requires drizzle-orm and drizzle-kit. Do NOT…

17 2d ago A 85 tokens original MIT

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building Express.js apps — app setup, middleware chain, routing, error handling, validation. This skill enforces: proper middleware ordering, global error handler, Zod/Joi validation, module-based routing, environment config. Do NOT use for: database schema design, frontend, DevOps, non-Express…

17 2d ago A 81 tokens original MIT

nodejs-fastify

45

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building Fastify applications — schema validation, plugin system, hooks, serialization. This skill enforces: JSON Schema validation, plugin encapsulation, schema serializers, Fastify lifecycle hooks. Do NOT use for: Express.js apps, database schema, frontend, or non-Fastify Node backends.

17 2d ago A 68 tokens original MIT

nodejs-hono

46

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building Hono applications — lightweight web framework, edge-ready, Zod validation, RPC client. This skill enforces: Hono app factory pattern, Zod validation middleware, RPC type-safe client, middleware composition, edge deployment readiness. Do NOT use for: Express.js apps, NestJS projects, or…

17 2d ago A 75 tokens original MIT

nodejs-prisma

47

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when working with Prisma ORM — schema modeling, migrations, queries, relations, middleware, and deployment. This skill enforces: data model normalization, relation conventions, Prisma Client best practices, migration safety, and performance optimization. Requires @prisma/client. Do NOT use for…

17 2d ago A 79 tokens original MIT

php-laravel

48

j4flmao/agent-skills

Skill Claude CodeCodex

Use this skill when building Laravel applications — MVC structure, Eloquent ORM, service layer, validation, queues, and testing. This skill enforces: thin controllers, service layer for business logic, Eloquent best practices with eager loading, form request validation, and queue job structure. Requires Laravel 10+ or…

17 2d ago A 87 tokens original MIT