You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(skills): treat internal-scope feat commits as patch in /release (#642)
* fix(skills): treat internal-scope feat commits as patch in /release
The release skill's auto-detect logic treated any feat: commit as a
minor bump. Internal dev tooling scopes (titan, skills, hooks, ci,
bench, dogfood, etc.) are not user-facing features and should not
trigger a minor version bump. Add an explicit exclusion list so these
scopes count as patch.
* fix(skills): clarify minor-bump wording, alphabetize scopes, add patch example (#642)
**Internal scopes — treat as patch, not minor:** The following scopes represent internal developer tooling and infrastructure, not user-facing features. A `feat:` commit with one of these scopes counts as a **patch**, not a minor bump:
For example, `feat(titan): first full pipeline run` is internal tooling — patch. But `feat(cfg): control-flow graph generation` is user-facing — minor.
57
+
52
58
Given the current version `MAJOR.MINOR.PATCH` from `package.json`, compute the new version:
53
59
-**major** → `(MAJOR+1).0.0`
54
60
-**minor** → `MAJOR.(MINOR+1).0`
@@ -57,6 +63,8 @@ Given the current version `MAJOR.MINOR.PATCH` from `package.json`, compute the n
57
63
Print the detected bump reason and the resolved version, e.g.:
0 commit comments