AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Litestar Routing

skill-litestar-org-litestar-skills-litestar-routing · by litestar-org

Auto-activate for Controller, Router, @get/@post/@put/@patch/@delete, route_handler, path params, app/domain modules, or DomainPlugin layout. Not for frontend routers.

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-litestar-org-litestar-skills-litestar-routing

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-litestar-org-litestar-skills-litestar-routing)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Litestar Routing? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Litestar Routing

Use this skill for route handlers, Controllers, Routers, domain clustering, and endpoint module layout.

Code Style Rules

  • Cluster Controllers by domain, not HTTP method.
  • Keep handlers thin: parse request data, call a service, return a DTO or response object.
  • Put shared path, dependencies, guards, and tags on the Controller class.
  • Prefer the typed markers FromPath[T] / FromQuery[T] / FromHeader[T] / FromCookie[T] (Litestar ≥ 2.22) over Annotated[T, Parameter()]; never use the field = Parameter(...) default form (removed in 3.0).
  • Use typed path parameters and explicit return annotations.

Quick Reference

  • Controller and route patterns: [routing.md](references/routing.md)
  • Domain folder layout: [domains.md](references/domains.md)
  • End-to-end vertical slice: [example.md](references/example.md)

Workflow

  1. Identify the domain boundary and URL prefix.
  2. Pick a Controller when routes share path, guards, dependencies, or tags.
  3. Keep data access in services and validation in DTOs.
  4. Wire the Controller into the app or DomainPlugin.

Guardrails

  • Do not group Controllers by HTTP method.
  • Do not put authorization logic in handlers; use Guards.
  • Do not hand-roll query parameter pagination; use the data-services skill.
  • Do not put app-wide plugin setup in route modules.

Validation Checkpoint

  • [ ] Routes are domain-clustered.
  • [ ] Handlers are async when they perform I/O.
  • [ ] Shared guards and dependencies live on the Controller.
  • [ ] DTO and service concerns link to their owning skills.

Example

from litestar import Controller, get
from litestar.di import NamedDependency

class UserController(Controller):
    path = "/users"

    @get("/")
    async def list_users(
        self,
        users_service: NamedDependency[UserService],
    ) -> list[UserRead]:
        return await users_service.list_users()

References Index

  • [routing.md](references/routing.md)
  • [domains.md](references/domains.md)
  • [example.md](references/example.md)

Official References

  • - Litestar documentation
  • - Litestar API reference

Shared Styleguide Baseline

  • [General](../litestar-styleguide/references/general.md)
  • [Python](../litestar-styleguide/references/python.md)
  • [Litestar](../litestar-styleguide/references/litestar.md)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.