ai-warden 0.0.1
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 +19 -0
- package/bin/aiwarden.js +4 -0
- package/index.js +6 -0
- package/package.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# AI-Warden
|
|
2
|
+
|
|
3
|
+
🚧 **Package name reserved - Full release coming soon!**
|
|
4
|
+
|
|
5
|
+
AI-Warden is a prompt injection security scanner for LLM applications.
|
|
6
|
+
|
|
7
|
+
**Status:** v0.0.1 placeholder (name reservation)
|
|
8
|
+
|
|
9
|
+
**Coming soon:**
|
|
10
|
+
- Detect prompt injection attacks
|
|
11
|
+
- CI/CD integration
|
|
12
|
+
- Salesforce Einstein GPT support
|
|
13
|
+
- Real-time scanning API
|
|
14
|
+
|
|
15
|
+
**Repository:** https://github.com/ai-warden
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
*This package is under active development. Star the repo to get notified when we launch!*
|
package/bin/aiwarden.js
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ai-warden",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "AI security scanner - Detect prompt injection attacks before they reach production",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"aiwarden": "./bin/aiwarden.js"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"ai",
|
|
11
|
+
"security",
|
|
12
|
+
"prompt-injection",
|
|
13
|
+
"llm",
|
|
14
|
+
"scanner",
|
|
15
|
+
"warden"
|
|
16
|
+
],
|
|
17
|
+
"author": "AI-Warden Security",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/ai-warden/scanner"
|
|
22
|
+
}
|
|
23
|
+
}
|