@claw-link/gateway-host 0.1.1 → 0.1.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/bin/cli.js +2 -2
- package/package.json +2 -1
package/bin/cli.js
CHANGED
|
@@ -42,7 +42,7 @@ async function main() {
|
|
|
42
42
|
console.log([
|
|
43
43
|
'ClawLink Host Gateway',
|
|
44
44
|
'',
|
|
45
|
-
'Usage:
|
|
45
|
+
'Usage: gateway-host <command>',
|
|
46
46
|
' install Install the background service (one-time)',
|
|
47
47
|
' add-agent Add an agent by pasting its Host Token (pulls runtime from ClawLink)',
|
|
48
48
|
' setup install + add-agent in one flow (default)',
|
|
@@ -54,7 +54,7 @@ async function main() {
|
|
|
54
54
|
return;
|
|
55
55
|
|
|
56
56
|
default:
|
|
57
|
-
console.error(`Unknown command '${cmd}'. Try:
|
|
57
|
+
console.error(`Unknown command '${cmd}'. Try: gateway-host help`);
|
|
58
58
|
process.exit(1);
|
|
59
59
|
}
|
|
60
60
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claw-link/gateway-host",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "ClawLink Host Gateway — a secure, outbound-only worker that bridges a local agent CLI (OpenClaw, Hermes, Claude, Codex, Cursor) to your ClawLink agents. No inbound ports; authenticated per-agent by a Host Token.",
|
|
5
5
|
"homepage": "https://claw-link.co",
|
|
6
6
|
"bin": {
|
|
7
|
+
"gateway-host": "bin/cli.js",
|
|
7
8
|
"claw-host": "bin/cli.js"
|
|
8
9
|
},
|
|
9
10
|
"scripts": {
|