@simbimbo/memory-ocmemog 0.1.15 → 0.1.16
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.
- package/CHANGELOG.md +7 -0
- package/README.md +3 -2
- package/ocmemog/__init__.py +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.16 — 2026-03-25
|
|
4
|
+
|
|
5
|
+
Platform support doc clarification for Linux/Windows service guidance.
|
|
6
|
+
|
|
7
|
+
### Highlights
|
|
8
|
+
- documented Linux systemd and Windows service runner guidance (no new code changes)
|
|
9
|
+
|
|
3
10
|
## 0.1.15 — 2026-03-25
|
|
4
11
|
|
|
5
12
|
Hydration stabilization + cross-platform default cleanup.
|
package/README.md
CHANGED
|
@@ -164,7 +164,8 @@ Boolean env values are parsed case-insensitively and support `1/0`, `true/false`
|
|
|
164
164
|
- **Watcher path defaults:** now resolve from a platform-aware OpenClaw home (`OPENCLAW_HOME` / `OCMEMOG_OPENCLAW_HOME`, XDG, Windows AppData, then legacy `~/.openclaw`).
|
|
165
165
|
- **Service/install helpers:** still split by platform.
|
|
166
166
|
- macOS: LaunchAgents supported in-tree
|
|
167
|
-
- Linux
|
|
167
|
+
- Linux: run the sidecar directly with env overrides; if you want a service, create a systemd unit that calls `scripts/ocmemog-sidecar.sh` from your venv
|
|
168
|
+
- Windows: run the sidecar directly with env overrides; use Task Scheduler or NSSM if you need a persistent service
|
|
168
169
|
|
|
169
170
|
## One‑shot installer (macOS / local dev)
|
|
170
171
|
|
|
@@ -222,7 +223,7 @@ launchctl bootstrap gui/$UID scripts/launchagents/com.openclaw.ocmemog.guard.pli
|
|
|
222
223
|
|
|
223
224
|
## Recent changes
|
|
224
225
|
|
|
225
|
-
### 0.1.
|
|
226
|
+
### 0.1.16 (current main)
|
|
226
227
|
|
|
227
228
|
Current main now includes:
|
|
228
229
|
- integrated release-gate validation with a fresh-state memory contract proof
|
package/ocmemog/__init__.py
CHANGED
|
@@ -7,6 +7,6 @@ from importlib.metadata import PackageNotFoundError, version as _package_version
|
|
|
7
7
|
try:
|
|
8
8
|
__version__ = _package_version("ocmemog-sidecar")
|
|
9
9
|
except PackageNotFoundError: # pragma: no cover - package metadata may be unavailable in source layouts.
|
|
10
|
-
__version__ = "0.1.
|
|
10
|
+
__version__ = "0.1.16"
|
|
11
11
|
|
|
12
12
|
__all__ = ["__version__"]
|
package/package.json
CHANGED