-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.81 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "shellward",
"version": "0.5.10",
"description": "AI agent security & MCP security middleware — prompt injection detection, AI firewall, runtime guardrails & data-loss prevention for LLM tool calls. 8-layer defense against data exfiltration & dangerous commands. Zero dependencies. SDK + OpenClaw plugin. Supports LangChain, AutoGPT, Claude Code, Cursor, OpenAI Agents.",
"keywords": [
"shellward",
"ai-security",
"ai-agent",
"security-middleware",
"prompt-injection",
"llm-security",
"data-protection",
"data-exfiltration",
"dlp",
"guardrails",
"langchain",
"autogpt",
"openai",
"cursor",
"openclaw",
"sdk",
"PII",
"agent-security",
"mcp-security",
"mcp",
"claude-code",
"ai-safety",
"ai-firewall",
"tool-call-security",
"runtime-security",
"agent-guard",
"data-loss-prevention",
"chinese-pii",
"injection-detection"
],
"author": "jnMetaCode",
"license": "Apache-2.0",
"homepage": "https://github.com/jnMetaCode/shellward#readme",
"repository": {
"type": "git",
"url": "https://github.com/jnMetaCode/shellward"
},
"type": "module",
"main": "src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"test": "npx tsx test-integration.ts && npx tsx test-edge-cases.ts && npx tsx test-sdk.ts",
"test:integration": "npx tsx test-integration.ts",
"test:edge": "npx tsx test-edge-cases.ts",
"test:sdk": "npx tsx test-sdk.ts"
},
"openclaw": {
"extensions": [
"./src/index.ts"
]
},
"files": [
"src/",
"skills/",
"openclaw.plugin.json",
"vuln-db.json",
"install.sh",
"install.ps1",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
}
}