python-uv
Modern Python development with uv, the fast Python package and project manager. Covers project management (uv init, uv add, uv sync, uv lock), virtual environments, Python version management (uv python install/pin), script runners (uv run), tool management (uvx), workspace support for monorepos, and publishing to PyPI. Includes Python patterns for FastAPI, Pydantic, async/await, type checking, pytest, structlog, and CLI tools. Use when initializing Python projects, managing dependencies with uv, configuring pyproject.toml, setting up virtual environments, running scripts, managing Python versions, building monorepos with workspaces, containerizing Python apps, or writing modern Python with type hints.
What this skill does
# Python uv ## Overview uv is an extremely fast Python package and project manager written in Rust, designed to replace pip, pip-tools, pipx, poetry, pyenv, and virtualenv. It provides unified project management, dependency resolution, Python version management, and tool execution with 10-100x speed improvements over traditional tools. **Key capabilities:** Project initialization, dependency locking and syncing, Python version management, PEP 723 inline script dependencies, ephemeral tool execution via `uvx`, monorepo workspaces with shared lockfiles, and package building/publishing. **When to use:** Python project initialization, dependency management, virtual environments, Python version pinning, running scripts with inline dependencies, monorepo workspaces, tool execution, publishing packages. **When NOT to use:** Non-Python projects, conda-managed scientific computing environments with system-level binary dependencies, projects locked to legacy `setup.py`-only workflows. ## Quick Reference | Pattern | Command / API | Key Points | | -------------------- | ------------------------------------- | ---------------------------------------------- | | Init project | `uv init` | Creates `pyproject.toml` and `.python-version` | | Init library | `uv init --lib` | Creates `src/` layout with `py.typed` | | Init script | `uv init --script example.py` | PEP 723 inline metadata script | | Add dependency | `uv add requests` | Adds to `pyproject.toml`, updates lockfile | | Add dev dependency | `uv add --dev pytest` | Adds to `[dependency-groups]` dev group | | Add group dependency | `uv add --group docs mkdocs` | Custom dependency groups | | Add optional | `uv add --optional postgres psycopg` | Optional extras for libraries | | Remove dependency | `uv remove requests` | Removes from `pyproject.toml` and lockfile | | Lock dependencies | `uv lock` | Creates/updates `uv.lock` | | Upgrade in lockfile | `uv lock --upgrade-package requests` | Targeted dependency upgrade | | Sync environment | `uv sync` | Installs locked dependencies into `.venv` | | Sync for CI | `uv sync --locked` | Fails if lockfile is stale | | Sync frozen | `uv sync --frozen` | Skips lockfile verification | | Run command | `uv run python app.py` | Runs in project virtual environment | | Run script | `uv run script.py` | Supports PEP 723 inline dependencies | | Run in package | `uv run --package api pytest` | Workspace-specific execution | | Install Python | `uv python install 3.13` | Downloads and manages Python versions | | Pin Python | `uv python pin 3.12` | Writes `.python-version` file | | List Pythons | `uv python list` | Shows available and installed versions | | Run tool | `uvx ruff check .` | Ephemeral tool execution | | Tool with plugins | `uvx --with mkdocs-material mkdocs` | Ephemeral tool with extra packages | | Install tool | `uv tool install ruff` | Persistent global tool install | | Workspace | `[tool.uv.workspace]` | Monorepo multi-package support | | Build package | `uv build` | Creates sdist and wheel in `dist/` | | Publish | `uv publish` | Uploads to PyPI with trusted publishing | | Export deps | `uv export --format requirements-txt` | Generate requirements.txt from lockfile | ## Common Mistakes | Mistake | Correct Pattern | | ------------------------------------------- | ------------------------------------------------------------------------ | | Using `pip install` inside uv project | `uv add` to manage via `pyproject.toml` | | Activating venv manually before `uv run` | `uv run` handles venv activation automatically | | Committing `.venv/` to version control | Add `.venv/` to `.gitignore`, commit `uv.lock` | | Not committing `uv.lock` | Always commit `uv.lock` for reproducible builds | | Using `uv sync` without `--locked` in CI | `uv sync --locked` ensures lockfile matches `pyproject.toml` | | Running `uv lock --upgrade` routinely | Only upgrade intentionally, use `--upgrade-package` for targeted updates | | Mixing `pip` and `uv` dependency management | Choose one tool for the project consistently | | Using `uv pip install` for project deps | Use `uv add`/`uv sync` for managed projects | | Forgetting `--frozen` for Docker builds | `uv sync --frozen` skips lockfile verification for faster builds | | Creating venv manually in uv project | `uv sync` creates and manages `.venv` automatically | | Using `setup.py` for new projects | Use `pyproject.toml` with a modern build backend | | Not using `py.typed` in libraries | `uv init --lib` includes it, required for typed packages | ## Delegation - **Project scaffolding**: Use `Explore` agent - **Dependency audit**: Use `Task` agent - **Code review**: Delegate to `code-reviewer` agent > If the `docker` skill is available, delegate containerization patterns to it. > If the `github-actions` skill is available, delegate CI/CD pipeline configuration to it. > If the `api-testing` skill is available, delegate API testing patterns to it. > If the `sentry-setup-logging` skill is available, delegate error monitoring setup to it. > If the `pino-logging` skill is available, delegate Node.js logging patterns to it (Python equivalent covered here with structlog). ## References - [Project management and pyproject.toml configuration](references/project-management.md) - [Dependency management, lockfiles, and groups](references/dependency-management.md) - [Python version management and virtual environments](references/python-environments.md) - [Scripts, inline dependencies, and tool management](references/scripts-and-tools.md) - [Workspace support for monorepos](references/workspaces.md) - [FastAPI web framework patterns](references/fastapi-patterns.md) - [Pydantic validation and data modeling](references/pydantic-validation.md) - [Async patterns with asyncio](references/async-patterns.md) - [Type checking with mypy and pyright](references/type-checking.md) - [Testing with pytest](references/testing-patterns.md) - [Logging with structlog](references/structlog-logging.md) - [CLI applications with typer](references/cli-applications.md) - [Docker integration and publishing](references/docker-and-publishing.md)
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.