Agent skill
versions
Check package versions before installing. CRITICAL - AUTO-INVOKE when: - About to install any package (bun add, npm install) - User asks about "latest version", "update package" - Before implementing with any library MANDATORY: Never install packages without checking version first.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/versions
SKILL.md
Package Version Checker
CRITICAL: Always check latest version before installing ANY package.
Check Version
# Check latest version
bun info <package>
# Examples
bun info gsap
bun info lenis
bun info @react-three/fiber
bun info framer-motion
Install with Version
# Install latest
bun add gsap@latest
# Install specific version
bun add [email protected]
Check Darkroom Package Versions
# Lenis (smooth scroll)
bun info lenis
# Hamo (performance hooks)
bun info hamo
# Tempus (RAF management)
bun info tempus
Check Outdated Packages
# List outdated packages in project
bun outdated
Why This Matters
- Security - Old versions may have vulnerabilities
- Features - Latest versions have new APIs
- Compatibility - Mismatched versions cause issues
- Training data - Your knowledge may be outdated
Workflow
- Check version -
bun info <package> - Fetch docs - Use context7 for current documentation
- Install -
bun add <package>@latest - Verify - Check
package.jsonhas correct version
Output
Report:
- Package: Name
- Latest version: Current release
- Your version: What's in package.json (if applicable)
- Action: Install/update recommendation
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?