From litestar
Provides typed settings, env loading, and cached config factories for Litestar apps. Handles dataclass or pydantic-settings patterns and app-state wiring.
How this skill is triggered — by the user, by Claude, or both
Slash command
/litestar:litestar-settingsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for typed settings, env loading, cached settings factories, and app-state wiring.
Use this skill for typed settings, env loading, cached settings factories, and app-state wiring.
from dataclasses import dataclass, field
from functools import lru_cache
from os import getenv
def get_env(key: str, default: str) -> str:
return getenv(key, default)
@dataclass(frozen=True)
class AppSettings:
name: str = field(default_factory=lambda: get_env("APP_NAME", "api"))
@lru_cache(maxsize=1)
def get_settings() -> AppSettings:
return AppSettings()
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.