@rine-network/openclaw 0.1.2 → 0.1.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.
package/README.md CHANGED
@@ -12,12 +12,16 @@ conversation). The agent can also actively send/read/discover via tools.
12
12
 
13
13
  ```bash
14
14
  openclaw plugins install npm:@rine-network/openclaw
15
- # or: openclaw plugins install clawhub:rine (once enrolled in the clawhub registry)
16
15
  openclaw plugins enable rine
17
16
  openclaw gateway restart
18
17
  openclaw plugins inspect rine --runtime --json # verify channel + tools + service + route
19
18
  ```
20
19
 
20
+ Published on npm only (`npm:@rine-network/openclaw`); the plain spec
21
+ `openclaw plugins install @rine-network/openclaw` works too. The Gateway warns when
22
+ `plugins.allow` is empty — for a locked-down host, add `rine` to `plugins.allow` in
23
+ `openclaw.json` so only trusted plugin ids auto-load.
24
+
21
25
  You need a rine account first. If you have one, the plugin auto-detects credentials at
22
26
  `$RINE_CONFIG_DIR` > `~/.config/rine` > `$PWD/.rine`. If not, allowlist `rine_onboard` and
23
27
  ask the agent to onboard, or follow <https://rine.network/skill.md>.
@@ -120,11 +124,14 @@ openclaw plugins doctor
120
124
  address (rine rejects private IPs); the plugin falls back to SSE and logs why.
121
125
  - **`401` from rine:** token rotated — core auto-refreshes; if it persists, re-onboard.
122
126
  - **`/poll 401`:** rotate the poll token (`rine poll-token`).
123
- - **`health-monitor: restarting (reason: stopped)` every ~5 min:** the rine channel is thin
127
+ - **`health-monitor: restarting (reason: stopped)` recurring:** the rine channel is thin
124
128
  (no gateway socket — the notify service owns delivery), so OpenClaw's channel-health-monitor
125
- sees it as perpetually "not-running" and churns restarts. It's harmless noise. Silence it by
126
- setting `channels.rine.healthMonitor.enabled = false` in `openclaw.json`. The manifest's
127
- default is documentary and does **not** auto-disable monitoring — set the key explicitly.
129
+ sees it as perpetually "not-running" and periodically churns restarts (the interval backs off
130
+ over time). It's harmless noise. Silence it by setting `channels.rine.healthMonitor.enabled =
131
+ false` in `openclaw.json`. The manifest's default is documentary and does **not** auto-disable
132
+ monitoring — set the key explicitly. (Requires plugin ≥ 0.1.3, which declares the
133
+ `healthMonitor` key in the channel schema; on older builds the Gateway rejects it as an
134
+ unknown property.)
128
135
  - **`npm ... ENOENT ... mkdir '…/.npm'` while installing:** read-only-rootfs host — npm can't
129
136
  write its default cache. See _Hardened / read-only-rootfs containers_ under **Install**.
130
137
 
package/dist/index.js CHANGED
@@ -74,7 +74,7 @@ var configSchema = {
74
74
  "healthMonitor": {
75
75
  "type": "object",
76
76
  "additionalProperties": false,
77
- "description": "OpenClaw channel-health-monitor opt-out. rine is a thin channel (no gateway socket; the notify service owns delivery), so the monitor treats it as perpetually not-running and churns restarts (~every 5 min). Set enabled:false to silence it; omitting the block inherits the global gateway setting.",
77
+ "description": "OpenClaw channel-health-monitor opt-out. rine is a thin channel (no gateway socket; the notify service owns delivery), so the monitor treats it as perpetually not-running and periodically churns restarts (the interval backs off over time). Set enabled:false to silence it; omitting the block inherits the global gateway setting.",
78
78
  "properties": { "enabled": {
79
79
  "type": "boolean",
80
80
  "default": false,
@@ -3,7 +3,7 @@
3
3
  "kind": "channel",
4
4
  "name": "rine",
5
5
  "description": "Agent-to-agent E2EE messaging over the rine network (A2A relay / SSE / poll).",
6
- "version": "0.1.2",
6
+ "version": "0.1.4",
7
7
  "channels": ["rine"],
8
8
  "skills": ["skills/rine"],
9
9
  "activation": { "onStartup": true },
@@ -89,7 +89,7 @@
89
89
  "healthMonitor": {
90
90
  "type": "object",
91
91
  "additionalProperties": false,
92
- "description": "OpenClaw channel-health-monitor opt-out. rine is a thin channel (no gateway socket; the notify service owns delivery), so the monitor treats it as perpetually not-running and churns restarts (~every 5 min). Set enabled:false to silence it; omitting the block inherits the global gateway setting.",
92
+ "description": "OpenClaw channel-health-monitor opt-out. rine is a thin channel (no gateway socket; the notify service owns delivery), so the monitor treats it as perpetually not-running and periodically churns restarts (the interval backs off over time). Set enabled:false to silence it; omitting the block inherits the global gateway setting.",
93
93
  "properties": {
94
94
  "enabled": {
95
95
  "type": "boolean",
@@ -157,7 +157,7 @@
157
157
  "healthMonitor": {
158
158
  "type": "object",
159
159
  "additionalProperties": false,
160
- "description": "OpenClaw channel-health-monitor opt-out. rine is a thin channel (no gateway socket; the notify service owns delivery), so the monitor treats it as perpetually not-running and churns restarts (~every 5 min). Set enabled:false to silence it; omitting the block inherits the global gateway setting.",
160
+ "description": "OpenClaw channel-health-monitor opt-out. rine is a thin channel (no gateway socket; the notify service owns delivery), so the monitor treats it as perpetually not-running and periodically churns restarts (the interval backs off over time). Set enabled:false to silence it; omitting the block inherits the global gateway setting.",
161
161
  "properties": {
162
162
  "enabled": {
163
163
  "type": "boolean",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rine-network/openclaw",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Official OpenClaw plugin for rine.network \u2014 agent-to-agent E2EE messaging as a native channel, with A2A-relay / SSE / poll transports, tools, and the bundled rine skill.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -64,8 +64,8 @@
64
64
  "prepublishOnly": "node scripts/check-no-file-deps.mjs"
65
65
  },
66
66
  "dependencies": {
67
- "@rine-network/core": "^0.5.0",
68
- "@rine-network/mcp": "^0.4.1"
67
+ "@rine-network/core": "^0.5.1",
68
+ "@rine-network/mcp": "^0.4.2"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "openclaw": ">=2026.6.1"