con un clic
uv-tools
Guide uvx and uv tool install usage. Use when running Python CLI tools via uv.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Guide uvx and uv tool install usage. Use when running Python CLI tools via uv.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Ask OpenAI Codex CLI for an autonomous second AI opinion. "ask codex", "codex と相談" などで起動。
Request GitHub Copilot review on a Pull Request. "PR レビュー依頼", "copilot review" などで起動。
Extract VTT transcript from a Zoom recording share page. "zoom transcript", "zoom 文字起こし" などで起動。
Download the video (MP4) from a Zoom recording share page. "zoom video download", "zoom 録画 ダウンロード", "zoom 動画 ダウンロード" などで起動。
Round-trip code review through difit. Use when the user mentions "difit", "diff review", "open the diff", "let me look at this", or "review this PR locally". Launch mode arg — "open" (default, no comments at launch), "explain" (AI annotates its own change), "review" (AI posts findings on human code).
Stop tool execution before exhausting your Claude usage — set a 5h/7d usage-% or per-session cost threshold.
| name | uv-tools |
| description | Guide uvx and uv tool install usage. Use when running Python CLI tools via uv. |
uvx runs Python CLI tools in an isolated, cached environment without installing them into the project or globally.
uvx ruff check . # Run without installing
uvx ruff@0.8.0 check . # Pin a version
uvx ruff@latest check . # Force latest
uvx --from='httpie' http GET example.com # Package name ≠ command name
uvx --with='mkdocs-material' mkdocs serve # Additional plugin
For frequently used tools:
uv tool install ruff # Install permanently
uv tool list # List installed tools
uv tool upgrade ruff # Upgrade a tool
uv tool upgrade --all # Upgrade all tools
uv tool uninstall ruff # Remove a tool
If more detail is needed, consult: https://docs.astral.sh/uv/guides/tools/