@sdotwinter/openclaw-deterministic 0.17.8 → 0.17.9

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/README.md CHANGED
@@ -14,19 +14,39 @@ It is a governance layer.
14
14
 
15
15
  Install globally:
16
16
 
17
+ ```bash
17
18
  npm install -g @sdotwinter/openclaw-deterministic
19
+ ```
20
+
21
+ Add to your PATH (optional but recommended):
22
+
23
+ ```bash
24
+ export PATH="$PATH:$(npm root -g)/@sdotwinter/openclaw-deterministic/bin"
25
+ ```
26
+
27
+ Or create a symlink:
28
+
29
+ ```bash
30
+ sudo ln -s $(npm root -g)/@sdotwinter/openclaw-deterministic/bin/oc-deterministic /usr/local/bin/
31
+ ```
18
32
 
19
33
  Apply deterministic governance to an existing OpenClaw workspace:
20
34
 
35
+ ```bash
21
36
  oc-deterministic install
37
+ ```
22
38
 
23
39
  Verify installation:
24
40
 
41
+ ```bash
25
42
  oc-deterministic doctor
43
+ ```
26
44
 
27
45
  Concise health summary (CI-friendly):
28
46
 
47
+ ```bash
29
48
  oc-deterministic status
49
+ ```
30
50
 
31
51
  ---
32
52
 
@@ -156,12 +176,17 @@ Configuration file:
156
176
 
157
177
  Example:
158
178
 
179
+ ```json
159
180
  {
160
181
  "semantic": {
161
182
  "HARD_LIMIT": 1200,
162
183
  "RISK_THRESHOLD_PERCENT": 85
184
+ },
185
+ "governance": {
186
+ "violation_logging": true
163
187
  }
164
188
  }
189
+ ```
165
190
 
166
191
  This prevents uncontrolled memory expansion.
167
192
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdotwinter/openclaw-deterministic",
3
- "version": "0.17.8",
3
+ "version": "0.17.9",
4
4
  "description": "Deterministic governance and memory compaction layer for OpenClaw",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -4,7 +4,6 @@
4
4
  "RISK_THRESHOLD_PERCENT": 85
5
5
  },
6
6
  "governance": {
7
- "strict_mode": false,
8
7
  "violation_logging": true
9
8
  }
10
9
  }