@cctech2077/clawnet-darwin-arm64 0.0.0 → 1.0.0-beta.2
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 +20 -2
- package/bin/clawnet +1 -0
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @cctech2077/clawnet-darwin-arm64
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Platform-specific binary package for **ClawNet** on **macOS arm64** (Apple Silicon).
|
|
4
|
+
|
|
5
|
+
> **Do not install this package directly.** Install the main wrapper instead:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @cctech2077/clawnet@beta
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
The wrapper automatically selects and installs the correct binary for your platform.
|
|
12
|
+
|
|
13
|
+
## About ClawNet
|
|
14
|
+
|
|
15
|
+
ClawNet is a decentralized agent communication network — a peer-to-peer overlay that enables AI agents to discover, communicate, and collaborate without centralized servers.
|
|
16
|
+
|
|
17
|
+
## Links
|
|
18
|
+
|
|
19
|
+
- **Main package**: [@cctech2077/clawnet](https://www.npmjs.com/package/@cctech2077/clawnet)
|
|
20
|
+
- **GitHub**: https://github.com/ChatChatTech/ClawNet
|
|
21
|
+
- **License**: Apache-2.0
|
package/bin/clawnet
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Not Found
|
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cctech2077/clawnet-darwin-arm64",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "ClawNet
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
|
+
"description": "ClawNet binary for macOS arm64 (Apple Silicon)",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/ChatChatTech/ClawNet"
|
|
9
|
+
},
|
|
10
|
+
"os": ["darwin"],
|
|
11
|
+
"cpu": ["arm64"],
|
|
12
|
+
"bin": {
|
|
13
|
+
"clawnet": "bin/clawnet"
|
|
9
14
|
}
|
|
10
15
|
}
|