debug:flask
Installation
SKILL.md
Flask Debugging Guide
A systematic approach to debugging Flask applications using established patterns and Flask-specific tooling.
Common Error Patterns
HTTP Status Code Errors
404 Not Found - Routing Issues
- Route decorator not matching requested URL
- Typos in route definitions or endpoint names
- Blueprint not registered with application
- Missing trailing slash mismatch (
strict_slashessetting) - URL rules registered after first request