By jmazzahacks
Collection of Claude Code skills by @jmazzahacks that codify best practices and reusable patterns for software development
Set up Docker deployment for Python MCP servers (FastMCP or low-level mcp.server.Server SDK) with streamable-http transport (preferred) or legacy SSE, automated versioning, and container registry publishing. Use when dockerizing an MCP server, containerizing for remote access, deploying an MCP server behind nginx, or setting up a production MCP server with Docker. Covers Dockerfile, build scripts, docker-compose, and nginx reverse proxy.
Scaffold a multi-repo Python workspace with models library, core library, Flask backend, and optional sub-projects. Creates directory structure and root CLAUDE.md describing each sub-project and which skills to use next. Use when starting a new Python project, setting up a multi-repo workspace, or scaffolding a project skeleton.
Harden a Python project's dependency supply chain by switching Docker builds from pip to uv, pinning every dependency to the currently-installed version with hashes, and adding a release-age gate so freshly-uploaded (possibly compromised) packages can't be pulled in. Use when locking down dependencies, defending against supply-chain attacks, or migrating a Dockerized Python build from pip to uv.
Use this skill when the user asks to "add a new MCP server behind nginx", "wire an MCP into the mcp.<domain> vhost", "expose an MCP container with gatekeeper auth", or otherwise needs to put a Streamable-HTTP MCP server (FastMCP or low-level SDK) behind nginx with ByteForge Gatekeeper auth (`auth_request /auth`). Emits a shared `conf.d/snippets/mcp-location.conf` (proxy/auth/streaming headers all in one place) and either a single new `location /mcp-<name>` block (brownfield) or the full umbrella vhost from scratch (greenfield). Includes the `.well-known` OAuth-discovery bypass that forces MCP clients like Claude Code to fall back to bearer-token auth, the `/mcp-<name>` → `/mcp` rewrite trio that makes path-prefix routing survive Streamable-HTTP's absolute upstream endpoint, and the buffering/timeout settings that keep streaming connections alive.
Set up PostgreSQL database with standardized schema.sql pattern. Use when starting a new project that needs PostgreSQL, setting up database schema, or creating setup scripts for postgres.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A collection of Claude Code skills by @jmazzahacks that codify best practices and reusable patterns for software development.
A skill that provides a standardized pattern for setting up PostgreSQL databases with proper separation of schema and setup logic.
What it creates:
database/schema.sql - SQL schema definitionsdev_scripts/setup_database.py - Python setup script with load_dotenv supportFeatures:
gen_random_uuid()Design Principles:
BIGINT for all date/time storageCREATE TABLE IF NOT EXISTS, safe to re-runView full postgres-setup documentation →
A skill that provides a modern, standardized pattern for setting up Python libraries for PyPI publishing or private GitHub distribution.
What it creates:
pyproject.toml - Modern Python project configuration with hatchlingsrc/{package_name}/ - Source layout with explicit package discovery.gitignore - Comprehensive Python artifact exclusionsdev-requirements.txt - Development dependencies (includes build/twine for PyPI only)build-publish.sh - Automated build and publish script (PyPI only)README.md - Basic project documentationFeatures:
Design Principles:
View full python-lib-setup documentation →
A skill that provides a production-ready pattern for building Flask REST APIs with automatic OpenAPI/Swagger documentation.
What it creates:
example.env with all required environment variablesrequirements.txt with all dependencies (unpinned)Features:
Design Principles:
create_app() pattern for flexibilityView full flask-smorest-api documentation →
A skill that provides a production-ready Docker deployment pattern for Flask applications with automated versioning and container registry publishing.
npx claudepluginhub jmazzahacks/byteforge-claude-skills --plugin byteforge-skillsComplete fullstack development toolkit: React, Express/FastAPI, PostgreSQL scaffolding with AI agents
Comprehensive backend development toolkit combining API design, database architecture, security, and scalability. Includes backend lead agent for holistic backend decisions.
Python, FastAPI, SQLAlchemy, PostgreSQL, and pytest code review. Pairs with beagle-core for full workflow.
Python development tools. Includes 2 specialized agents and 8 skills.
Python development capabilities
REST and GraphQL API scaffolding, framework selection, backend architecture, and API generation