# Package Management with `uv` These rules define strict guidelines for managing Python dependencies in this project using the `uv` dependency manager. **✅ Use `uv` exclusively** - All Python depen
# Package Management with `uv` These rules define strict guidelines for managing Python dependencies in this project using the `uv` dependency manager. **✅ Use `uv` exclusively** - All Python dependencies **must be installed, synchronized, and locked** using `uv`. - Never use `pip`, `pip-tools`, or `poetry` directly for dependency management. **🔁 Managing Dependencies** Always use these commands: ```bash # Add or upgrade dependencies uv add <package> # Remove dependencies uv remove <package> # Reinstall all dependencies from lock file uv sync ``` **🔁 Scripts**
Sign in to view the full prompt.
Sign In