ov-layers/skills/uv/SKILL.md
uv + uvx — Astral's fast Python package/project manager. Rewritten 2026-04 to install as a direct-download binary (no pixi env, no Python dep). Pulled via the `download:` verb with `strip_components: 1` to handle the upstream tarball's arch-prefixed top-level directory. Use when working with the uv layer or when deciding whether to install a CLI tool via pixi vs. direct binary download.
npx skillsauth add overthinkos/overthink-plugins uvInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| Property | Value |
|----------|-------|
| Kind | Direct-download binary layer |
| Install files | layer.yml (no pixi.toml, no dependencies) |
| Depends | (none) — uv is a self-contained Rust binary |
| Binaries | /usr/local/bin/uv, /usr/local/bin/uvx |
Pre-2026-04 the layer shipped a pixi.toml with uv = "*" and
depends: python. That installed uv into $HOME/.pixi/envs/default/bin/
as part of a conda-forge Python environment — despite uv being a
completely self-contained Rust binary needing no Python runtime. The
side effects:
$HOME, and
HOME-relative PATH entries in child images got subtly wrong when the
ov auto-intermediate machinery baked uid=1000 paths into images
deployed at uid=0 (fixed in ov/intermediates.go — see
/ov-dev:generate "UID-keyed sibling grouping").which uv says not found" for
anyone who wasn't in a pixi shell.The rewrite installs uv the way /ov-layers:typst and
/ov-layers:pixi itself already did — fetch the upstream binary,
unpack to /usr/local/bin, done. System-wide reachable, always on
PATH, no HOME gymnastics.
tasks:
- download: "https://github.com/astral-sh/uv/releases/latest/download/uv-${BUILD_ARCH}-unknown-linux-gnu.tar.gz"
extract: tar.gz
strip_components: 1
to: /usr/local/bin
user: root
${BUILD_ARCH} expands to x86_64 / aarch64 at build time. Upstream
ships per-arch tarballs under stable latest-download URLs, nested one
level deep (uv-x86_64-unknown-linux-gnu/uv, …/uvx). The
strip_components: 1 modifier (new in 2026-04, see /ov:layer
"Download verb") collapses that wrapper so both binaries land
directly at /usr/local/bin/uv and /usr/local/bin/uvx.
Three build-scope tests ship with the layer:
| Test | Purpose |
|---|---|
| uv-binary | /usr/local/bin/uv exists |
| uv-version | uv --version exits 0 |
| uvx-binary | /usr/local/bin/uvx exists (the per-run tool runner) |
/ov-images:fedora-coder — the canonical kitchen-sink dev image.hermes-full or directly including uv./ov-layers:pixi — direct-download pattern this layer now mirrors. Pixi remains a legitimate multi-binary Python env manager for images that genuinely need one (jupyter, whisper, openwebui); uv is too small to justify the overhead./ov-layers:typst — sibling direct-download binary pattern./ov-layers:python — the pixi-python meta-layer this layer no longer depends on./ov-layers:rust — system Rust toolchain, if you want to build uv from source instead (cargo install uv). Usually not worth it — the Astral binary is pre-optimized./ov:layer — authoring reference (covers download: verb + strip_components: modifier)/ov:shell — run uv inside a containerMUST be invoked when:
uv to an image's layer list.uv --version fails: it's a $PATH or binary-landing-
at-wrong-path issue, not a Python env problem./ov:test — declarative testing (tests: block, ov image test, ov test)development
Claude Code multi-agent support in Overthink — sub-agents, dynamic workflows, and agent teams, and how each drives the existing `ov eval` disposable beds to test and verify. MUST be invoked before authoring or invoking an ov sub-agent / dynamic workflow / agent team, wiring agent-lifecycle hooks, or asking "which primitive should drive the R10 beds?".
tools
Mounts a virtiofs share tagged `workspace` at /workspace inside a VM guest via a systemd .mount unit. Use when a kind:vm entity shares a host directory into the guest and you need it auto-mounted (and re-mounted at every boot).
development
MUST be invoked before any work involving: the `kind: android` schema kind, a `target: android` deploy, the `apk:` layer package format (installing Android apps declaratively), AndroidDeployTarget, an in-pod emulator OR a remote/physical adb-endpoint device, or nested `pod → android` deployment. The first-class Android device + app surface that sits above `ov eval adb`/`appium`.
tools
Use when committing, branching, pushing, merging, tagging, creating PRs, or approving/merging PRs with gh — the feat/-branch, R10-gated, never-force-push landing workflow across the main repo + the plugins submodule + image/<distro> submodules. Covers sync-to-upstream, branch/worktree pruning, the fork+PR path for contributors without write access, and cross-repo @github landing order.