shellward 0.3.2 → 0.3.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 +5 -5
- package/openclaw.plugin.json +1 -1
- package/package.json +6 -3
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ShellWard
|
|
2
2
|
|
|
3
|
-
**First bilingual (EN/ZH) security plugin for OpenClaw** — prompt injection detection
|
|
3
|
+
**First bilingual (EN/ZH) security plugin for OpenClaw** — the only plugin with Chinese prompt injection detection & Chinese PII redaction (ID card, phone, bank card). 8 defense layers, zero dependencies.
|
|
4
4
|
|
|
5
5
|
[中文说明](#中文说明) | [English](#english)
|
|
6
6
|
|
|
@@ -42,12 +42,12 @@ ShellWard protects your OpenClaw agent with 8 defense layers:
|
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
44
|
# Linux / macOS
|
|
45
|
-
curl -fsSL https://raw.githubusercontent.com/jnMetaCode/
|
|
45
|
+
curl -fsSL https://raw.githubusercontent.com/jnMetaCode/shellward/main/install.sh | bash
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
```powershell
|
|
49
49
|
# Windows PowerShell
|
|
50
|
-
irm https://raw.githubusercontent.com/jnMetaCode/
|
|
50
|
+
irm https://raw.githubusercontent.com/jnMetaCode/shellward/main/install.ps1 | iex
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
**Or install manually:**
|
|
@@ -240,12 +240,12 @@ ShellWard 通过 8 层防御保护你的 OpenClaw 智能体:
|
|
|
240
240
|
|
|
241
241
|
```bash
|
|
242
242
|
# Linux / macOS
|
|
243
|
-
curl -fsSL https://raw.githubusercontent.com/jnMetaCode/
|
|
243
|
+
curl -fsSL https://raw.githubusercontent.com/jnMetaCode/shellward/main/install.sh | bash
|
|
244
244
|
```
|
|
245
245
|
|
|
246
246
|
```powershell
|
|
247
247
|
# Windows PowerShell
|
|
248
|
-
irm https://raw.githubusercontent.com/jnMetaCode/
|
|
248
|
+
irm https://raw.githubusercontent.com/jnMetaCode/shellward/main/install.ps1 | iex
|
|
249
249
|
```
|
|
250
250
|
|
|
251
251
|
**手动安装:**
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "shellward",
|
|
3
3
|
"name": "ShellWard",
|
|
4
4
|
"description": "First bilingual (EN/ZH) security plugin for OpenClaw — injection detection, dangerous operation blocking, PII/secret redaction (incl. Chinese ID card, phone, bank card), audit logging",
|
|
5
|
-
"version": "0.3.
|
|
5
|
+
"version": "0.3.4",
|
|
6
6
|
"skills": ["./skills"],
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"type": "object",
|
package/package.json
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shellward",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "First bilingual (EN/ZH) security plugin for OpenClaw — injection detection, dangerous
|
|
3
|
+
"version": "0.3.4",
|
|
4
|
+
"description": "First bilingual (EN/ZH) security plugin for OpenClaw — Chinese PII detection (ID card/phone/bank card), prompt injection detection (13 ZH + 12 EN rules), dangerous command blocking, audit logging. Zero dependencies.",
|
|
5
5
|
"keywords": [
|
|
6
|
+
"shellward",
|
|
6
7
|
"openclaw",
|
|
7
8
|
"security",
|
|
8
9
|
"plugin",
|
|
9
10
|
"injection-detection",
|
|
10
11
|
"pii-redaction",
|
|
12
|
+
"ai-security",
|
|
11
13
|
"chinese",
|
|
12
14
|
"bilingual"
|
|
13
15
|
],
|
|
14
16
|
"author": "jnMetaCode",
|
|
15
17
|
"license": "Apache-2.0",
|
|
18
|
+
"homepage": "https://github.com/jnMetaCode/shellward#readme",
|
|
16
19
|
"repository": {
|
|
17
20
|
"type": "git",
|
|
18
|
-
"url": "https://github.com/jnMetaCode/
|
|
21
|
+
"url": "https://github.com/jnMetaCode/shellward"
|
|
19
22
|
},
|
|
20
23
|
"type": "module",
|
|
21
24
|
"main": "src/index.ts",
|
package/src/index.ts
CHANGED