openclaw-groupme 0.4.0 → 0.4.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.
- package/README.md +7 -1
- package/package.json +11 -4
package/README.md
CHANGED
|
@@ -5,7 +5,13 @@ An [OpenClaw](https://github.com/oddrationale/openclaw) channel plugin that brin
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
openclaw plugins install openclaw-groupme
|
|
8
|
+
openclaw plugins install clawhub:openclaw-groupme
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
You can also install directly from npm if you want npm to be the explicit source:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
openclaw plugins install npm:openclaw-groupme
|
|
9
15
|
```
|
|
10
16
|
|
|
11
17
|
After installing, restart the gateway so it picks up the new plugin:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-groupme",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "OpenClaw GroupMe channel plugin",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -36,12 +36,13 @@
|
|
|
36
36
|
"zod": ">=4.3.6 <5"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
39
|
+
"@types/node": "20.19.41",
|
|
40
|
+
"openclaw": "2026.2.26",
|
|
41
|
+
"typescript": "^6.0.3",
|
|
41
42
|
"vitest": "^4.0.18"
|
|
42
43
|
},
|
|
43
44
|
"peerDependencies": {
|
|
44
|
-
"openclaw": ">=2026.2.26"
|
|
45
|
+
"openclaw": ">=2026.2.26 <2026.6.0"
|
|
45
46
|
},
|
|
46
47
|
"peerDependenciesMeta": {
|
|
47
48
|
"openclaw": {
|
|
@@ -52,6 +53,12 @@
|
|
|
52
53
|
"extensions": [
|
|
53
54
|
"./index.ts"
|
|
54
55
|
],
|
|
56
|
+
"compat": {
|
|
57
|
+
"pluginApi": ">=2026.2.26 <2026.6.0"
|
|
58
|
+
},
|
|
59
|
+
"build": {
|
|
60
|
+
"openclawVersion": "2026.2.26"
|
|
61
|
+
},
|
|
55
62
|
"channel": {
|
|
56
63
|
"id": "groupme",
|
|
57
64
|
"label": "GroupMe",
|