ov-coder/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
requires: 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-coder:typst and
/ov-foundation: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-build: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-coder:fedora-coder — the canonical kitchen-sink dev image.hermes-full or directly including uv./ov-foundation: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-coder:typst — sibling direct-download binary pattern./ov-foundation:python — the pixi-python meta-layer this layer no longer depends on./ov-coder: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-build:layer — authoring reference (covers download: verb + strip_components: modifier)/ov-core: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-build:eval — declarative testing (eval: block, ov eval image, ov eval live)tools
OpenCharly CLI (charly) binary installed into container/VM images for in-container use. Use when working with charly binary deployment inside containers, native D-Bus support, or the full charly toolchain (charly binary + virtualization + gocryptfs + socat).
development
Operator CachyOS workstation profile — a kind:local template + target:local deploy that installs the full dev stack (30 candies) onto a CachyOS host via ShellExecutor. Lives in the overthinkos/cachyos submodule. MUST be invoked before editing or applying the charly-cachyos workstation profile.
tools
Fedora box with the full charly toolchain using shared candies. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Same candy list as charly-arch. Includes NVIDIA GPU runtime. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-fedora box.
tools
Arch Linux box with the full charly toolchain. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Composes /charly-coder:charly-mcp so the box is reachable as an MCP gateway on port 18765. NVIDIA GPU runtime composed in. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-arch box.