diff --git a/CLAUDE.md b/CLAUDE.md index 3d93827..7ee9f13 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -11,3 +11,11 @@ When reviewing or refactoring blueprint files: 3. **Spelling & Grammar** - Correct any spelling or grammatical errors 4. **Documentation** - Add comments to make the code easier to read and understand 5. **User-Friendly Messages** - Use entity friendly names instead of entity IDs in notification messages + +## Versioning + +After any change to repository content (blueprints, documentation, or other files), update the `version` field in `manifest.json` using semantic versioning: + +- **Major** (X.0.0) - Breaking changes or major new features +- **Minor** (0.X.0) - New features, enhancements, or significant improvements +- **Patch** (0.0.X) - Bug fixes, typos, small tweaks, or documentation updates diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..fabbd9a --- /dev/null +++ b/manifest.json @@ -0,0 +1,3 @@ +{ + "version": "1.1.0" +}