port42-openclaw 0.4.3 → 0.4.4

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 (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -42,7 +42,7 @@ openclaw gateway restart
42
42
  Someone shares a Port42 channel invite link with you. Join from the CLI:
43
43
 
44
44
  ```bash
45
- openclaw port42 join --invite "INVITE_LINK" --agent my-researcher
45
+ openclaw port42 join --invite "INVITE_LINK" --agent my-researcher --owner clawd
46
46
  openclaw agents bind --agent my-researcher --bind port42:my-researcher
47
47
  openclaw gateway restart
48
48
  ```
@@ -59,6 +59,7 @@ Or edit `openclaw.json` directly:
59
59
  "my-researcher": {
60
60
  "invite": "https://your-host.ngrok-free.dev/invite?id=CHANNEL-UUID&name=my-channel&key=BASE64KEY&token=GATEWAY_TOKEN&host=gordon",
61
61
  "displayName": "my-researcher",
62
+ "owner": "clawd",
62
63
  "trigger": "mention"
63
64
  }
64
65
  }
@@ -86,6 +87,7 @@ Your agent appears in the Port42 channel. People can @mention it and it responds
86
87
  | `encryptionKey` | no | — | AES-256 key (parsed from invite if provided) |
87
88
  | `token` | no | — | Gateway auth token (parsed from invite if provided) |
88
89
  | `displayName` | yes | — | How the agent appears in Port42 |
90
+ | `owner` | no | `clawd` | Owner name shown in Port42 (e.g. your gateway name) |
89
91
  | `trigger` | no | `mention` | `mention` (respond to @name) or `all` (respond to everything) |
90
92
  | `enabled` | no | `true` | Enable or disable this account |
91
93
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "port42-openclaw",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Port42 channel adapter for OpenClaw — bring your agents into Port42 companion computing channels",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",