From jeremylongshore-claude-code-plugins-plus-skills
Generates Flask blueprints with step-by-step guidance, best practices, and production-ready code for modular backend development.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jeremylongshore-claude-code-plugins-plus-skills:flask-blueprint-creatorThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides automated assistance for flask blueprint creator tasks within the Backend Development domain.
This skill provides automated assistance for flask blueprint creator tasks within the Backend Development domain.
This skill activates automatically when you:
Example: Basic Usage Request: "Help me with flask blueprint creator" Result: Provides step-by-step guidance and generates appropriate configurations
| Error | Cause | Solution |
|---|---|---|
| Configuration invalid | Missing required fields | Check documentation for required parameters |
| Tool not found | Dependency not installed | Install required tools per prerequisites |
| Permission denied | Insufficient access | Verify credentials and permissions |
Part of the Backend Development skill category. Tags: nodejs, python, go, microservices, database
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin j-rigDevelops Flask REST APIs with blueprints, SQLAlchemy ORM, JWT authentication, request validation, and error handling. For building RESTful APIs, microservices, or lightweight web services.
Creates Flask APIs for ML model deployment with step-by-step guidance and production-ready configurations.
Flask web framework conventions: app factory pattern with create_app(), Blueprint registration with url_prefix, MethodView for class-based API views, Marshmallow schema validation, WTForms for HTML forms, Flask-Login for session auth, flask-jwt-extended for stateless API auth, Jinja2 template conventions, error handlers, and extension initialization. Activated automatically by flask-plugin/stack.md. Use this skill to: - Structure Flask applications with the app factory and per-feature Blueprints. - Validate JSON request data with Marshmallow and HTML forms with WTForms. - Implement session-based auth with Flask-Login or token auth with flask-jwt-extended. - Render Jinja2 templates safely or return JSON responses for API mode. - Register global error handlers for consistent error responses. Do NOT use this skill for: - SQLAlchemy ORM model patterns and Flask-Migrate — see flask-plugin:sqlalchemy-patterns. - Python language idioms — see python-foundation:python-conventions. - Testing patterns — see python-foundation:pytest-testing.