From litestar
Guides dependency injection patterns in Litestar: Provide, NamedDependency, SkipValidation, dependency maps, Dishka integration, and provider factories.
How this skill is triggered — by the user, by Claude, or both
Slash command
/litestar:litestar-diThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for `Provide`, `NamedDependency` / `SkipValidation` (Litestar ≥ 2.23), dependency maps, provider factories, request-scoped resources, and Dishka integration.
Use this skill for Provide, NamedDependency / SkipValidation (Litestar ≥ 2.23), dependency maps, provider factories, request-scoped resources, and Dishka integration.
NamedDependency[T] and SkipValidation[T] (≥ 2.23) over Annotated[T, Dependency()] / Dependency(skip_validation=True); params.Dependency is deprecated (removed in 3.0).from litestar.di import Provide
async def provide_user_service(db_session: AsyncSession) -> UserService:
return UserService(session=db_session)
dependencies = {"users_service": Provide(provide_user_service)}
npx claudepluginhub litestar-org/litestar-skills --plugin litestarSearches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Implements vector databases with Pinecone, Weaviate, Qdrant, Milvus, pgvector for semantic search, RAG, recommendations, and similarity systems. Optimizes embeddings, indexing, and hybrid search.