aae-protocol 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 +8 -0
- package/index.js +4 -0
- package/package.json +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# aae-protocol (name reservation)
|
|
2
|
+
|
|
3
|
+
Placeholder reserving the `aae-protocol` name for **Accountable Agentic
|
|
4
|
+
Execution** — a protocol for governing what AI agents do.
|
|
5
|
+
|
|
6
|
+
This 0.0.1 release contains no implementation. The real SDK lands at 0.7.0+.
|
|
7
|
+
|
|
8
|
+
Project: https://github.com/r3moteBee/aae
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aae-protocol",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Accountable Agentic Execution — name reservation placeholder (see repository)",
|
|
5
|
+
"license": "MIT OR Apache-2.0",
|
|
6
|
+
"author": "Brent Ellis <brent@r3motely.com>",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/r3moteBee/aae.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/r3moteBee/aae",
|
|
12
|
+
"keywords": ["agent", "ai", "governance", "policy", "audit", "aae"],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./index.js",
|
|
15
|
+
"files": ["index.js", "README.md"],
|
|
16
|
+
"engines": { "node": ">=20" }
|
|
17
|
+
}
|