soulguard 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 +3 -3
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -7201,10 +7201,11 @@ class StageCommand {
|
|
|
7201
7201
|
this.out.info(` · ${file} (already staged)`);
|
|
7202
7202
|
}
|
|
7203
7203
|
for (const { path, action } of allStagedFiles) {
|
|
7204
|
+
const staged = stagingPath(path);
|
|
7204
7205
|
if (action === "delete") {
|
|
7205
7206
|
this.out.success(` \uD83D\uDDD1️ ${path} (staged for deletion)`);
|
|
7206
7207
|
} else {
|
|
7207
|
-
this.out.success(` \uD83D\uDCDD ${path}
|
|
7208
|
+
this.out.success(` \uD83D\uDCDD ${path} → ${staged}`);
|
|
7208
7209
|
}
|
|
7209
7210
|
}
|
|
7210
7211
|
if (allStagedFiles.length === 0) {
|
|
@@ -7578,10 +7579,9 @@ var templates = {
|
|
|
7578
7579
|
"workspace/HEARTBEAT.md",
|
|
7579
7580
|
"workspace/BOOTSTRAP.md",
|
|
7580
7581
|
"openclaw.json",
|
|
7581
|
-
"cron/",
|
|
7582
7582
|
"extensions/"
|
|
7583
7583
|
],
|
|
7584
|
-
watch: ["workspace/MEMORY.md", "workspace/memory/", "workspace/skills/"],
|
|
7584
|
+
watch: ["workspace/MEMORY.md", "workspace/memory/", "workspace/skills/", "cron/"],
|
|
7585
7585
|
release: ["workspace/sessions/"]
|
|
7586
7586
|
},
|
|
7587
7587
|
paranoid: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "soulguard",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Identity protection for AI agents",
|
|
5
5
|
"homepage": "https://soulguard.ai",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"typecheck": "tsc --noEmit"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@soulguard/core": "^2.
|
|
30
|
-
"@soulguard/discord": "^2.
|
|
31
|
-
"@soulguard/openclaw": "^2.
|
|
29
|
+
"@soulguard/core": "^0.2.1",
|
|
30
|
+
"@soulguard/discord": "^0.2.1",
|
|
31
|
+
"@soulguard/openclaw": "^0.2.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/bun": "latest",
|