pypi-maintainer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited pypi-maintainer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Switch the install source for a package the agent maintains. Three sources are supported: production PyPI, TestPyPI (pre-release / dev builds), and a local editable checkout. The same script works for any package an AgentCulture sibling publishes — pass the package name as the first argument.
# Production PyPI
bash .claude/skills/pypi-maintainer/scripts/switch-source.sh <package> pypi
# TestPyPI (pre-release dev builds)
bash .claude/skills/pypi-maintainer/scripts/switch-source.sh <package> test-pypi
# TestPyPI, pinned to a specific dev version
bash .claude/skills/pypi-maintainer/scripts/switch-source.sh <package> test-pypi --version 0.4.0.dev42
# Local editable checkout (defaults to current directory)
bash .claude/skills/pypi-maintainer/scripts/switch-source.sh <package> local
# Local editable from an explicit path
bash .claude/skills/pypi-maintainer/scripts/switch-source.sh <package> local --path ../<package>The script requires the following tools on PATH:
bashuv — the script delegates to uv tool install and uv tool list(or uv pip install for local).
When a package is published to both PyPI and TestPyPI, uv tool install finds the production version on PyPI first and never looks at TestPyPI. The script passes --index-strategy unsafe-best-match so uv compares the two index sets and picks the highest version, plus --prerelease=allow because TestPyPI builds carry dev suffixes (e.g. 0.4.0.dev42).
The script prints the resolved version once install completes — cross-check that against the expected version (PR run number, local pyproject.toml) before continuing.
| Position / flag | Meaning |
|---|---|
<package> (required) | The PyPI distribution name, e.g. steward-cli, culture, daria-cli. |
<source> (required) | One of pypi, test-pypi, local. |
--version VERSION | Pin to a specific version (TestPyPI builds typically need this). |
--path PATH | Local-source-only: path to the editable checkout (default: cwd). |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.