update-deps

Update npm packages to latest versions and create validated pull requests.

1|Updated Jan 16, 2026
One-click install
npx skills add https://github.com/WhatIfWeDigDeeper/application-tracker --skill update-deps-whatifwedigdeeper
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: update-deps
Source: https://github.com/WhatIfWeDigDeeper/application-tracker/tree/main/.claude/skills/update-deps
Command: npx skills add https://github.com/WhatIfWeDigDeeper/application-tracker --skill update-deps-whatifwedigdeeper

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the process of updating npm packages to their latest versions, ensuring your project stays current and secure while minimizing manual effort.

Core Features & Use Cases

  • Automated Version Updates: Updates specified packages, glob patterns, or all packages to their latest versions.
  • Validation & Testing: Runs build, lint, and test commands to ensure updates don't break functionality.
  • Security Audits: Includes npm audit to identify and fix vulnerabilities.
  • Pull Request Creation: Automatically creates a pull request for reviewed changes.
  • Documentation Updates: Identifies and updates version references in documentation for major version changes.
  • Use Case: Regularly update your project's dependencies to incorporate new features, security patches, and performance improvements without the risk of manual errors.

Quick Start

Use the update-deps skill to update all npm packages to their latest versions.

Frequently Asked Questions about update-deps

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate updating npm dependencies to their latest versions?

Automating npm dependency updates involves identifying packages, checking versions, running security audits, and validating changes through build, lint, and test scripts before pushing. This skill handles the entire process automatically, creating an isolated Git worktree to test updates safely before generating a pull request with detailed validation results.

Can I automatically run npm audit and tests before creating a pull request for dependency updates?

Yes, you can run npm audit and automated validation together before creating a pull request. The process executes build, lint, and test scripts to ensure updated packages do not break functionality, then generates a pull request containing the security audit and validation outcomes.

How do I update version references in documentation when bumping npm packages to major versions?

Updating version references in documentation during major npm package bumps requires identifying specific files needing changes. This skill automatically detects major version updates and notes required documentation updates within the generated pull request to keep project guides accurate.

What is the best way to isolate npm package updates before pushing changes to a Git repository?

The best way to isolate npm package updates is by creating a dedicated Git worktree. This skill establishes a new worktree to perform package updates, run security audits, and execute validation scripts independently before pushing changes and submitting a pull request.

Do I need to manually fix vulnerabilities after updating all npm packages?

You do not need to manually fix vulnerabilities after updating all npm packages. The automated process includes an npm audit step to identify and address security vulnerabilities, documenting the security posture within the pull request details.

Can I update only specific npm packages instead of all dependencies at once?

You can update specific npm packages instead of all dependencies by specifying package names or using glob patterns. The skill supports targeted updates alongside full repository updates, applying the same automated validation and pull request generation workflow.