基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jr2804/mcp-config-converter --skill python-uv-cli命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | python-uv-cli |
| description | UV command-line usage patterns for Python project management |
| license | MIT |
| compatibility | opencode |
| metadata | {"related_uv_mcp":"For uv MCP automation tools, use skill `uv-mcp`","related_python_guidelines":"For general Python development standards, use skill `python-guidelines`"} |
Provide UV command-line patterns for Python project management. Use UV instead of virtualenv, venv, or pip directly.
# Create and sync virtual environment
uv sync --all-extras -U # Sync with all optional deps, update all
uv sync # Sync dependencies
# Run Python scripts
uv run python script.py # Run script in isolated environment
uv run python -c"code" # Run inline Python code
uv run pytest -v # Run tests
uv run --help # Show uv run options
# Add dependencies
uv add package-name # Production dependency
uv add package-name --dev # Development dependency (pytest, ruff, etc.)
# Remove dependencies
uv remove package-name # Remove production dependency
uv remove package-name --dev # Remove development dependency
# Build and distribute
uv build # Create wheel and sdist
Use this skill when:
--dev for dev dependencies - pytest, ruff, ty, etc.uv run - Never invoke python directly from .venvuv sync --all-extras -U - Full dependency update