vibetags: Skill for Claude Code

.claude/skills/bump-dependencies/SKILL.md

bump-dependencies is a skill for Claude Code from PIsberg/vibetags. It costs 81 tokens per session (1,333 once invoked), scanned A, original, MIT.

A process for finding and updating third-party libraries, plugins, and toolchain versions used by VibeTags. It checks Maven Central for stable releases and also covers versions managed outside the main Maven file.

In plain words
What is it for?
Use it to review current dependency versions, apply stable upgrades, update wrapper and language-tool versions, run the required checks, and prepare a pull request.
Why use it?
It prevents dependency pins from becoming outdated while avoiding prereleases and version mismatches between Maven and Gradle parts of the project.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is PIsberg/vibetags's own configuration. It tells Claude Code how to work on vibetags itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything vibetags configures →

Reuse

Borrowing it

Nothing to install: this file belongs to PIsberg/vibetags. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/PIsberg/vibetags/main/.claude/skills/bump-dependencies/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/PIsberg/vibetags

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bump-dependencies

README.md
[![agentmods](https://agentmods.dev/badge/skills/pisberg/vibetags/bump-dependencies/github.svg)](https://agentmods.dev/skills/pisberg/vibetags/bump-dependencies)
Your own site
<a href="https://agentmods.dev/skills/pisberg/vibetags/bump-dependencies"><img src="https://agentmods.dev/badge/skills/pisberg/vibetags/bump-dependencies/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bump-dependencies

Your own site · 80×15
<a href="https://agentmods.dev/skills/pisberg/vibetags/bump-dependencies"><img src="https://agentmods.dev/badge/skills/pisberg/vibetags/bump-dependencies.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,333 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00081 $0.01333
Opus 5 $0.00041 $0.00666
Sonnet 5 $0.00016 $0.00267
Haiku 4.5 $0.00008 $0.00133

Measured 10d ago against content hash 8ab9c072c400, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

bump-dependencies scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/bump-dependencies/SKILL.md · 81 lines

How it starts

The opening of the file, as written. The whole thing — 81 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Bump dependencies

Every third-party version lives once, as a <name.version> property in vibetags-parent/pom.xml; the managed poms inherit it and BuildVersionParityTest fails the build if a literal creeps back in or a Gradle coordinate drifts. What that test cannot see is whether the pinned version is current, which is what this skill is for.

Step 1 - Branch, then report

git fetch origin && git checkout -b chore/bump-dependencies-$(date +%F) origin/main
tools/bump-dependencies.sh            # read-only; add --include-prereleases to see betas

The script prints one line per property with its Maven Central latest, then the toolchains pinned outside the parent (Gradle wrapper, Kotlin, Groovy, Scala 2.13). It exits 2 if the parent gains a *.version property the script has no Maven Central path for: add the path to its PINS table in the same change, so the report can never silently go stale.

Step 2 - Decide

  • Apply stable releases only. Never an alpha, beta, milestone (M1), RC or -ea, even when Maven Central marks it <latest>; the report already hides them by default.
  • Read the release notes of anything with a major bump before applying it. Plugins that change how the build runs (compiler, surefire, enforcer, spotbugs, pmd, error-prone, nullaway) can turn a green build red for reasons unrelated to the code; that is not a reason to skip them, it is a reason to run the full gates below.
  • Kotlin: examples/kotlin uses kapt; a Kotlin bump is verified by that example's Gradle build, nothing less.

Step 3 - Apply, including the mirrors

Edit the property in vibetags-parent/pom.xml. Then the places that cannot inherit it:

Pin Also lives in
junit.version, junit.platform.version, mockito.version, archunit.version, async-test-lib.version, snakeyaml.version, logback.version, slf4j.version, jspecify.version nothing to edit. vibetags/build.gradle reads each one from the parent via pomVersion(...); BuildVersionParityTest enforces that it keeps doing so
pmd.version nothing. Both Gradle builds derive it from the parent, and BuildVersionParityTest fails any file that reintroduces a literal
maven-compiler-plugin.version literals in examples/basic/pom.xml, examples/multimodule/pom.xml, examples/multimodule-indexed/pom.xml, examples/all-tiers/pom.xml, tools/demo/pom.xml (consumer poms; keep them in step)
Gradle wrapper every gradle-wrapper.properties in the repository - ten of them, not the six this row used to list; enumerate with git ls-files '*gradle-wrapper.properties' rather than trusting the list - plus the version named in docs/DEPENDENCIES.md
Kotlin examples/kotlin/build.gradle.kts (jvm and kapt), the snippets in README.md and examples/kotlin/README.md
Groovy, Scala examples/groovy/build.gradle, examples/scala/build.gradle (Scala stays on the 2.13 line: the example is about Java-only support)
pre-commit hook revs python -m pre_commit autoupdate; the checkstyle hook runs in Docker, so unless Docker is available revert its rev and say so - an unverifiable bump is not a verified one

Read the full file on GitHub · 81 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 81 lines · 81 tokens per session scan A 8ab9c072c400

Subscribe to this mod's changes

bump-dependencies is a skill published in the GitHub repository PIsberg/vibetags (15 stars, last pushed today), licensed MIT. It adds 81 tokens to every session and 1,333 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.