verify-global-settings-version

Compare branch and origin/main VERSION files to validate semver bumps.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/ConductionNL/decidesk --skill verify-global-settings-version
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: verify-global-settings-version
Source: https://github.com/ConductionNL/decidesk/tree/main/.claude/skills/verify-global-settings-version
Command: npx skills add https://github.com/ConductionNL/decidesk --skill verify-global-settings-version

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Validates that the global-settings/VERSION file has been correctly bumped after changes to the global-settings/ directory, ensuring version consistency before pull requests.

Core Features & Use Cases

  • Detects changes in global-settings/ and validates a proper VERSION bump.
  • Provides clear pass/fail status to prevent PRs with missing or incorrect bumps.
  • Suitable for workflows that require explicit versioning before merging configurations.

Quick Start

Run verify-global-settings-version after modifying global-settings files to confirm the VERSION bump.

Frequently Asked Questions about verify-global-settings-version

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

FAQPage Schema
How does the global settings version verification process work?▼

The global settings version verification process reads the VERSION file from both the current branch and origin/main, then reports whether a version bump is present and if it matches the expected semver increment based on directory changes.

When do I need to check for a semver increment in global settings files?▼

You need to check for a semver increment in global settings files whenever you modify any files within the global-settings/ directory. This validation step is required before creating a PR on the repository to ensure version consistency.

Does the global settings version checker compare my branch against origin/main?▼

Yes, the global settings version checker compares the VERSION file in your current branch against the origin/main branch. It uses this comparison to report whether a proper version bump is present and matches the expected semver increment.

Why does my pull request fail the version consistency check for global settings?▼

Your pull request fails the version consistency check because the global-settings/VERSION file was not correctly bumped after changes to the global-settings/ directory. The verification detects missing or incorrect semver increments before allowing a merge.