fix: clarify version segment positions in release skill to prevent patch/minor confusion#190
Merged
Merged
Conversation
…tch/minor confusion Add explicit segment position labels (1-6) to version format throughout the release skill. Add self-verification step before AskUserQuestion that requires segment-by-segment comparison. Consolidate versioning info into the spec section to reduce duplication. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The release skill incorrectly recommended incrementing
coderm_minor(segment 5) instead ofcoderm_patch(segment 6) for patch-level releases. For example, with current version1.122.0-coderm.0.18.1, a patch release would recommend1.122.0-coderm.0.19.0instead of the correct1.122.0-coderm.0.18.2.Root Cause
The SKILL.md bash scripts were logically correct, but the AI interpreting the instructions confused which segment to increment. The version format
A.B.C-coderm.D.E.Fhas 6 segments, and the distinction between segment 5 (coderm_minor) and segment 6 (coderm_patch) was not explicit enough.Changes
{1}.{2}.{3}-coderm.{4}.{5}.{6}) throughout the release skillcoderm-patch → 0.19.0(wrong) vs0.18.2(correct)Test Plan
🤖 Generated with Claude Code