agentaudit 3.9.7 → 3.9.9
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/LICENSE +34 -34
- package/README.md +504 -504
- package/cli.mjs +1716 -1680
- package/index.mjs +605 -603
- package/package.json +45 -45
- package/prompts/audit-prompt.md +663 -663
package/package.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "agentaudit",
|
|
3
|
-
"version": "3.9.
|
|
4
|
-
"description": "Security scanner for AI packages — MCP server + CLI",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"agentaudit": "./cli.mjs"
|
|
8
|
-
},
|
|
9
|
-
"main": "index.mjs",
|
|
10
|
-
"files": [
|
|
11
|
-
"index.mjs",
|
|
12
|
-
"cli.mjs",
|
|
13
|
-
"prompts/audit-prompt.md",
|
|
14
|
-
"LICENSE",
|
|
15
|
-
"README.md"
|
|
16
|
-
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"start": "node index.mjs",
|
|
19
|
-
"scan": "node cli.mjs scan"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"security",
|
|
23
|
-
"audit",
|
|
24
|
-
"mcp",
|
|
25
|
-
"mcp-server",
|
|
26
|
-
"ai-agent",
|
|
27
|
-
"scanner",
|
|
28
|
-
"vulnerability",
|
|
29
|
-
"prompt-injection",
|
|
30
|
-
"agent-security"
|
|
31
|
-
],
|
|
32
|
-
"author": "starbuck100",
|
|
33
|
-
"license": "AGPL-3.0",
|
|
34
|
-
"repository": {
|
|
35
|
-
"type": "git",
|
|
36
|
-
"url": "https://github.com/starbuck100/agentaudit-mcp.git"
|
|
37
|
-
},
|
|
38
|
-
"homepage": "https://agentaudit.dev",
|
|
39
|
-
"engines": {
|
|
40
|
-
"node": ">=18.0.0"
|
|
41
|
-
},
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
44
|
-
}
|
|
45
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "agentaudit",
|
|
3
|
+
"version": "3.9.9",
|
|
4
|
+
"description": "Security scanner for AI packages — MCP server + CLI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"agentaudit": "./cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"main": "index.mjs",
|
|
10
|
+
"files": [
|
|
11
|
+
"index.mjs",
|
|
12
|
+
"cli.mjs",
|
|
13
|
+
"prompts/audit-prompt.md",
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"start": "node index.mjs",
|
|
19
|
+
"scan": "node cli.mjs scan"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"security",
|
|
23
|
+
"audit",
|
|
24
|
+
"mcp",
|
|
25
|
+
"mcp-server",
|
|
26
|
+
"ai-agent",
|
|
27
|
+
"scanner",
|
|
28
|
+
"vulnerability",
|
|
29
|
+
"prompt-injection",
|
|
30
|
+
"agent-security"
|
|
31
|
+
],
|
|
32
|
+
"author": "starbuck100",
|
|
33
|
+
"license": "AGPL-3.0",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/starbuck100/agentaudit-mcp.git"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://agentaudit.dev",
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18.0.0"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
44
|
+
}
|
|
45
|
+
}
|