@soulguard/openclaw 0.2.1 → 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 +2 -3
- package/package.json +1 -1
- package/src/templates.ts +1 -2
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.
|
|
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
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
|
|