Skip to main content
Back to registry

flask

jezweb/claude-skills

Production-tested patterns for Flask with the application factory pattern, Blueprints, and Flask-SQLAlchemy.

Installs425
Install command
npx skills add https://github.com/jezweb/claude-skills --skill flask
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Production-tested patterns for Flask with the application factory pattern, Blueprints, and Flask-SQLAlchemy. Latest Versions (verified January 2026): Run: uv run flask --app app run --debug This skill prevents 9 documented issues: Error : KeyError in teardown functions when using stream_with_context Source : GitHub Issue #5804 Why It Happens : Flask 3.1.2 introduced a regression where stream_with_context triggers teardown_request() calls multiple times before response generation completes. If teardown callbacks use g.pop(key) without a default, they fail on the second call. Prevention : Status : Will be fixed in Flask 3.2.0 as side effect of PR #5812. Until then, ensure all teardown callbacks are idempotent. Error : RuntimeError when handling concurrent async requests with gevent Source : GitHub Issue #5881 Why It Happens : Asgiref fails when gevent monkey-patching is active. Asyncio expects a single event loop per OS thread, but gevent's monkey-patching makes threading.Thread create greenlets instead of real threads, causing both loops to run on the same physical thread and block each other. Prevention : Choose either async (with asyncio/uvloop) OR gevent, not both.

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does flask do?

Production-tested patterns for Flask with the application factory pattern, Blueprints, and Flask-SQLAlchemy.

Is flask good?

flask does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does flask work with?

flask currently lists compatibility with codex, gemini-cli, opencode, cursor, claude-code, antigravity.

What are alternatives to flask?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install flask?

npx skills add https://github.com/jezweb/claude-skills --skill flask

Related skills

More from jezweb/claude-skills

Related skills

Alternatives in Software Engineering