@soulguard/openclaw 0.2.0 → 0.2.2

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/dist/index.js CHANGED
@@ -23,10 +23,9 @@ var templates = {
23
23
  "workspace/HEARTBEAT.md",
24
24
  "workspace/BOOTSTRAP.md",
25
25
  "openclaw.json",
26
- "cron/",
27
26
  "extensions/"
28
27
  ],
29
- watch: ["workspace/MEMORY.md", "workspace/memory/", "workspace/skills/"],
28
+ watch: ["workspace/MEMORY.md", "workspace/memory/", "workspace/skills/", "cron/"],
30
29
  release: ["workspace/sessions/"]
31
30
  },
32
31
  paranoid: {
@@ -4765,7 +4764,7 @@ function guardToolCall(toolName, params, options) {
4765
4764
  }
4766
4765
 
4767
4766
  // src/plugin.ts
4768
- var PKG_VERSION = "0.2.0";
4767
+ var PKG_VERSION = "0.2.2";
4769
4768
  var PLUGIN_DESCRIPTION = "Identity protection for AI agents";
4770
4769
  function createSoulguardPlugin(options) {
4771
4770
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulguard/openclaw",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "typecheck": "tsc --noEmit"
11
11
  },
12
12
  "dependencies": {
13
- "@soulguard/core": "^2.0.0"
13
+ "@soulguard/core": "^0.2.1"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/bun": "latest",
package/src/templates.ts CHANGED
@@ -51,10 +51,9 @@ export const templates: Record<TemplateName, Template> = {
51
51
  "workspace/HEARTBEAT.md",
52
52
  "workspace/BOOTSTRAP.md",
53
53
  "openclaw.json",
54
- "cron/",
55
54
  "extensions/",
56
55
  ],
57
- watch: ["workspace/MEMORY.md", "workspace/memory/", "workspace/skills/"],
56
+ watch: ["workspace/MEMORY.md", "workspace/memory/", "workspace/skills/", "cron/"],
58
57
  release: ["workspace/sessions/"],
59
58
  },
60
59