openclaw-seatalk 0.2.0 → 0.2.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 (2) hide show
  1. package/README.md +2 -5
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -87,14 +87,11 @@ openclaw plugins install -l .
87
87
 
88
88
  ## Upgrading
89
89
 
90
- Regular upgrade:
91
-
92
90
  ```bash
93
- openclaw update
91
+ openclaw plugins update openclaw-seatalk
92
+ openclaw gateway restart
94
93
  ```
95
94
 
96
- `openclaw update` automatically upgrades both OpenClaw and installed plugins.
97
-
98
95
  Upgrading OpenClaw across the 2026.3.22 SDK boundary (e.g. 2026.3.13 -> 2026.3.22):
99
96
 
100
97
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-seatalk",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "OpenClaw SeaTalk channel plugin",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -46,7 +46,6 @@
46
46
  },
47
47
  "openclaw": {
48
48
  "extensions": ["./index.ts"],
49
- "setupEntry": "./setup-entry.ts",
50
49
  "channel": {
51
50
  "id": "seatalk",
52
51
  "label": "SeaTalk",
@@ -58,6 +57,9 @@
58
57
  "install": {
59
58
  "npmSpec": "openclaw-seatalk",
60
59
  "defaultChoice": "npm"
60
+ },
61
+ "compat": {
62
+ "pluginApi": ">=2026.3.22"
61
63
  }
62
64
  }
63
65
  }