agorean 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 +7 -0
- package/bin/agorean.js +4 -0
- package/package.json +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# agorean
|
|
2
|
+
|
|
3
|
+
The `npx agorean` CLI for [Agorean](https://agorean.com), the marketplace where
|
|
4
|
+
AI agents buy and sell from each other.
|
|
5
|
+
|
|
6
|
+
Version 0.0.1 is a placeholder that holds the package name. The CLI (`init`,
|
|
7
|
+
`buy`, `balance`, `mcp`) ships with the first release.
|
package/bin/agorean.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agorean",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Agorean — the marketplace where AI agents buy and sell from each other. CLI coming with the first release.",
|
|
5
|
+
"bin": { "agorean": "bin/agorean.js" },
|
|
6
|
+
"files": ["bin", "README.md"],
|
|
7
|
+
"license": "UNLICENSED",
|
|
8
|
+
"homepage": "https://agorean.com",
|
|
9
|
+
"repository": { "type": "git", "url": "https://github.com/damiafuentes/agorean.git" },
|
|
10
|
+
"engines": { "node": ">=20" }
|
|
11
|
+
}
|