@soulguard/openclaw 0.1.3 → 0.1.4
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 +3 -11
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -42,19 +42,11 @@ Templates define which paths go to vault, ledger, or are left unprotected. Every
|
|
|
42
42
|
|
|
43
43
|
## Plugin
|
|
44
44
|
|
|
45
|
-
The OpenClaw plugin integrates soulguard
|
|
46
|
-
|
|
47
|
-
### Current
|
|
45
|
+
The OpenClaw plugin integrates soulguard into the agent runtime:
|
|
48
46
|
|
|
47
|
+
- `before_tool_call` hook intercepts Write/Edit tool calls targeting vault files and redirects to staging
|
|
49
48
|
- Reports soulguard status (vault/ledger health) in agent context
|
|
50
|
-
-
|
|
51
|
-
|
|
52
|
-
### Planned
|
|
53
|
-
|
|
54
|
-
- `before_tool_call` hook to intercept vault writes and redirect to staging
|
|
55
|
-
- Native agent tools (`soulguard.propose`, `soulguard.status`, `soulguard.diff`)
|
|
56
|
-
- Cron job gating for vaulted cron configs
|
|
57
|
-
- Tool access control per configuration
|
|
49
|
+
- Provides helpful error messages guiding the agent to the staging workflow
|
|
58
50
|
|
|
59
51
|
## Why a Plugin?
|
|
60
52
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soulguard/openclaw",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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": "^0.1.
|
|
13
|
+
"@soulguard/core": "^0.1.3"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@types/bun": "latest",
|