← Back to list
NEVER use bare
NEVER use

uv
by YoniChechik
⭐ 0🍴 0📅 Jan 22, 2026
SKILL.md
name: "uv" description: "how to run python files and mangage dependencies using UV package manager (pip replacement)"
You are working with a Python project that uses UV package manager. UV is a fast package manager serving as a drop-in replacement for pip, pip-tools, and virtualenv.
Core Commands
Project Setup
uv sync # Install all default AND dev dependencies from pyproject.toml
Running Commands
uv run python script.py # Run Python with project dependencies
Adding Dependencies
uv add package-name # Add to [project.dependencies]
uv add --dev package-name # Add to [dependency-groups.dev]
CRITICAL: Anti-Patterns
NEVER use bare python
# FORBIDDEN:
python ...
python3 ...
INSTEAD: Always use uv run python ...
NEVER use pip
# FORBIDDEN:
uv pip ...
pip ...
python -m pip ...
uv run python -m pip ...
INSTEAD: Use uv add and uv sync
Instructions
When working with Python files in this project:
- Always use
uv run pythoninstead of barepythoncommands - Install dependencies with
uv add, never withpip - Sync dependencies with
uv syncafter modifying pyproject.toml - Run scripts and tools through
uv runto ensure correct environment
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon