claude-dev-suite

60 mods across 1 repository, 29 stars between them.

hybrid-edge-cloud

25

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Hybrid edge-cloud AI architecture: local-first inference with cloud escalation, model cascading, and splitting the workload across device and datacenter to balance latency, cost, privacy, and quality. Architect-level topology. USE WHEN: designing systems that combine on-device and cloud AI, "local-first", "cloud…

29 4d ago A 138 tokens original MIT

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

LLM/model inference serving architecture: the engine → serving → orchestration layering (vLLM/SGLang/TensorRT-LLM, Triton, KServe/Ray Serve), KV-cache & continuous batching, prefill-decode disaggregation, and scaling. Architect-level topology, not model training. USE WHEN: designing model/LLM serving infra, "vLLM"…

29 4d ago A 182 tokens original MIT

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Model gateway / LLM router architecture: a control point in front of multiple models/providers for routing (cost/quality/latency), fallback, rate limiting, caching, observability, and governance. Architect-level, multi-provider. USE WHEN: designing an LLM gateway/router, "model router", "LLM gateway"…

29 4d ago A 150 tokens original MIT

gsap

29

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

GreenSock Animation Platform — high-performance JS animation engine with plugin ecosystem.

29 4d ago A 0 tokens original MIT

graphql

30

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

GraphQL API design. Covers schema, queries, mutations, and resolvers. Use when building or consuming GraphQL APIs. USE WHEN: user mentions "GraphQL", "schema definition", "resolvers", "mutations", "queries", "DataLoader", "N+1 problem", asks about "how to design GraphQL API", "GraphQL schema", "GraphQL…

29 4d ago A 128 tokens original MIT

openapi

32

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

OpenAPI/Swagger specification. Covers schema definition, paths, and documentation. Use for API documentation. USE WHEN: user mentions "OpenAPI", "Swagger", "API spec", "API documentation", "schema definition", "OpenAPI 3.0", "Swagger UI", asks about "how to write OpenAPI spec", "document REST API", "API contract"…

29 4d ago A 136 tokens original MIT

pagination

33

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

API pagination patterns. Offset-based, cursor-based, keyset pagination. Filtering, sorting, and page metadata. REST and GraphQL pagination implementations. USE WHEN: user mentions "pagination", "paginate", "cursor", "offset", "page size", "next page", "infinite scroll API", "list endpoint" DO NOT USE FOR: frontend…

29 4d ago A 91 tokens original MIT

rest-api

34

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

REST API design principles. Covers resources, methods, and status codes. Use when designing or reviewing REST APIs. USE WHEN: user mentions "REST API", "RESTful", "HTTP methods", "status codes", "resource naming", "API endpoints", "pagination", "versioning", asks about "how to design REST API", "REST best practices"…

29 4d ago A 131 tokens original MIT

springdoc-openapi

35

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Springdoc OpenAPI for API documentation in Spring Boot. Covers Swagger UI configuration, annotations, schema customization, and security documentation. Based on production patterns from castellino and gestionale-presenze projects. USE WHEN: user mentions "Springdoc", "Spring Boot OpenAPI", "Swagger in Spring"…

29 4d ago A 143 tokens original MIT

swagger-dotnet

36

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Swashbuckle and NSwag for ASP.NET Core API documentation. Covers XML comments, operation filters, and OpenAPI customization. USE WHEN: user mentions "Swagger", "Swashbuckle", "NSwag", ".NET OpenAPI", "API documentation", "Swagger UI", ".NET API docs" DO NOT USE FOR: Springdoc OpenAPI - use springdoc-openapi, generic…

29 4d ago A 94 tokens original MIT

trpc

37

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Skill "trpc" from claude-dev-suite/claude-dev-suite, covering trpc core knowledge, router definition, client usage (react), protected procedures and with next.js.

29 4d ago A 132 tokens original MIT

webhooks

38

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Webhook patterns for sending and receiving. Signature verification, retry logic, idempotency, payload design, and webhook infrastructure. Covers Stripe, GitHub, Slack webhook consumption and custom webhook dispatch. USE WHEN: user mentions "webhook", "webhook endpoint", "webhook signature", "event callback", "HTTP…

29 4d ago A 108 tokens original MIT

axios

39

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Axios - promise-based HTTP client for browser and Node.js USE WHEN: user mentions "Axios", "HTTP requests", "API calls", "interceptors", "Axios instance", asks about "how to make HTTP calls", "configure Axios", "add auth header", "handle HTTP errors" DO NOT USE FOR: Fetch API - use http-clients instead; ky/ofetch …

29 4d ago A 111 tokens original MIT

graphql-codegen

40

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

GraphQL Code Generator for TypeScript. Generates typed operations, hooks, and document nodes from GraphQL schemas. Use for type-safe GraphQL in frontend. USE WHEN: user mentions "GraphQL Codegen", "generate GraphQL types", "GraphQL TypeScript", "typed GraphQL", "client preset", "React Query GraphQL", asks about…

29 4d ago B 138 tokens original MIT

http-clients

41

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

HTTP clients for frontend and Node.js. Covers Axios, Fetch API, ky, and ofetch. Includes interceptors, error handling, retry logic, and auth token management. Use for configuring API clients and HTTP communication. USE WHEN: user mentions "HTTP client", "Fetch API", "ky", "ofetch", "HTTP wrapper", "retry logic"…

29 4d ago A 144 tokens original MIT

openapi-codegen

42

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

OpenAPI client code generation. Covers openapi-typescript, openapi-generator-cli, swagger-typescript-api, and trpc-openapi. Use for generating type-safe API clients. USE WHEN: user mentions "OpenAPI codegen", "generate API client", "openapi-typescript", "swagger-typescript-api", "openapi-generator", asks about…

29 4d ago A 139 tokens original MIT

openapi-generator

43

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

OpenAPI Generator - generate clients and servers from OpenAPI specs USE WHEN: user mentions "OpenAPI Generator CLI", "generate Java client", "generate Spring server", "openapi-generator-cli", "openapi-generator-maven-plugin", asks about "generate server from OpenAPI", "OpenAPI Generator templates" DO NOT USE FOR…

29 4d ago A 109 tokens original MIT

type-safe-api

44

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

End-to-end type safety patterns for API development. Covers Zod-to-OpenAPI, ts-rest, Zodios, and contract testing. Use for ensuring type consistency between backend and frontend. USE WHEN: user mentions "type-safe API", "end-to-end types", "Zod to OpenAPI", "ts-rest", "Zodios", "contract testing", asks about "share…

29 4d ago A 147 tokens original MIT

ddd

45

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Domain-Driven Design patterns. Bounded contexts, aggregates, entities, value objects, domain events, repositories, and application services. Strategic and tactical DDD for complex business domains. USE WHEN: user mentions "DDD", "Domain-Driven Design", "bounded context", "aggregate", "value object", "domain event"…

29 4d ago A 112 tokens original MIT

event-sourcing-cqrs

46

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Event Sourcing and CQRS patterns. Event stores, projections, snapshots, command handlers, query models, and eventual consistency. Covers EventStoreDB, Axon Framework, and custom implementations. USE WHEN: user mentions "event sourcing", "CQRS", "event store", "projection", "command handler", "read model", "write…

29 4d ago A 116 tokens original MIT

multitenancy

47

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

Multi-tenant architecture patterns. Database-per-tenant, schema-per-tenant, shared-schema with tenant ID, row-level security, tenant resolution, and data isolation. USE WHEN: user mentions "multi-tenant", "multitenancy", "SaaS architecture", "tenant isolation", "row-level security", "tenant ID", "subdomain routing" DO…

29 4d ago A 95 tokens original MIT

jwt

48

claude-dev-suite/claude-dev-suite

Skill Claude CodeCodex

JSON Web Tokens for authentication. Covers token structure, signing, and validation. Use for stateless authentication. USE WHEN: user mentions "JWT", "token authentication", "access token", "refresh token", asks about "stateless auth", "token signing", "token validation" DO NOT USE FOR: session-based auth (use session…

29 4d ago A 89 tokens original MIT