@sdotwinter/openclaw-deterministic 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/bin/cli.js +3 -0
  2. package/package.json +2 -2
package/bin/cli.js CHANGED
@@ -15,6 +15,8 @@ if (command === "doctor") {
15
15
  require(path.join(__dirname, "install"));
16
16
  } else if (command === "init") {
17
17
  require(path.join(__dirname, "init"));
18
+ } else if (command === "revert") {
19
+ require(path.join(__dirname, "revert"));
18
20
  } else if (command === "--version" || command === "-v") {
19
21
  // Keep this in sync with package.json version (manual for now)
20
22
  console.log("openclaw-deterministic v0.1.0");
@@ -31,5 +33,6 @@ function showHelp() {
31
33
  console.log(" oc-deterministic init");
32
34
  console.log(" oc-deterministic doctor");
33
35
  console.log(" oc-deterministic install");
36
+ console.log(" oc-deterministic revert");
34
37
  console.log(" oc-deterministic --version\n");
35
38
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdotwinter/openclaw-deterministic",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Deterministic governance and memory compaction layer for OpenClaw",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -24,7 +24,7 @@
24
24
  "type": "commonjs",
25
25
  "main": "index.js",
26
26
  "bin": {
27
- "oc-deterministic": "bin/cli.js"
27
+ "oc-deterministic": "bin/cli.js"
28
28
  },
29
29
  "scripts": {
30
30
  "test": "echo \"No tests specified\""