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.mdsource 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
| Criterion | Pass | Fail |
|---|---|---|
| Deprecation | Not deprecated | Deprecated |
| Last update | Within 12 months | Over 12 months |
| Node version | Compatible with 22.x | Incompatible |
| Security | No advisories | Has advisories |
3. Run Security Audit
pnpm audit
Actions
If deprecated or outdated:
- Find replacement
- Create GitHub issue to track migration
- Document migration path
See CLAUDE.md for complete version verification protocol.