@opena2a/oasb 0.1.0 → 0.1.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 +10 -10
- package/package.json +19 -3
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
> **[OpenA2A](https://opena2a.org)**: [AIM](https://github.com/opena2a-org/agent-identity-management) · [HackMyAgent](https://github.com/opena2a-org/hackmyagent) · [OASB](https://github.com/opena2a-org/oasb) · [ARP](https://github.com/opena2a-org/arp) · [Secretless](https://github.com/opena2a-org/secretless-ai) · [DVAA](https://github.com/opena2a-org/damn-vulnerable-ai-agent)
|
|
2
|
+
|
|
1
3
|
# OASB — Open Agent Security Benchmark
|
|
2
4
|
|
|
3
5
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
@@ -275,13 +277,11 @@ Apache-2.0
|
|
|
275
277
|
|
|
276
278
|
## OpenA2A Ecosystem
|
|
277
279
|
|
|
278
|
-
| Project |
|
|
279
|
-
|
|
280
|
-
| [**
|
|
281
|
-
| [**HackMyAgent**](https://github.com/opena2a-org/hackmyagent) |
|
|
282
|
-
| [**
|
|
283
|
-
| [**
|
|
284
|
-
| [**Secretless AI**](https://github.com/opena2a-org/secretless-ai) | Keep credentials out of AI context windows |
|
|
285
|
-
| [**DVAA**](https://github.com/opena2a-org/damn-vulnerable-ai-agent) |
|
|
286
|
-
|
|
287
|
-
[Website](https://opena2a.org) · [OASB](https://oasb.ai) · [Discord](https://discord.gg/uRZa3KXgEn) · [Email](mailto:info@opena2a.org)
|
|
280
|
+
| Project | Description | Install |
|
|
281
|
+
|---------|-------------|---------|
|
|
282
|
+
| [**AIM**](https://github.com/opena2a-org/agent-identity-management) | Agent Identity Management -- identity and access control for AI agents | `pip install aim-sdk` |
|
|
283
|
+
| [**HackMyAgent**](https://github.com/opena2a-org/hackmyagent) | Security scanner -- 147 checks, attack mode, auto-fix | `npx hackmyagent secure` |
|
|
284
|
+
| [**OASB**](https://github.com/opena2a-org/oasb) | Open Agent Security Benchmark -- 182 attack scenarios | `npm install @opena2a/oasb` |
|
|
285
|
+
| [**ARP**](https://github.com/opena2a-org/arp) | Agent Runtime Protection -- process, network, filesystem monitoring | `npm install @opena2a/arp` |
|
|
286
|
+
| [**Secretless AI**](https://github.com/opena2a-org/secretless-ai) | Keep credentials out of AI context windows | `npx secretless-ai init` |
|
|
287
|
+
| [**DVAA**](https://github.com/opena2a-org/damn-vulnerable-ai-agent) | Damn Vulnerable AI Agent -- security training and red-teaming | `docker pull opena2a/dvaa` |
|
package/package.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opena2a/oasb",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Open Agent Security Benchmark — 182 attack scenarios mapped to MITRE ATLAS and OWASP Agentic Top 10",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"src",
|
|
10
|
+
"config",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
8
14
|
"scripts": {
|
|
9
15
|
"build": "tsc",
|
|
10
16
|
"test": "vitest run",
|
|
@@ -25,7 +31,17 @@
|
|
|
25
31
|
"engines": {
|
|
26
32
|
"node": ">=18.0.0"
|
|
27
33
|
},
|
|
28
|
-
"keywords": [
|
|
34
|
+
"keywords": [
|
|
35
|
+
"ai",
|
|
36
|
+
"agent",
|
|
37
|
+
"security",
|
|
38
|
+
"benchmark",
|
|
39
|
+
"oasb",
|
|
40
|
+
"mitre-atlas",
|
|
41
|
+
"evaluation",
|
|
42
|
+
"runtime-protection",
|
|
43
|
+
"opena2a"
|
|
44
|
+
],
|
|
29
45
|
"repository": {
|
|
30
46
|
"type": "git",
|
|
31
47
|
"url": "https://github.com/opena2a-org/oasb.git"
|