home / skills / ehtbanton / claudeskillsrepo / renovate-config-generator
This skill generates a complete Renovate configuration automatically, enforcing best practices for automated dependency updates.
npx playbooks add skill ehtbanton/claudeskillsrepo --skill renovate-config-generatorReview the files below or copy the command above to add this skill to your agents.
---
name: renovate-config-generator
description: Generate Renovate configuration for automated dependency updates. Triggers on "create renovate config", "generate renovate configuration", "renovate setup", "dependency updates config".
---
# Renovate Config Generator
Generate Renovate configuration for automated dependency update management.
## Output Requirements
**File Output:** `renovate.json` or `.renovaterc.json`
**Format:** Valid Renovate configuration
**Standards:** Renovate best practices
## When Invoked
Immediately generate a complete Renovate configuration with appropriate update rules.
## Example Invocations
**Prompt:** "Create renovate config with automerge for minor updates"
**Output:** Complete `renovate.json` with automerge and grouping rules.
This skill generates a complete Renovate configuration file to automate dependency updates across projects. It outputs a ready-to-use renovate.json or .renovaterc.json formatted to Renovate best practices. The configuration includes sensible defaults for update schedules, grouping, and automerge rules tailored to the prompt.
When triggered, the skill inspects the request for desired policies (automerge, schedule, grouping, package-ecosystems) and produces a valid Renovate configuration. It selects rules for lockfile maintenance, major/minor/patch behavior, dependency type filters, and branch naming. The output is a single JSON config that can be dropped into the repository root to enable Renovate.
What file will the skill output?
A valid renovate.json or .renovaterc.json configuration file ready for repository root.
Can it enable automerge safely?
Yes — the default recommends automerge only for non-breaking minor/patch updates after passing CI.