update-maturin — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited update-maturin (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.
Bump the maturin build tool to the latest version and regenerate .github/workflows/tapo-py.yml from maturin generate-ci github, re-applying all local customizations.
tapo-py/: uv lock --upgrade-package maturin
uv sync
uv run maturin --versionConfirm the new version in the last command's output. If it didn't change, maturin is already at the latest — stop and tell the user.
tapo-py/, run uv run maturin generate-ci github and capture the stdout (skip the 📦/🍹/🔗 progress lines). This is the baseline — do NOT overwrite .github/workflows/tapo-py.yml with it directly.name: "Tapo Python" (baseline: name: CI).on::push.branches: only main (baseline includes master).push.tags: "v*" (baseline: '*').pull_request.paths: keep the existing list (tapo/**, tapo-py/**, Cargo.lock, Cargo.toml, .github/workflows/tapo-py.yml). Baseline has no path filter.args: line in each PyO3/maturin-action@v1 step (linux, musllinux, windows, macos, and sdist jobs).linux job (baseline: auto).uses: <action>@vN line, keep the higher of the two versions between the current file and the baseline (e.g. if the file pins actions/upload-artifact@v7 but the baseline emits @v6, keep @v7). To make this mechanical, compare with diff <(grep 'uses: actions/' .github/workflows/tapo-py.yml) <(grep 'uses: actions/' <baseline-file>) and reconcile each differing line by picking the higher @vN.name: using the Python / ... prefix convention. The baseline emits no name: on the matrix jobs and name: Release on the release job — re-add these after regeneration:linux: name: Python / Linux wheel (${{ matrix.platform.target }})musllinux: name: Python / Musllinux wheel (${{ matrix.platform.target }})windows: name: Python / Windows wheel (${{ matrix.platform.target }})macos: name: Python / macOS wheel (${{ matrix.platform.target }})sdist: name: Python / Sdistrelease: name: Python / Publish to PyPI (baseline: Release)Build sdist and Upload sdist in the sdist job: - name: Test sdist
run: |
pip install --force-reinstall --verbose dist/*.tar.gz
python -c 'from tapo import ApiClient'git diff .github/workflows/tapo-py.yml. Every line change should be either (a) the maturin v<old> → v<new> version bump in the header comment, (b) an upstream structural change introduced by the new maturin release, or (c) one of the preserved customizations above. Flag anything else before handing back.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.