python
Installation
SKILL.md
Python Development Best Practices
Overview
Python scripts in this repository use uv for dependency management and follow a standalone script pattern with inline PEP 723 dependency declarations when external packages are needed.
Always Use uv
- NEVER use
pip,pipenv,poetry, orvenvdirectly - ALWAYS use
uvfor all Python package management - Script shebang:
#!/usr/bin/env -S uv run --quiet --script