Nexus-agents version-check

install
source · Clone the upstream repo
git clone https://github.com/williamzujkowski/nexus-agents
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/williamzujkowski/nexus-agents "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/version-check" ~/.claude/skills/williamzujkowski-nexus-agents-version-check && rm -rf "$T"
manifest: skills/version-check/SKILL.md
source content

Version Check Skill

<!-- CANONICAL SOURCE: CLAUDE.md Core Operating Principles - Version Currency Enforcement -->

Full documentation: CLAUDE.md

Quick Process

1. Check Package Status

npm view <package> version
npm view <package> deprecated
npm view <package> time.modified
npm view <package> engines

2. Evaluate Criteria

CriterionPassFail
DeprecationNot deprecatedDeprecated
Last updateWithin 12 monthsOver 12 months
Node versionCompatible with 22.xIncompatible
SecurityNo advisoriesHas advisories

3. Run Security Audit

pnpm audit

Actions

If deprecated or outdated:

  1. Find replacement
  2. Create GitHub issue to track migration
  3. Document migration path

See CLAUDE.md for complete version verification protocol.