uv Supply-Chain Hardening
This skill converts a Python project from a loose pip install -r requirements.txt
build into a locked, hash-verified, release-age-gated build using
uv. It is the response to the wave of
supply-chain attacks targeting Python (and especially crypto) projects, where a
maintainer account is compromised and a malicious version is published to PyPI.
The defense has three layers:
- Pin every dependency to an exact version — no floating ranges, so a build can't silently pull a newer (compromised) release.
- Verify hashes — every PyPI distribution is checked against a SHA256 in the lockfile, so a tampered-with artifact on the registry is rejected.
- Release-age gate — refuse any distribution published in the last N days, so a freshly-uploaded malicious version isn't pulled in before the community has a chance to catch and yank it.
When to Use This Skill
- You have a Python project (with
requirements.txtand/orpyproject.toml) whose Docker build runspip installagainst unpinned or loosely-pinned dependencies. - You want reproducible, tamper-evident builds.
- You're worried about a dependency (or one of its transitive deps) being hijacked.
- You have private Git dependencies and need them to coexist with hash-locking.
What This Skill Changes
requirements.in(NEW) — human-edited source-of-truth list of direct deps.requirements.txt(REWRITTEN) — machine-generated, fully-pinned, hashed lock.pyproject.toml— adds[tool.uv] exclude-newerand pins the build backend (or a rootuv.tomlif the repo has nopyproject.toml).Dockerfile— installs via a digest-pinneduvinstead ofpip; private-dep token stays a build-timeARG/secret (never baked into the image).requirements-private.txt(NEW, optional) — first-party libs installed at HEAD when the user wants their own libraries to always track latest (Step 5b).dev-requirements.in/dev-requirements.txt(NEW, optional) — same pinned+hashed+age-gated treatment for dev tooling likepytest/black/mypy(Step 5c).
Nothing about the application code changes — this is purely the dependency pipeline.
Step 0: Establish the Baseline
IMPORTANT — pin to what is installed, not to "latest". The whole point is
reproducing the environment you've actually been running and testing against. If
you just run uv pip compile with no constraints, it resolves to the newest
versions allowed, which can jump you across several releases you never tested
(and, worse, is exactly the surface a supply-chain attack rides in on).
First, confirm uv is available and capture the currently-installed versions:
# Inside the project's activated virtualenv
uv --version || pip install uv # or: brew install uv / pipx install uv
pip freeze > /tmp/installed-constraints.txt
/tmp/installed-constraints.txt is the constraint set that anchors the compile to
exactly what you have installed today.
Ask the user:
-
"How many days should the release-age gate be?"
- Default: 7 days. Long enough that most malicious releases get caught and yanked; short enough you still get timely security patches.
-
"Do you have private Git dependencies?" (yes/no)
- If yes, note the token env var name (commonly
CR_PATfor a GitHub PAT).
- If yes, note the token env var name (commonly
-
"Before we freeze, are there any of your own libraries you want to update first?"
- Pinning captures a moment in time. If the user maintains internal libs with
pending fixes, pull those in and re-
pip installbefore freezing, so the lock captures the intended versions.
- Pinning captures a moment in time. If the user maintains internal libs with
pending fixes, pull those in and re-
-
"Should your own private libraries be pinned, or always track latest?"
- A common, legitimate stance: pin the third-party attack surface, but let
your first-party libs (the ones requiring a token) float to the latest
commit on every build — you review your own code and want fixes without a
manual SHA bump. If they choose this, those libs do not get pinned in the
lock; they go in a separate
requirements-private.txtinstalled at HEAD. See Step 5b — it changes Steps 1, 2, and 4.
- A common, legitimate stance: pin the third-party attack surface, but let
your first-party libs (the ones requiring a token) float to the latest
commit on every build — you review your own code and want fixes without a
manual SHA bump. If they choose this, those libs do not get pinned in the
lock; they go in a separate
-
"What Python version does the container run?"
- You must compile the lock for the container's Python (
--python-version), not your laptop's. A local 3.14 venv resolving for a 3.13 image picks different wheels/markers. Read it off theFROM python:X.Yline.
- You must compile the lock for the container's Python (
Step 1: Create requirements.in (source of truth)
requirements.in lists only your direct dependencies — the things you actually
import — with no version pins (the lock supplies those). This is the file a human
edits; requirements.txt is never hand-edited again.
# requirements.in — direct dependencies only. Edit this, then recompile
# requirements.txt with:
# uv pip compile requirements.in --generate-hashes -o requirements.txt
#
# Pins and hashes for the full transitive tree live in requirements.txt.
example-http-client
example-db-driver
some-public-lib
# Private Git dependency — pinned to an immutable commit SHA, not a branch.
# The commit SHA is the integrity anchor (a branch can be force-pushed; a SHA
# can't). ${TOKEN_ENV} is expanded from the build environment at install time;
# never commit a literal token here.
internal-lib @ git+https://${CR_PAT}@github.com/your-org/internal-lib.git@<commit-sha>
CRITICAL replacements:
- Direct dependency names → the user's actual top-level imports (mine these from the
existing
pyproject.tomldependenciesand/or the un-hashedrequirements.txt). internal-lib @ git+...@<commit-sha>→ each private dep, pinned by full commit SHA. If it's currently pinned to a branch or unpinned, resolve the current commit (git ls-remote https://github.com/your-org/internal-lib.git <branch>) and pin it.${CR_PAT}→ the user's token env var name.
Why a commit SHA for Git deps: Git distributions cannot carry a PyPI-style hash in the lock (see Step 5). The commit SHA is the hash — it's the only thing anchoring the integrity of a Git dependency, so it is non-negotiable for these.
⚠️ Token-baking via a library's OWN
pyproject.toml(the subtle leak — check this every time). Distinct from the DockerfileENVleak in Step 4/6. If one of your private libraries declares its own dependencies asgit+https://{env:CR_PAT}@github.com/...(the hatch{env:...}context form), hatchling expands the token at build time into the wheel'sRequires-Distmetadata — so a live PAT gets frozen into every image built from that lib, even with a flawless Dockerfile.${VAR}in a requirements file is fine (that file is never packaged);{env:VAR}inside a package's[project.dependencies]is not. Fix the library: declare its deps with token-free URLs (git+https://github.com/...) and let gitinsteadOfsupply auth at install — this stays compatible with unpinned/always-latest deps. Then rotate the PAT, since older built images still carry it. Scan for it in Step 6.
Step 2: Compile the Locked, Hashed requirements.txt
Compile from requirements.in, constrained to the installed versions, with hashes:
# A raw `pip freeze` includes VCS/editable lines (`pkg @ git+...`, `-e ...`,
# `pkg @ file://...`) that uv rejects as constraints — keep only `name==version`:
grep -E '^[A-Za-z0-9._-]+==[0-9]' /tmp/installed-constraints.txt > /tmp/constraints.txt
uv pip compile requirements.in \
--generate-hashes \
--python-version 3.13 \
-c /tmp/constraints.txt \
-o requirements.txt
--generate-hashes→ writes a SHA256 (often several, one per wheel/sdist) for every PyPI distribution. This is what makes registry tampering detectable.--python-version <X.Y>→ resolve for the Python the container runs, not your laptop's. Compiling under a different interpreter (local 3.14, image 3.13) can select different wheels/markers. Match theFROM python:X.Yin the Dockerfile.-c /tmp/constraints.txt→ pins to the versions you already have installed rather than resolving to latest. This is the step people forget; without it the lock can leap forward across untested releases.- The output is the full transitive tree, every package pinned to
==with hashes.
Verify the pin matched the baseline. Diff the new pins against what you had:
# Sanity check: the compiled versions should match installed ones (modulo
# package-name normalization like Flask -> flask, PyYAML -> pyyaml).
diff <(grep -oE '^[a-zA-Z0-9_.-]+==[0-9][^ ]*' requirements.txt | sort) \
<(sort /tmp/installed-constraints.txt)
You will see two classes of legitimate right-side-only lines:
- Name-case/separator normalization (
Flask→flask,PyYAML→pyyaml). - Dev-only tooling in the same venv — under the standard project layout,
pytest/black/mypy/ruff/ etc. installed fromdev-requirements.txtwill appear on the right side because they aren't in the runtime lock. Expected; ignore. If dev tooling should also be hardened, see Step 5c.
What matters is a runtime package whose version actually moved — that's what this process exists to make visible, and it should never happen on the initial constrained compile.
Reproducible header — one extra compile pass. The initial compile records
-c /tmp/constraints.txtinrequirements.txt's autogenerated header (and in every# via -c ...annotation), so a reader can't rerun the recorded command from the repo — the file it points at doesn't exist. Fix it in one pass by re-compiling with no-cat all; uv reads pins from the existing-o requirements.txt(see the "preserves pins" property below), so resolution is a no-op version-wise:uv pip compile requirements.in \ --generate-hashes --python-version 3.13 \ -o requirements.txtThe header and annotations now reference only
requirements.inandrequirements.txt— a fresh clone can rerun the recorded command as-is. Do this only on the initial compile (a routine recompile is already this shape).
uv preserves existing pins on recompile — in the single-lock flow. Once
requirements.txtexists and is the-otarget, a lateruv pip compilereads pins from it and keeps them unless you pass--upgrade(or--upgrade-package NAME). Routine recompiles (e.g. after adding one new dep torequirements.in) won't silently bump everything else. Document this in the file header so the next editor knows the lock is sticky.This does NOT hold in the Step 5b split flow — that variant compiles to a throwaway intermediate (
requirements.full.txt) that getsrm'd, so the next recompile has nothing to preserve against. Step 5b handles that with an explicit-c requirements.txton subsequent runs; see there.
Step 3: Add the Release-Age Gate + Pin the Build Backend (pyproject.toml)
Two additions to pyproject.toml.
(a) The release-age gate under [tool.uv]:
[tool.uv]
# Supply-chain defense: refuse any distribution published in the last 7 days when
# resolving/locking, so a freshly-uploaded (possibly compromised) version can't be
# pulled in before the community catches and yanks it. Applies to BOTH
# `uv pip compile` and `uv pip install`. This is a rolling window evaluated at
# run time — not a fixed date — so it keeps protecting future installs.
exclude-newer = "7 days"
exclude-neweraccepts a friendly duration ("7 days") or an ISO-8601 timestamp. Prefer the duration: it's a rolling gate that keeps working on every future build, whereas a fixed timestamp goes stale.- Replace
7 dayswith the answer from Step 0.
No
pyproject.toml? (a Flask/service repo, not a package.) Put the setting in auv.tomlat the repo root instead — uv reads it for both compile and install. Inuv.tomlthe keys are top-level (no[tool.uv]table):# uv.toml exclude-newer = "7 days"And skip part (b) below — a repo that never builds a wheel has no build backend to pin.
(b) Pin the build backend under [build-system] — otherwise the backend itself
(e.g. hatchling/setuptools) is an unpinned dependency resolved at wheel-build time,
and is just as hijackable as any other:
[build-system]
# Pinned (not floating) so the build backend can't be swapped for a newer,
# potentially compromised release at build time. exclude-newer keeps it >=7 days
# old; bump deliberately when upgrading.
requires = ["hatchling==1.29.0"]
build-backend = "hatchling.build"
CRITICAL: use the backend the project already uses, pinned to its installed
version (pip show hatchling / pip show setuptools). Don't switch backends.
Step 4: Convert the Dockerfile from pip to uv
Replace the pip install flow with a uv install. Three things matter here, each
of which closes a real hole.
FROM python:3.13-alpine
# 1) Bring in the uv binary, PINNED BY IMMUTABLE DIGEST — not just the version tag.
# A version tag can be re-pushed to point at a different (malicious) binary; the
# @sha256 digest cannot. This binary installs everything else, so it must be the
# most trusted thing in the build. To upgrade uv, bump BOTH the tag and the digest.
COPY --from=ghcr.io/astral-sh/uv:0.9.28@sha256:<digest> /uv /uvx /bin/
# 2) Private-dep token as a BUILD ARG ONLY. It is available to the RUN steps below
# for cloning private Git deps, but is deliberately NOT promoted to ENV — promoting
# it bakes a live credential into the final image's environment (visible via
# `docker inspect`). ARG alone is enough for ${CR_PAT} expansion in RUN steps.
ARG CR_PAT
RUN apk add --no-cache git gcc musl-dev postgresql-dev # build deps as needed
WORKDIR /app
COPY requirements.txt pyproject.toml README.md ./
COPY src/ ./src/ # your package sources
# 3) Install the locked, hash-verified dependencies. uv verifies every hash present
# in requirements.txt; ${CR_PAT} is expanded from the build ARG for private Git deps.
RUN uv pip install --system -r /app/requirements.txt
# Install the application package itself for its entry points. --no-deps because
# every dependency is already pinned and installed from the lock above.
RUN uv pip install --system --no-deps .
# ... non-root user, ENV, EXPOSE, ENTRYPOINT as before ...
CRITICAL points:
--systeminstalls into the image's Python (there's no venv inside the container), matching howpip installbehaved before.- Get the current uv digest so you can fill in
<digest>:
Pin the version tag to whatever uv version you standardized on, then pin its digest.docker pull ghcr.io/astral-sh/uv:0.9.28 docker inspect --format='{{index .RepoDigests 0}}' ghcr.io/astral-sh/uv:0.9.28 - Remove any
ENV CR_PAT=${CR_PAT}line if one existed. This is the single most important fix: theENVform leaks the token into the published image. See the verification step below. - If the project has no private deps, drop the
ARG CR_PATline andgitfrom the apk install. - Prefer a BuildKit secret over
ARGwhen the build supports it.ARG CR_PATpassed via--build-argis recorded indocker historyand can surface in build logs; a secret mount never touches a layer at all:
Build withRUN --mount=type=secret,id=cr_pat \ export CR_PAT=$(cat /run/secrets/cr_pat) \ && git config --global url."https://${CR_PAT}@github.com/".insteadOf "https://github.com/" \ && uv pip install --system -r requirements.txt \ && git config --global --unset url."https://${CR_PAT}@github.com/".insteadOfdocker build --secret id=cr_pat,env=CR_PAT .... TheinsteadOfrewrite means your requirements/lock can use token-freehttps://github.com/URLs — no credential in any committed file. If an existingbuild-publish.shalready passes--secret, keep that interface (don't regress it toARG).
Step 5: The --require-hashes / Git-dependency Tradeoff
You may consider adding --require-hashes to the install for maximum strictness. Be
aware of the catch and decide consciously:
- PyPI deps all carry hashes in the lock, so they're verified regardless.
- Git dependencies cannot be hashed — there's no immutable artifact hash for a
git+https://...source, only the commit SHA (which you already pinned in Step 1). --require-hashesis all-or-nothing: it rejects the entire requirements file if any single line lacks a hash. So you can't use it unless you split the install into two steps — hashed PyPI deps in one file, unhashable Git deps in another.
Recommendation: unless the user wants the split, omit --require-hashes. uv
still verifies every hash that is present (all the PyPI deps), so registry tampering
is already caught; --require-hashes would only additionally block a future
unhashed line from sneaking in. Note this as an accepted tradeoff rather than
silently skipping it.
If the user does want it, split:
RUN uv pip install --system --require-hashes -r /app/requirements-pypi.txt
RUN uv pip install --system -r /app/requirements-git.txt
Step 5b: First-Party Libraries That Should Track Latest (the --override split)
Use this only if the user chose "always track latest" for their own libs in Step 0. The default model pins everything; this variant pins the third-party attack surface but lets first-party libs float to the latest commit on every build.
Why a plain compile won't do it — two uv behaviors collide:
- uv resolves the entire graph; pip deduped by name. pip tolerated your
private libs declaring each other with
{env:CR_PAT}/unpinned URLs because the top-level requirement already "satisfied" them. uv actually fetches each transitive git URL from a library's metadata — and if it uses{env:CR_PAT}(uv can't expand it) or floats toHEAD(conflicting with a top-level pin), the compile fails with an auth or URL-conflict error. - uv pins a git dep to its resolved HEAD commit in the output even when the input had no SHA — so a single lock would freeze your first-party libs to compile-time HEAD, defeating "always latest."
The split that solves both:
requirements-private.txt — first-party libs, token-free and unpinned. Used
twice: as the --override for the compile and as the install list in Docker.
internal-core @ git+https://github.com/your-org/internal-core.git
internal-models @ git+https://github.com/your-org/internal-models.git
requirements.in — third-party direct deps plus the private libs (token-free),
so the compile discovers and locks their third-party sub-tree. The private lines are
stripped from the output afterward.
Compile (token injected only into git's process config, never a committed file). There are two compile modes in this flow — pick the one that matches what you're doing:
Initial compile (first run, no requirements.txt yet):
export GIT_CONFIG_COUNT=1 \
GIT_CONFIG_KEY_0="url.https://${CR_PAT}@github.com/.insteadOf" \
GIT_CONFIG_VALUE_0="https://github.com/"
uv pip compile requirements.in \
--override requirements-private.txt \
--generate-hashes --no-annotate --python-version 3.13 \
-c /tmp/constraints.txt \
-o requirements.full.txt
# Strip the first-party git lines → requirements.txt holds only the locked, hashed
# third-party tree (their PyPI sub-deps stay; the private libs themselves do not).
grep -vE '^(internal-core|internal-models) @ git\+' requirements.full.txt > requirements.txt
rm requirements.full.txt
Routine recompile (later — adding one dep to requirements.in, or a periodic
refresh, when you DON'T want a mass upgrade):
uv pip compile requirements.in \
--override requirements-private.txt \
--generate-hashes --no-annotate --python-version 3.13 \
-c requirements.txt \
-o requirements.full.txt
grep -vE '^(internal-core|internal-models) @ git\+' requirements.full.txt > requirements.txt
rm requirements.full.txt
Deliberate upgrade (bump one specific package):
uv pip compile requirements.in \
--override requirements-private.txt --upgrade-package NAME \
--generate-hashes --no-annotate --python-version 3.13 \
-c requirements.txt \
-o requirements.full.txt
grep -vE '^(internal-core|internal-models) @ git\+' requirements.full.txt > requirements.txt
rm requirements.full.txt
--upgrade-package NAME overrides the -c requirements.txt pin for the named
package only; everything else stays at its current pin. Do NOT drop
-c requirements.txt here thinking --upgrade-package implies it — omitting
the constraint re-resolves the entire tree, undoing every other pin at the same
time (see gotcha 16).
Deliberate full-tree upgrade (bump everything to newest within the gate):
uv pip compile requirements.in \
--override requirements-private.txt --upgrade \
--generate-hashes --no-annotate --python-version 3.13 \
-o requirements.full.txt
grep -vE '^(internal-core|internal-models) @ git\+' requirements.full.txt > requirements.txt
rm requirements.full.txt
The only mode where -c requirements.txt is intentionally omitted — you want
the mass re-resolve. Review the resulting diff carefully; this is the mode that
loses the "reproduces what you tested" guarantee.
--override requirements-private.txtforces uv to resolve those packages from your token-free URLs instead of the{env:CR_PAT}@HEADones in their metadata.-c requirements.txton the recompile is not optional in this flow. The Step 2 "uv preserves pins on recompile" property does NOT apply here — uv reads pins from the-ooutput file, and Step 5b's output is a throwaway (requirements.full.txtthat getsrm'd). Without-c requirements.txt, adding a single dep torequirements.insilently re-resolves the ENTIRE tree to newest-within-the-exclude-newer-gate. That is the exact exposure this skill exists to prevent, and the 7-day gate is your only remaining line of defense when it happens. Do not omit.--no-annotateis not cosmetic here either. The grep-strip above removes the private-lib lines but is not annotation-aware; with annotations enabled, those libs' multi-line# via ...blocks get orphaned and visually attach to the next alphabetical package (real observed case: three stackedviablocks including--override requirements-private.txtprovenance ended up undermarshmallow, which a reader would reasonably conclude is a direct private dependency).--no-annotatedrops all# viablocks — you lose the provenance trail, which is the accepted trade for a lock that isn't a maintenance trap. If you want provenance back, replace thegrep -vEwith a range-aware awk that drops each matched line's trailing indented# viablock too.- Note any transitive public git deps that remain in the lock (e.g. a logging
lib pulled from GitHub) — they're unhashable, which is why
--require-hashesneeds the Step 5 split. Leave them inrequirements.txtso the--no-depsinstall below can satisfy them.
The drift rule — first-party lib dep changes must trigger a backend recompile. The Dockerfile below installs first-party libs
--no-depsat HEAD. Their third-party sub-tree was frozen intorequirements.txtat compile time. So if a first-party lib adds a new PyPI dep (or bumps one meaningfully) and you merge that lib change WITHOUT rerunning the "routine recompile" above in the backend repo, the next backend deploy will pull the lib's new HEAD, install it with--no-deps, and blow up at import time withModuleNotFoundError. This is the specific cost of "always-latest first-party + pinned third-party" — the two sides can silently diverge. Two options:
- Convention: any change-set that adds a runtime dep to a first-party lib also includes a
requirements.inrecompile in the backend, shipped together.- CI check: in the backend,
docker build --no-cachethen run a smokepython -c "import <backend_pkg>"in the image. A dep drift breaks this before it reaches prod. Cheap and catches the class deterministically.
Dockerfile — two installs:
RUN uv pip install --system -r requirements.txt # pinned + hashed third-party
RUN uv pip install --system --no-config --no-deps -r requirements-private.txt # first-party at HEAD
--no-depsbecause every sub-dep is already installed + locked by step 1.--no-configsoexclude-newer(uv.toml) can't reject a first-party commit pushed within the gate window — you want the newest first-party commit. Without it, a lib commit younger than the gate fails the build.
⚠️ The cache trap (bites every rebuild). A RUN uv pip install ... requirements-private.txt
layer is cached on the command string + the file's contents — neither changes when
the upstream branch moves, so Docker silently reuses the old commit and "always
latest" quietly becomes "whatever was latest the first time." To actually pull the
newest first-party code you must docker build --no-cache (or bust the cache above
that layer, e.g. an ARG GIT_REV passed each build). This is also why, right after
merging a fix to a first-party lib, the next publish must be --no-cache.
Step 5c: Harden dev-requirements.txt Too (optional)
Steps 1–5b lock the runtime dependency install. Dev tooling
(pytest / black / mypy / ruff / etc.) installed via dev-requirements.txt
is outside that scheme entirely — unpinned, unhashable, ungated, and installed on
exactly the machines that have CR_PAT exported. A compromised pytest release
served to a CI runner has the same reach as a compromised runtime dep, and the
runtime hardening does nothing to catch it.
The same recipe applies, one file over:
# dev-requirements.in — direct dev deps only.
pytest
pytest-cov
black
mypy
ruff
# Compile with the RUNTIME lock as a constraint so shared transitive deps
# (e.g. `packaging`) can't resolve to a conflicting version between the two
# files. This keeps `pip install -r requirements.txt -r dev-requirements.txt`
# internally consistent.
uv pip compile dev-requirements.in \
--generate-hashes --no-annotate --python-version 3.13 \
-c requirements.txt \
-o dev-requirements.txt
Local install — use uv pip install, not plain pip. Two reasons:
uv pip install -r requirements.txt -r dev-requirements.txt
- Plain
pipbreaks on the Step 5b lock.requirements.txtunder the split flow intentionally retains unhashable transitive public git deps (see the note on transitive git deps above). pip enters hash-required mode as soon as it sees a hashed line and then aborts withHashes are required in --require-hashes modeon the unhashable git line. uv is more forgiving — it verifies present hashes without demanding them on every line. - Plain
pipdoes not honorexclude-newer. That setting lives inpyproject.toml/uv.tomland only uv reads it. Running pip here would install fresh-off-PyPI dev tooling despite the rolling gate — the exact class of attack Step 3 was set up to block. - Skip this step for projects with no dev-tooling install path (a service repo whose CI runs a prebuilt test image, say). The point is coverage of every install path where PyPI can reach the machine.
Step 6: Verify the Build — and That the Token Did Not Leak
Do a clean, no-cache build to prove the locked install works end to end:
# Load the token into the build environment (private deps only)
export CR_PAT=... # or: set -a; source .env; set +a
./build-publish.sh --no-cache # or: docker build --no-cache --build-arg CR_PAT=$CR_PAT -t app:test .
Then prove the token is not baked into the image — this is the regression that
the ARG-not-ENV change prevents, and it's worth confirming every time:
# Should print NOTHING. If it prints CR_PAT=..., the token leaked into the image.
docker inspect app:test --format '{{range .Config.Env}}{{println .}}{{end}}' | grep -i CR_PAT
# Belt-and-suspenders: scan the whole image filesystem history for the token value.
docker history --no-trunc app:test | grep -i cr_pat || echo "clean"
# CRITICAL: scan installed package METADATA for a baked token. This catches the
# {env:CR_PAT} library-metadata leak (Step 1 callout) that the ENV and history
# checks above completely miss — the token lives in a .dist-info/METADATA file,
# not the image config. Should print nothing.
docker run --rm --entrypoint sh app:test -c \
'grep -rl "ghp_\|github_pat_" /usr/local/lib/python*/site-packages/*.dist-info/METADATA 2>/dev/null' \
|| echo "no token in metadata"
Verify the published image, not just the local build. After
build-publish.shpushes,docker rmithe tag,docker pullit fresh, and re-run the scans above against the pulled image. A warm build/layer cache can mask a stale or token-bearing layer that only the registry copy reveals.
If a token was ever exposed (printed to a terminal, or baked into a previously published image via the old
ENVline), fixing the Dockerfile only stops future images from carrying it. Images already pushed still contain it, and a leaked token stays valid until rotated. Flag this to the user and recommend rotating the token; let them decide.
Gotchas Worth Remembering
These are the non-obvious things that cost time the first time through:
- Compile without constraints jumps to latest. Always pass
-c <pip-freeze-output>on the first compile, or you'll lock to versions you never tested. (Step 2.) - uv keeps existing pins on recompile — in the single-lock flow only. Adding
one dep to
requirements.inand recompiling won't bump the rest, because uv reads pins from the-ooutput file. Only true when the-ofile persists between compiles. Step 5b's split flow rms its-otarget and needs an explicit-c requirements.txt— see gotcha 16. (Step 2 / Step 5b.) exclude-neweris rolling and applies to install too, not just compile. Auv pip installinside Docker is also gated, so a base-image rebuild won't pull a day-old package either. (Step 3.)- The build backend is a dependency too. Pinning app deps but leaving
requires = ["hatchling"]floating leaves a hole at wheel-build time. (Step 3.) ARGis enough;ENVleaks.${CR_PAT}expands inRUNfrom anARGalone. TheENVform additionally persists the value into the image. (Step 4/6.)- Git deps are unhashable — the commit SHA is their integrity anchor, which is
why Step 1 insists on pinning them by SHA, and why
--require-hashesneeds a split. (Step 1/5.) - Pin the uv binary by digest, not just tag — it's the root of trust for the whole install. (Step 4.)
{env:CR_PAT}in a library's own pyproject bakes the PAT into its wheel metadata. hatchling expands it at build time intoRequires-Dist, so the token ships in every image — invisible to env/history checks. Scan*.dist-info/METADATA, fix the lib to token-free URLs, rotate the PAT. (Step 1/6.)- uv resolves the whole graph; pip dedups by name. A private lib that declares
its own
{env:CR_PAT}/unpinned deps will fail or conflict the compile. Use--overrideto force those packages to your chosen source. (Step 5b.) - uv pins git deps to a resolved commit even from a no-SHA input. A single lock
therefore freezes first-party libs to compile-time HEAD — split them out and
install
--no-depsat HEAD if you want always-latest. (Step 5b.) - Docker caches HEAD git installs. The
requirements-private.txtinstall layer reuses the old commit until you--no-cache(or cache-bust). "Always latest" silently rots otherwise — and a just-merged lib fix won't ship without it. (Step 5b.) - Compile for the container's Python, not your laptop's.
--python-version X.YmatchingFROM python:X.Y, or you lock the wrong wheels/markers. (Step 0/2.) - A raw
pip freezebreaks-c. Strip VCS/editable/file://lines (keep onlyname==version) before using it as a constraints file. (Step 2.) exclude-newergates installs too — including first-party HEAD. A first-party commit younger than the gate fails the build; run that install with--no-config. (Step 5b.)exclude-newercollides with pin-to-installed on freshly-released packages. If any package in/tmp/installed-constraints.txtwas released inside theexclude-newerwindow (extremely common for a just-scaffolded project — youpip install'd whatever was latest an hour ago), the first constrained compile fails with× No solution found... there is no version of X==Y that satisfies exclude-newer=.... The message points at the constraint, not the gate — easy to misread as a bad pin. Remedy: drop that specific pin from/tmp/constraints.txt, rerun the compile, and accept the age-gated older version. This is a deliberate, visible downgrade — exactly the "make it visible" property this skill wants — but nothing in the process tells you that's what's happening, so know the pattern. (Step 2 / Step 0.)- Step 5b's
-ois a throwaway;-c requirements.txtis mandatory on recompile. Unlike Step 2's single-lock flow, Step 5b compiles torequirements.full.txtandrms it — uv's pin-preservation-on-recompile behavior does nothing here because there's no persistent-otarget to read from. Omitting-c requirements.txton the routine recompile silently re-resolves the entire tree to newest-within-the-gate. The 7-day age gate is your only remaining defense when this happens. (Step 5b.) - The
--no-depssplit lets first-party libs drift ahead of their locked sub-tree. Because backend third-party deps are frozen at compile time but first-party libs install--no-depsat HEAD, a first-party lib that adds a new runtime dep and merges without a backend recompile deploys, imports, and dies withModuleNotFoundError. Convention: lib dep-change PR must include a backendrequirements.inrecompile. CI catch: a smokeimportin the built image. (Step 5b.) - Dev tooling is outside the runtime hardening.
pytest/black/ etc. installed from an unpinneddev-requirements.txtland on the same machines that holdCR_PAT. A hijacked pytest release has the same reach as a hijacked runtime dep, and nothing in Steps 1–5b catches it. Compile a hasheddev-requirements.txtthe same way, constrained byrequirements.txtso shared deps can't conflict. (Step 5c.)
Design Principles
- Reproduce what you tested — pin to installed versions, not to latest.
- Make tampering detectable — hashes on every PyPI artifact.
- Buy time against fresh malware — a rolling release-age gate.
- Pin the whole chain — app deps, the build backend, the uv binary, and (via commit SHA) Git deps. A single floating link defeats the rest.
- Keep credentials out of artifacts — build-time
ARG, never imageENV; verify withdocker inspect. - Decide tradeoffs out loud — e.g. skipping
--require-hashesis fine, but say so and say why, rather than leaving it silently unaddressed.
Composes With
- flask-docker-deployment / mcp-docker-deployment — run this after the Docker build exists to harden its dependency install (replaces the pip flow).
- python-lib-setup — when your internal libraries are the Git deps being pinned by commit SHA here.
Reporting Defects in This Skill
If you hit a bug, a stale instruction, or a step that doesn't work while running the uv-supply-chain-hardening skill, report it — don't just silently work around it. Future runs will hit the same thing.
- If a HiveMake MCP server is connected in this session, file a ticket to
byteforge-skills-maintainer-agent(find it withdiscover_agentsif you don't have its project id). Include:- the skill name (
uv-supply-chain-hardening) and the version from.claude-plugin/plugin.jsonif you know it - the step or section that failed
- what you expected vs. what actually happened (exact error text if short)
- the workaround you used, if any
- the skill name (
- Otherwise, tell the human driving the session, and/or open an issue at github.com/jmazzahacks/byteforge-claude-skills.
Fix the user's immediate problem first; report second.