@skillmarkdown/cli 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -67,6 +67,16 @@ skillmd validate --parity
67
67
  - Packed tarball smoke test: `npm run smoke:pack`
68
68
  - Optional npm link smoke test: `npm run smoke:link`
69
69
 
70
+ ### Auto versioning on main
71
+
72
+ The publish workflow auto-bumps only when the current package version is already published:
73
+
74
+ - `major`: commit message contains `BREAKING CHANGE` or `type!:` marker
75
+ - `minor`: at least one `feat:` commit
76
+ - `patch`: default fallback
77
+
78
+ Using Conventional Commit-style messages keeps release behavior predictable.
79
+
70
80
  ## Links
71
81
 
72
82
  - Agent Skills spec: https://agentskills.io/specification
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillmarkdown/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "CLI for scaffolding SKILL.md-based AI skills",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",