<< All versions
Skill v1.0.1
currentLLM-judged scan95/100aj-geddes/useful-ai-prompts/flask-api-development
10 files
──Details
PublishedMay 14, 2026 at 09:00 PM
Content Hashsha256:956d96301276c63b...
Git SHA3f5182cfd739
Bump Typepatch
──Files
Files (1 file, 3.1 KB)
SKILL.md3.1 KBactive
SKILL.md · 104 lines · 3.1 KB
version: "1.0.1" name: flask-api-development description: > Develop lightweight Flask APIs with routing, blueprints, database integration, authentication, and request/response handling. Use when building RESTful APIs, microservices, or lightweight web services with Flask.
Flask API Development
Table of Contents
Overview
Create efficient Flask APIs with blueprints for modular organization, SQLAlchemy for ORM, JWT authentication, comprehensive error handling, and proper request validation following REST principles.
When to Use
- Building RESTful APIs with Flask
- Creating microservices with minimal overhead
- Implementing lightweight authentication systems
- Designing API endpoints with proper validation
- Integrating with relational databases
- Building request/response handling systems
Quick Start
Minimal working example:
python
# app.pyfrom flask import Flask, request, jsonifyfrom flask_cors import CORSfrom flask_sqlalchemy import SQLAlchemyfrom flask_jwt_extended import JWTManagerimport osapp = Flask(__name__)app.config['SQLALCHEMY_DATABASE_URI'] = os.getenv('DATABASE_URL', 'sqlite:///app.db')app.config['JWT_SECRET_KEY'] = os.getenv('JWT_SECRET_KEY', 'dev-secret')app.config['JSON_SORT_KEYS'] = Falsedb = SQLAlchemy(app)jwt = JWTManager(app)CORS(app)# Request ID middleware@app.before_requestdef assign_request_id():import uuidrequest.request_id = str(uuid.uuid4())# Error handlers@app.errorhandler(400)def bad_request(error):// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents | |
|---|---|---|
| Flask Application Setup | Flask Application Setup | |
| Database Models with SQLAlchemy | Database Models with SQLAlchemy | |
| Authentication and JWT | Authentication and JWT | |
| Blueprints for Modular API Design | Blueprints for Modular API Design | |
| Request Validation | Request Validation | |
| Application Factory and Configuration | Application Factory and Configuration |
Best Practices
✅ DO
- Use blueprints for modular organization
- Implement proper authentication with JWT
- Validate all user input
- Use SQLAlchemy ORM for database operations
- Implement comprehensive error handling
- Use pagination for collection endpoints
- Log errors and important events
- Return appropriate HTTP status codes
- Implement CORS properly
- Use environment variables for configuration
❌ DON'T
- Store secrets in code
- Use global variables for shared state
- Ignore database transactions
- Trust user input without validation
- Return stack traces in production
- Use mutable default arguments
- Forget to handle database connection errors
- Implement authentication in route handlers