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 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!*
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log('AI-Warden v0.0.1');
3
+ console.log('Package name reserved. Full scanner coming soon!');
4
+ console.log('Visit: https://github.com/ai-warden');
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ module.exports = {
2
+ version: '0.0.1',
3
+ scan: () => {
4
+ console.log('AI-Warden scanner - Coming soon!');
5
+ }
6
+ };
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
+ }