by wshobson
python-project-structure helps you plan Python package layout, module boundaries, tests, and public APIs with __all__. Use it for new projects or refactors that need clearer structure and maintainable imports.
by wshobson
python-project-structure helps you plan Python package layout, module boundaries, tests, and public APIs with __all__. Use it for new projects or refactors that need clearer structure and maintainable imports.
by wshobson
python-design-patterns is a Python refactoring and design-review skill focused on KISS, SRP, separation of concerns, composition over inheritance, and the Rule of Three for cleaner, more testable code.
by wshobson
python-code-style helps with Python formatting, linting, naming, type hints, and docstrings. Use it to review pull requests, standardize team conventions, and set up ruff, mypy, or pyright guidance in pyproject.toml.
by wshobson
python-anti-patterns is a Python code review checklist for spotting fragile patterns like scattered retries, timeout duplication, and hidden complexity before merge, during refactoring, or while debugging.