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, or venv directly
  • ALWAYS use uv for all Python package management
  • Script shebang: #!/usr/bin/env -S uv run --quiet --script

Script Templates

Script with Dependencies

Installs
1
Repository
yurifrl/cly
First Seen
Apr 24, 2026
python — yurifrl/cly