mise-tool-management — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited mise-tool-management (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.
.mise.toml.ci_scripts/) that needs to call tools.aqua: → ubi: → asdf:.ci_post_clone.sh) first line: mise install; subsequent tool invocations always go through mise exec <tool> -- <args>..mise.toml) is the single source of truth; version drift is eliminated at the root..mise.toml[tools]
swift = "system"
swiftlint = "0.54"
xcbeautify = "1"
"aqua:gitleaks/gitleaks" = "8"
"aqua:evilmartians/lefthook" = "1"
# Xcode version can also be managed via a mise plugin if you need to lock it.tool-versions as a transition.mise install to enforce parity; the extra overhead is small.artifact bundlers — e.g. tuist, LicensePlist): guard them with an os field, "aqua:tuist/tuist" = { version = "4", os = ["macos"] }. A Linux CI job (L10n / lint / markdown gates run fine on Ubuntu) runs mise install which installs every tool; an unguarded macOS-only tool fails at setup (unsupported env: linux/amd64) before any gate runs, blocking all PRs. This can appear suddenly with no change of yours — an upstream registry can flip a tool to darwin-only mid-day, so earlier PRs pass and later identical ones fail at "install pinned tools". When CI dies at the mise-install step, read for unsupported env: linux/amd64 and add the os guard.
.mise.toml lives at the repo root, committed to git.mise install, mise exec <tool> -- --version matches CI log.mise exec, never calling /usr/local/bin/<tool> or other preinstalled paths.docs/setup.md) starts with "install mise → mise install".xcode-cloud-single-track-ci: ci_scripts/ activates tools through mise.apple-public-repo-security: gitleaks + lefthook installed through mise.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.