com um clique
uv-package-manager
Fast Python package manager - uv commands for project management
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Fast Python package manager - uv commands for project management
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Complete GitHub Actions workflow for automated releases with CHANGELOG-based versioning
Robust two-phase process termination pattern for PyQt6 apps with UI feedback and guaranteed cleanup
Build Python/PyQt6 apps into standalone executables using Nuitka
Non-blocking subprocess execution with real-time output streaming
Complete ClawdBot CLI command reference for all operations
ClawdBot control panel UI requirements and architecture
| name | uv-package-manager |
| description | Fast Python package manager - uv commands for project management |
UV is an extremely fast Python package manager written in Rust.
# Initialize new project
uv init
# Initialize with specific Python version
uv init --python 3.14
# Add a package
uv add package-name
# Add multiple packages
uv add pyqt6 websockets asyncio
# Add dev dependency
uv add --dev pytest black
# Remove package
uv remove package-name
# Sync dependencies (install from pyproject.toml)
uv sync
# Run Python file
uv run main.py
# Run with arguments
uv run main.py --arg value
# Run module
uv run -m pytest
# Create venv (auto-created on uv sync)
uv venv
# Activate (Windows)
.venv\Scripts\activate
# Activate (macOS/Linux)
source .venv/bin/activate
# Generate/update lock file
uv lock
# Install from lock
uv sync --frozen
project/
├── pyproject.toml # Project config + dependencies
├── uv.lock # Lock file (auto-generated)
├── .venv/ # Virtual environment
└── src/ # Source code
[project]
name = "clawdbot-ui"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"pyqt6>=6.6.0",
"websockets>=12.0",
"asyncio>=3.4.3",
]
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"black>=24.0.0",
]