litestar-debugging
Installation
SKILL.md
Debugging
Execution Workflow
- Reproduce the issue with the smallest possible app, route, or test case.
- Identify the failing layer first: requests, routing, dependency injection, middleware, auth, responses, exception handling, or lifecycle.
- Turn on only the minimum safe diagnostics needed: local
debug=True, focused logs, or temporary assertions. - Inspect the boundary where the behavior diverges from expectation.
- Fix the root cause, remove temporary diagnostics, and add a regression test.
- Re-run the affected tests and re-check the surrounding contract for regressions.