python-project-creator
Installation
SKILL.md
Python Project Creator
Critical Corrections
Use 'uv' instead of 'pip'
- ✗ Don't: pip install, pip freeze
- ✓ Do: uv pip install, uv pip freeze (uv is faster and more modern)
Always use pytest, never unittest
- ✗ Don't: unittest framework
- ✓ Do: pytest for all testing needs
Overview
This skill creates well-structured Python projects with best practices for dependency management, testing, and code organization. It sets up virtual environments, installs dependencies, and configures common development tools.
Related skills