install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ai-agents/uv-package-management-assistant" ~/.claude/skills/diegosouzapw-awesome-omni-skill-uv-package-management-assistant && rm -rf "$T"
manifest:
skills/ai-agents/uv-package-management-assistant/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- pip install
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
uv Package Management Assistant
Quick start
- Use
for all Python dependency tasks; do not useuv
,pip
, orpip-tools
.poetry - Add or upgrade with
; remove withuv add <package>
.uv remove <package> - Sync from the lockfile with
(oruv sync
when extras are needed).uv sync --all-extras - Run scripts with the right env using
and manage script-specific deps viauv run <script.py>
.uv add/remove --script - See
for full command guidance and script metadata examples.references/uv_rules.md
Workflow
-
Manage project dependencies
- Add/upgrade:
uv add <package> - Remove:
uv remove <package> - Resync from lock:
(oruv sync
to include optional deps for development).uv sync --all-extras
- Add/upgrade:
-
Run apps and scripts
- Execute with
to ensure dependencies are resolved.uv run <script.py> - Manage script-only deps with
oruv add --script <script.py> <package>
.uv remove --script <script.py> <package>
- Execute with
-
Inline script metadata
- Optionally define script requirements inline (see reference).
- Reinstall script deps from lock with
.uv sync --script <script.py>
-
Do not
- Avoid
,pip install
,pip-tools
, or mypy's install-missing-libraries prompts. Stick topoetry
.uv
- Avoid
Reference
: allowed commands, examples, and script metadata template.references/uv_rules.md