What problem does it solve? Installing Python packages with the wrong environment manager (e.g., pip install inside a pixi-managed project) silently diverges the live environment from the manifest, causing unreproducible setups and broken LSP resolution. This Skill detects which manager a project uses and routes every install through the correct commands. ## Core Features & Use Cases - Manager detection: Identifies pixi, uv, poetry, hatch, conda/mamba, or pip+venv from project-root signals like pixi.toml, uv.lock, or poetry.lock. - Per-manager install commands: Provides the exact add/remove/upgrade/sync commands per manager, plus a fixed 3-bucket dependency layout (default / dev / agent) with automatic routing. - Agent feature install: Bundled scripts install ipython + pyright and generate a pyrightconfig.json pointing at the composed lsp environment. - Use Case: When a data-science workflow hits a missing dependency, this Skill detects the manager (e.g., uv), issues uv add --group dev pytest, and verifies the layout with verify_layout.sh. ## Quick Start Ask the agent to install a Python package in this project and it will detect the environment manager and use the correct install command.