@aka_openclaw_plugin/mychat 0.1.3 → 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/{api.js → dist/api.js} +1 -1
- package/dist/channel-D_abyn0t.js +946 -0
- package/dist/channel-plugin-api.js +2 -0
- package/dist/config-api.js +3 -0
- package/{channel-Dbv-np-3.js → dist/config-schema-C42X7OSY.js} +23 -966
- package/dist/openclaw.plugin.json +15 -0
- package/dist/package.json +68 -0
- package/dist/runtime-setter-api.js +5 -0
- package/dist/setup-entry.js +2 -0
- package/package.json +13 -8
- package/channel-plugin-api.js +0 -2
- package/setup-entry.js +0 -2
- /package/{index.js → dist/index.js} +0 -0
- /package/{runtime-7z_VfQ27.js → dist/runtime-7z_VfQ27.js} +0 -0
- /package/{runtime-api.js → dist/runtime-api.js} +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "mychat",
|
|
3
|
+
"activation": {
|
|
4
|
+
"onStartup": false
|
|
5
|
+
},
|
|
6
|
+
"channels": ["mychat"],
|
|
7
|
+
"channelEnvVars": {
|
|
8
|
+
"mychat": ["MYCHAT_BOT_TOKEN"]
|
|
9
|
+
},
|
|
10
|
+
"configSchema": {
|
|
11
|
+
"type": "object",
|
|
12
|
+
"additionalProperties": false,
|
|
13
|
+
"properties": {}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aka_openclaw_plugin/mychat",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "OpenClaw MyChat channel plugin",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/havcino/openclaw.git"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./index.js",
|
|
12
|
+
"./channel-plugin-api.js": "./channel-plugin-api.js",
|
|
13
|
+
"./runtime-setter-api.js": "./runtime-setter-api.js",
|
|
14
|
+
"./runtime-api.js": "./runtime-api.js",
|
|
15
|
+
"./config-api.js": "./config-api.js"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"zod": "4.4.3"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@openclaw/plugin-sdk": "workspace:*",
|
|
22
|
+
"openclaw": "workspace:*"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"openclaw": ">=2026.5.18"
|
|
26
|
+
},
|
|
27
|
+
"peerDependenciesMeta": {
|
|
28
|
+
"openclaw": {
|
|
29
|
+
"optional": true
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"openclaw": {
|
|
33
|
+
"extensions": [
|
|
34
|
+
"./index.ts"
|
|
35
|
+
],
|
|
36
|
+
"channel": {
|
|
37
|
+
"id": "mychat",
|
|
38
|
+
"label": "MyChat",
|
|
39
|
+
"selectionLabel": "MyChat",
|
|
40
|
+
"detailLabel": "MyChat",
|
|
41
|
+
"docsPath": "/channels/mychat",
|
|
42
|
+
"docsLabel": "mychat",
|
|
43
|
+
"blurb": "MyChat private messaging channel.",
|
|
44
|
+
"systemImage": "chat",
|
|
45
|
+
"order": 120
|
|
46
|
+
},
|
|
47
|
+
"install": {
|
|
48
|
+
"npmSpec": "@aka_openclaw_plugin/mychat",
|
|
49
|
+
"defaultChoice": "npm",
|
|
50
|
+
"minHostVersion": ">=2026.5.18"
|
|
51
|
+
},
|
|
52
|
+
"compat": {
|
|
53
|
+
"pluginApi": ">=2026.5.18"
|
|
54
|
+
},
|
|
55
|
+
"build": {
|
|
56
|
+
"openclawVersion": "2026.5.18"
|
|
57
|
+
},
|
|
58
|
+
"release": {
|
|
59
|
+
"publishToClawHub": true,
|
|
60
|
+
"publishToNpm": true
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"dist/**",
|
|
65
|
+
"openclaw.plugin.json",
|
|
66
|
+
"README.md"
|
|
67
|
+
]
|
|
68
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aka_openclaw_plugin/mychat",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "OpenClaw MyChat channel plugin",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,15 +8,19 @@
|
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"exports": {
|
|
11
|
-
".": "./index.
|
|
12
|
-
"./channel-plugin-api.js": "./channel-plugin-api.
|
|
13
|
-
"./runtime-setter-api.js": "./runtime-setter-api.
|
|
14
|
-
"./runtime-api.js": "./runtime-api.
|
|
15
|
-
"./config-api.js": "./config-api.
|
|
11
|
+
".": "./index.js",
|
|
12
|
+
"./channel-plugin-api.js": "./channel-plugin-api.js",
|
|
13
|
+
"./runtime-setter-api.js": "./runtime-setter-api.js",
|
|
14
|
+
"./runtime-api.js": "./runtime-api.js",
|
|
15
|
+
"./config-api.js": "./config-api.js"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"zod": "4.4.3"
|
|
19
19
|
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@openclaw/plugin-sdk": "workspace:*",
|
|
22
|
+
"openclaw": "workspace:*"
|
|
23
|
+
},
|
|
20
24
|
"peerDependencies": {
|
|
21
25
|
"openclaw": ">=2026.5.18"
|
|
22
26
|
},
|
|
@@ -57,7 +61,8 @@
|
|
|
57
61
|
}
|
|
58
62
|
},
|
|
59
63
|
"files": [
|
|
60
|
-
"
|
|
61
|
-
"openclaw.plugin.json"
|
|
64
|
+
"dist/**",
|
|
65
|
+
"openclaw.plugin.json",
|
|
66
|
+
"README.md"
|
|
62
67
|
]
|
|
63
68
|
}
|
package/channel-plugin-api.js
DELETED
package/setup-entry.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|