shroud-privacy 2.2.3 → 2.2.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/NOTICE +1 -1
- package/README.md +2 -2
- package/package.json +5 -5
package/NOTICE
CHANGED
|
@@ -2,6 +2,6 @@ Shroud — Privacy Obfuscation for AI Agents
|
|
|
2
2
|
Copyright 2026 Walter Keating
|
|
3
3
|
|
|
4
4
|
This product includes software developed as the Shroud project
|
|
5
|
-
(https://github.com/
|
|
5
|
+
(https://github.com/wkeything/shroud).
|
|
6
6
|
|
|
7
7
|
Licensed under the Apache License, Version 2.0.
|
package/README.md
CHANGED
|
@@ -101,7 +101,7 @@ Other methods: `reset`, `stats`, `health`, `configure`, `shutdown`.
|
|
|
101
101
|
### From source (development)
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
|
-
git clone https://github.com/
|
|
104
|
+
git clone https://github.com/wkeything/shroud.git
|
|
105
105
|
cd shroud
|
|
106
106
|
npm install && npm run build
|
|
107
107
|
openclaw plugins install --path .
|
|
@@ -287,7 +287,7 @@ The **Shroud Enterprise Edition** adds features for teams and regulated environm
|
|
|
287
287
|
- **Provenance tagging** — invisible audit markers in output
|
|
288
288
|
- **Corpus pre-scanning** — batch obfuscation for RAG pipelines
|
|
289
289
|
|
|
290
|
-
Contact for licensing: https://github.com/
|
|
290
|
+
Contact for licensing: https://github.com/wkeything/shroud
|
|
291
291
|
|
|
292
292
|
## Detection intelligence
|
|
293
293
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shroud-privacy",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "Privacy obfuscation for AI agents — detects PII and replaces with deterministic fake values before anything reaches the LLM. Works with OpenClaw (plugin) or any agent (APP protocol).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"openclaw-plugin",
|
|
40
40
|
"app-protocol"
|
|
41
41
|
],
|
|
42
|
-
"author": "
|
|
42
|
+
"author": "wkeything",
|
|
43
43
|
"license": "Apache-2.0",
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
},
|
|
57
57
|
"repository": {
|
|
58
58
|
"type": "git",
|
|
59
|
-
"url": "git+https://github.com/
|
|
59
|
+
"url": "git+https://github.com/wkeything/shroud.git"
|
|
60
60
|
},
|
|
61
|
-
"homepage": "https://github.com/
|
|
61
|
+
"homepage": "https://github.com/wkeything/shroud#readme",
|
|
62
62
|
"bugs": {
|
|
63
|
-
"url": "https://github.com/
|
|
63
|
+
"url": "https://github.com/wkeything/shroud/issues"
|
|
64
64
|
}
|
|
65
65
|
}
|