From e6ed20687f77f0437e0991b634f1226a3cebb60d Mon Sep 17 00:00:00 2001 From: "alexei.dolgolyov" Date: Fri, 30 Jan 2026 14:46:43 +0300 Subject: [PATCH] Add `manifest.json` that contains version of the repository content. Update `CLAUDE.md` with new versioning rules. --- CLAUDE.md | 8 ++++++++ manifest.json | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 manifest.json 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" +}