agentsclimarketplace

Litestar

Skill litestar-org/litestar-skills/plugins/litestar/skills/litestar

Opinionated first-party agent skills, plugins, subagents, slash commands, and MCP servers for the Litestar framework ecosystem — publishable to Claude Code, Gemini CLI, Codex CLI, Cursor, OpenCode, and VS Code/Copilot from a single repo.

Install
npx -y skills add litestar-org/litestar-skills --skill litestar

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Auto-activate for litestar.toml, [tool.litestar], pyproject.toml Litestar deps, or Litestar() app setup. Not for focused routing, DTO, auth, DI, data, settings, middleware, realtime, deployment, or testing.

SKILL.md

4.6 KB, as published. Nobody here has run it

Litestar Routing Hub

Use this skill to choose the right focused Litestar skill and keep app-level choices coherent. For implementation details, open the narrow skill that matches the task.

This guidance targets the released Litestar 2.24.0 contract. Do not copy unreleased main APIs into consumer examples.

Code Style Rules

  • Prefer first-party Litestar ecosystem packages and patterns.
  • Match the project's existing stack for data access, serialization, DI, settings, background jobs, and deployment.
  • Keep app setup thin: compose routes, plugins, dependencies, middleware, exception handlers, and settings from domain modules.
  • Use async I/O for request handlers, service methods, background integration, and external clients.

Quick Reference

TaskSkill
Controllers, route decorators, Routers, domain folderslitestar-routing
DTOs, request bodies, response schemas, OpenAPIlitestar-dto-openapi
Authentication, authorization, Guardslitestar-auth-guards
Provide, dependency maps, Dishka wiringlitestar-di
Repositories, services, filters, paginationlitestar-data-services
Settings, env loading, app statelitestar-settings
Domain exceptions and exception handlerslitestar-exceptions
Built-in or custom middlewarelitestar-middleware
Plugin protocols and app plugin compositionlitestar-plugins
WebSockets, SSE, Channelslitestar-realtime
Google ADK / agent HTTP servinglitestar-ai-serving
Testslitestar-testing
Build artifactslitestar-build
Deployment targetslitestar-deployment
<workflow>

Workflow

  1. Inspect the project for concrete signals: route decorators, DTO classes, guards, dependency maps, service classes, settings modules, plugin lists, realtime handlers, tests, build files, or deploy files.
  2. Select the narrow skill from the table above. Use the hub only while routing the task or composing app-level architecture.
  3. If the task crosses boundaries, combine the minimum needed skills. Example: route plus service plus DTO means routing, data-services, and DTO/OpenAPI.
  4. Keep the selected stack consistent across the app. Do not mix two persistence or DI patterns in one feature unless the existing code already does.
</workflow> <guardrails>

Guardrails

  • Do not use this hub as a substitute for a focused skill when the task has a clear owner.
  • Do not infer a new stack from examples. Match the current project first.
  • Do not move auth checks, data queries, settings parsing, or background work into route handlers.
  • Do not add generic ASGI guidance when Litestar has a first-party pattern.
</guardrails> <validation>

Validation Checkpoint

  • The focused skill selection matches the files being edited.
  • Cross-cutting work names every involved skill explicitly.
  • The app setup stays compositional: controllers, plugins, middleware, DI, settings, and handlers remain separated.
  • Validation commands use Make targets from this repo when editing skills.
</validation> <example>

Example

User asks: "Add a users endpoint backed by the existing service and return an OpenAPI schema."

Use:

</example>

References Index

This hub has no deep references. Open the focused skill that owns the topic.

Official References

Shared Styleguide Baseline

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.