debugging
Installation
SKILL.md
Debugging
Use this skill for runtime issue investigation in Litestar services.
Workflow
- Enable safe debug settings in local environments only.
- Reproduce with minimal route/test case.
- Inspect logs, exception handlers, and middleware interactions.
- Fix root cause and add regression tests.
Checklist
- Never expose debug mode in production.
- Capture request context for failures.
- Verify both success and failure response contracts after fixes.