askill
versions

versionsSafety 85Repository

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.

14 stars
1.2k downloads
Updated 3/13/2026

Package Files

Loading files...
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 gsap@3.12.5

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

  1. Security - Old versions may have vulnerabilities
  2. Features - Latest versions have new APIs
  3. Compatibility - Mismatched versions cause issues
  4. Training data - Your knowledge may be outdated

Workflow

  1. Check version - bun info <package>
  2. Fetch docs - Use context7 for current documentation
  3. Install - bun add <package>@latest
  4. Verify - Check package.json has correct version

Output

Report:

  • Package: Name
  • Latest version: Current release
  • Your version: What's in package.json (if applicable)
  • Action: Install/update recommendation

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

82/100Analyzed 2/25/2026

Well-structured skill with clear auto-invoke triggers, actionable commands, and good security focus. Provides comprehensive version checking workflow with concrete examples. Slightly tailored to a specific project but core functionality is broadly applicable. Located in proper skills folder with useful tags.

85
90
75
70
90

Metadata

Licenseunknown
Version-
Updated3/13/2026
Publisherdarkroomengineering

Tags

github-actionssecurity