Renovate
A comprehensive skill catalog for AI agents
npx -y skills add G1Joshi/Agent-Skills --skill renovateAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Renovate dependency updates. Use for automated updates.
SKILL.md
1.9 KB, as published. Nobody here has run it
Renovate
Renovate is the power-user alternative to Dependabot. It runs on any platform (GitHub, GitLab, Bitbucket, Azure) and offers extreme configurability for how and when dependencies are updated.
When to Use
- Monorepos: Handles complex multi-package repos better than Dependabot.
- Non-GitHub: If you use GitLab or Bitbucket.
- Complex Schedules: "Only update devDependencies on weekends", "Group all React related packages together".
- Dashboard: Need a dashboard to see all pending updates.
Quick Start (renovate.json)
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"packageRules": [
{
"matchPackagePatterns": ["^react", "^@types/react"],
"groupName": "react monorepo"
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
}
]
}
Core Concepts
Dependency Dashboard
Renovate creates a persistent "Issue" in your repo that acts as a dashboard. You can tick checkboxes to force-retry updates or see what's blocked.
Presets
Shareable configuration bundles (config:base, group:allNonMajor).
Automerge
Renovate's automerge is highly granular. You can automerge only linters, or only patch releases that pass CI.
Best Practices (2025)
Do:
- Use the Dependency Dashboard. It's the control center.
- Group Updates: E.g., Group all
aws-sdkpackages. - Rate Limit: Set
prHourlyLimitorprConcurrentLimitto avoid DDoSing your CI system.
Don't:
- Don't start with zero config: The noise will overwhelm you. Start with conservative settings and expand.