modernize-deps

Modernize Dependencies Command

Content Preview
# Modernize Dependencies Command

Update and modernize project dependencies

## Instructions

Follow this approach to modernize dependencies: **$ARGUMENTS**

1. **Dependency Audit**
   ```bash
   # Check outdated packages
   npm outdated
   pip list --outdated
   composer outdated
   
   # Security audit
   npm audit
   pip-audit
   ```

2. **Update Strategy**
   - Start with patch updates (1.2.3 → 1.2.4)
   - Then minor updates (1.2.3 → 1.3.0)
   - Finally major updates (1.2.3 → 2.0.0)
   - Tes
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/modernize-deps.md \
  https://raw.githubusercontent.com/qdhenry/Claude-Command-Suite/main/.claude/commands/setup/modernize-deps.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/qdhenry/Claude-Command-Suite

Then reference at .claude/commands/setup/modernize-deps.md

Related Skills