Agent skill
dependency-updater
Automated dependency update execution with breaking change detection and rollback capability
Install this agent skill to your Project
npx add-skill https://github.com/a5c-ai/babysitter/tree/main/library/specializations/code-migration-modernization/skills/dependency-updater
SKILL.md
Dependency Updater Skill
Executes automated dependency updates safely with breaking change detection, rollback capability, and intelligent update batching.
Purpose
Enable safe, automated dependency updates for:
- Security patch application
- Version upgrades
- Breaking change management
- Update batching and sequencing
- Rollback coordination
Capabilities
1. Safe Update Execution
- Execute updates with validation
- Run tests after updates
- Verify build success
- Check runtime compatibility
2. Breaking Change Detection
- Analyze changelogs for breaking changes
- Detect API modifications
- Identify behavioral changes
- Flag deprecation impacts
3. Rollback Capability
- Create pre-update snapshots
- Enable quick rollback
- Preserve lockfile history
- Document rollback procedures
4. Update Batching
- Group compatible updates
- Prioritize security updates
- Sequence breaking changes
- Minimize update iterations
5. Lock File Management
- Update lockfiles consistently
- Handle peer dependencies
- Resolve version conflicts
- Maintain reproducibility
6. Changelog Parsing
- Extract version changes
- Identify migration guides
- Document upgrade steps
- Link to release notes
Tool Integrations
| Tool | Purpose | Integration Method |
|---|---|---|
| Dependabot | GitHub automation | API |
| Renovate | Multi-platform updates | CLI / Config |
| npm-check-updates | npm updates | CLI |
| pyup | Python updates | CLI |
| bundler-audit | Ruby updates | CLI |
| go get -u | Go updates | CLI |
Output Schema
{
"updateId": "string",
"timestamp": "ISO8601",
"updates": [
{
"package": "string",
"from": "string",
"to": "string",
"type": "major|minor|patch|security",
"breakingChanges": "boolean",
"status": "applied|failed|skipped",
"rollbackAvailable": "boolean"
}
],
"validation": {
"testsPass": "boolean",
"buildSuccess": "boolean",
"runtimeChecks": "boolean"
},
"rollback": {
"snapshotId": "string",
"lockfileBackup": "string"
}
}
Integration with Migration Processes
- dependency-analysis-updates: Update execution
- framework-upgrade: Coordinated upgrades
Related Skills
dependency-scanner: Pre-update analysisvulnerability-scanner: Security prioritization
Related Agents
dependency-modernization-agent: Update orchestrationframework-upgrade-specialist: Framework updates
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-tools
Central utility skill for GSD operations. Provides config parsing, slug generation, timestamps, path operations, and orchestrates calls to other specialized skills. Acts as the unified entry point that the original gsd-tools.cjs provided via its lib/ modules (commands, config, core, init).
model-profile-resolution
Resolve model profile (quality/balanced/budget) at orchestration start and map agents to specific models. Enables cost/quality tradeoffs by selecting appropriate AI models for each agent role.
verification-suite
Plan structure validation, phase completeness checks, reference integrity verification, and artifact existence confirmation. Provides the structured verification layer ensuring GSD artifacts are well-formed and complete.
state-management
STATE.md reading, writing, and field-level updates. Provides cross-session state persistence via .planning/STATE.md with structured fields for current task, completed phases, blockers, decisions, and quick tasks.
git-integration
Git commit patterns, formats, and conventions for GSD methodology. Provides atomic commits per task, structured commit messages, planning file commits, branch management, and milestone tag operations.
frontmatter-parsing
YAML frontmatter parsing and manipulation for .planning/ documents. Provides read, write, update, query, and validation operations on frontmatter blocks in GSD markdown artifacts.
Didn't find tool you were looking for?