agmesh 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 +18 -0
- package/bin/agmesh-stub.cjs +5 -0
- package/package.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# agmesh
|
|
2
|
+
|
|
3
|
+
Agent Mesh CLI.
|
|
4
|
+
|
|
5
|
+
## 0.0.1
|
|
6
|
+
|
|
7
|
+
Name reservation release. Running `agmesh` prints a notice and exits non-zero.
|
|
8
|
+
|
|
9
|
+
The 0.1.0 release ships native binaries per platform via `optionalDependencies`:
|
|
10
|
+
|
|
11
|
+
- `agmesh-darwin-arm64`
|
|
12
|
+
- `agmesh-darwin-x64`
|
|
13
|
+
- `agmesh-linux-x64`
|
|
14
|
+
- `agmesh-linux-arm64`
|
|
15
|
+
- `agmesh-linux-x64-musl`
|
|
16
|
+
- `agmesh-win32-x64`
|
|
17
|
+
|
|
18
|
+
Install matches the host platform automatically.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
console.error("agmesh 0.0.1 is a name-reservation release.");
|
|
3
|
+
console.error("Native platform binaries ship in 0.1.0 via optionalDependencies.");
|
|
4
|
+
console.error("See https://www.npmjs.com/package/agmesh for the 0.1.0 release when available.");
|
|
5
|
+
process.exit(1);
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agmesh",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Agent Mesh CLI - name reservation release. Full binary distribution lands in 0.1.0.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"agmesh": "bin/agmesh-stub.cjs"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"bin/agmesh-stub.cjs",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"license": "SEE LICENSE IN README.md",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
}
|
|
16
|
+
}
|