opensrc-inspect — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited opensrc-inspect (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.
Use this skill when source-level dependency inspection materially changes the answer. Prefer docs and types first; pull source when behavior, migration risk, or internal implementation details matter.
AGENTS.md and inspect the repo's manifests and lockfiles.opensrc binary when available. Fall back to bunx opensrconly if the binary is unavailable.
opensrc fetch when the goal is cache-only prep for CI, scripts, ormulti-package warmup:
opensrc fetch --cwd <repo-root> zod react nextopensrc fetch <pkg>@<current_version> <pkg>@<target_version>opensrc path for actual inspection, composition, and diffs:rg "pattern" $(opensrc path zod)cat $(opensrc path zod)/src/types.tsfind $(opensrc path pypi:requests) -name "*.py"git diff --no-index "$(opensrc path <pkg>@<current_version>)" "$(opensrc path <pkg>@<target_version>)"recommendation.
use opensrc for implementation internals and source diffs.
/home/bjorn/.codex/skill-support/bin/deps-workbench exists and the taskis an npm/Bun dependency upgrade, use it as the fast prep layer before the deeper source reasoning:
deps-workbench upgrade-prep --cwd <repo-root> --package <pkg> --out <tmp.json>deps-workbench report --input <tmp.json> --format mdopensrc 0.7.x caches globally at ~/.opensrc/ and keys cache entries byresolved version or ref. The global cache is not the main risk.
opensrc 0.7.2 improved pnpm workspace and Yarn workspace/protocol handling,but you still need to verify the resolved version before trusting it.
node_modules/<pkg>/package.jsonpackage-lock.jsonpnpm-lock.yamlyarn.lockpackage.json--cwd by default. If node_modulesis stale, opensrc can resolve a stale installed version first.
opensrc path pkg@current_versionopensrc path pkg@target_version~/.opensrc/. OPENSRC_HOME overrides thecache root.
~/.opensrc/sources.json, not in the project.zod with accepted alias npm:zodpypi:requests with accepted aliases pip:requests,python:requests
crates:serde with accepted aliases cargo:serde,rust:serde
owner/repo, github:owner/repo, gitlab:owner/repo,bitbucket:owner/repo, or full URLs
owner/repo@tag, owner/repo#branch, pkg@versionGITHUB_TOKEN, GITLAB_TOKEN, andBITBUCKET_TOKEN.
fetch vs pathopensrc fetch when you want deterministic cache warmup without printingpaths, especially in CI, prep scripts, or before a multi-version comparison.
opensrc path when the next command needs the resolved filesystem path.fetch is optional; theimportant rule is that the actual inspection uses explicitly pinned versions.
references/opensrc-cli-reference.md when you need the exact modern CLIsurface, cache model, supported spec forms and aliases, auth env vars, or release deltas.
references/dependency-upgrade-audit.md when the task is a packageupgrade, current-versus-target comparison, migration audit, or hard-cut removal of obsolete package integrations.
and current/target opensrc paths. Keep the actual migration reasoning with the model.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.