aethel-cli 1.1.0__py3-none-any.whl

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.
aethel/__init__.py ADDED
@@ -0,0 +1,10 @@
1
+ # Aethel Context & Memory CLI Package
2
+
3
+ # The pip package version (kept in sync with pyproject [project].version by a test).
4
+ __version__ = "1.1.0"
5
+
6
+ # The managed `aethel-core` block version. Stamped into the shipped template and
7
+ # compared by `check_core_consistency` to tell a stale workspace ("run aethel
8
+ # update") from a hand-edited one. Bumped only when the core block's rules change,
9
+ # independently of package patch releases — so it is a separate constant.
10
+ CORE_VERSION = "1.1.0"