flask

A set of project guidelines for Flask, a Python web framework. It describes an application-factory structure with database access, migrations, validation, authentication, routes, services, and tests.

In plain words
What is it for?
Use it when creating or changing a Flask application, including its app factory, database models, migrations, API routes, authentication, configuration, error handling, or tests.
Why use it?
Flask lets projects choose their own structure, which can lead to inconsistent code as the application grows. These guidelines organize configuration and related code into predictable parts.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/rishapgandhi/python-skills/flask
Any agent
npx skills add rishapgandhi/python-skills --skill flask
Clone the repo
git clone --depth 1 https://github.com/rishapgandhi/python-skills

Made for: Claude Code, Codex.

Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,070 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.06070
Opus 5 $0.00000 $0.03035
Sonnet 5 $0.00000 $0.01214
Haiku 4.5 $0.00000 $0.00607

Measured 2d ago against content hash 67bfc828fd93, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

flask scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/flask/SKILL.md · 852 lines

How it starts

The opening of the file, as written. The whole thing — 852 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Flask Skill

Load when working on a Flask project. Use alongside all skills/common/ files.


Stack

Layer Library
Framework Flask 3.x
ORM SQLAlchemy 2.x + Flask-SQLAlchemy
Migrations Flask-Migrate (Alembic)
Validation marshmallow or pydantic v2
Auth Flask-JWT-Extended
Settings python-decouple / pydantic-settings
CLI Click (built into Flask)

Project Structure

myapp/
├── app/
│   ├── __init__.py           ← App factory: create_app()
│   ├── extensions.py         ← Flask extension instances
│   ├── config.py
│   ├── models/
│   ├── schemas/              ← Marshmallow schemas
│   ├── repositories/
│   ├── services/
│   ├── blueprints/
│   │   ├── users/
│   │   │   ├── __init__.py
│   │   │   ├── routes.py
│   │   │   └── tests/
│   │   └── auth/
│   │       ├── __init__.py
│   │       └── routes.py
│   └── errors.py             ← Error handlers
├── migrations/
├── tests/
├── .env.example
└── pyproject.toml

App Factory

# app/__init__.py
from flask import Flask
from app.extensions import db, migrate, jwt
from app.config import Config
from app.errors import register_error_handlers
from app.blueprints.users import users_bp
from app.blueprints.auth import auth_bp

def create_app(config_class: type = Config) -> Flask:
    """Application factory."""
    app = Flask(__name__)
    app.config.from_object(config_class)

    # Initialize extensions
    db.init_app(app)
    migrate.init_app(app, db)
    jwt.init_app(app)

    # Register blueprints
    app.register_blueprint(users_bp, url_prefix="/api/v1/users")
    app.register_blueprint(auth_bp, url_prefix="/api/v1/auth")

    register_error_handlers(app)
    return app

Extensions (Singleton Pattern)

# app/extensions.py
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_jwt_extended import JWTManager

db = SQLAlchemy()
migrate = Migrate()
jwt = JWTManager()

Read the full file on GitHub · 852 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 852 lines · 0 tokens per session scan A 67bfc828fd93

Subscribe to this mod's changes

flask is a skill published in the GitHub repository rishapgandhi/python-skills (4 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 6,070 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.