clawlink 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.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/index.js +2 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # ClawLink
2
+
3
+ > Link and communicate between OpenClaw instances across your network.
4
+
5
+ **This package is under active development. Full release coming soon.**
6
+
7
+ - GitHub: https://github.com/silverstreamsAI/ClawNexus
8
+ - Author: alan-silverstreams <alan@silverstream.tech>
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // ClawLink - Coming soon
2
+ // https://github.com/silverstreamsAI/ClawNexus
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "clawlink",
3
+ "version": "0.0.1",
4
+ "description": "Link and communicate between OpenClaw instances across your network",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "openclaw",
8
+ "link",
9
+ "ipc",
10
+ "ai-agent",
11
+ "distributed"
12
+ ],
13
+ "author": "alan-silverstreams <alan@silverstream.tech>",
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/silverstreamsAI/ClawNexus.git"
18
+ },
19
+ "homepage": "https://github.com/silverstreamsAI/ClawNexus",
20
+ "engines": {
21
+ "node": ">=22"
22
+ }
23
+ }