aicq-chat-plugin 2.5.4 → 2.5.5
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/SKILL.md +1 -1
- package/cli.js +1 -1
- package/openclaw.plugin.json +17 -5
- package/package.json +10 -2
- package/postinstall.js +1 -1
package/SKILL.md
CHANGED
package/cli.js
CHANGED
|
@@ -223,7 +223,7 @@ function installToDir(sourceDir, targetDir, version) {
|
|
|
223
223
|
function installToOpenClaw() {
|
|
224
224
|
const PLUGIN_ID = 'aicq-chat';
|
|
225
225
|
const sourceDir = path.resolve(__dirname);
|
|
226
|
-
let version = '2.5.
|
|
226
|
+
let version = '2.5.5';
|
|
227
227
|
|
|
228
228
|
// Read version from package.json
|
|
229
229
|
try {
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "aicq-chat",
|
|
3
3
|
"name": "AICQ Encrypted Chat",
|
|
4
|
-
"version": "2.5.
|
|
5
|
-
"description": "End-to-end encrypted chat plugin for OpenClaw agents
|
|
4
|
+
"version": "2.5.5",
|
|
5
|
+
"description": "End-to-end encrypted chat plugin for OpenClaw agents \u2014 Node.js implementation with full UI",
|
|
6
6
|
"entry": "index.js",
|
|
7
7
|
"activation": {
|
|
8
8
|
"onStartup": true
|
|
9
9
|
},
|
|
10
10
|
"enabledByDefault": true,
|
|
11
11
|
"contracts": {
|
|
12
|
-
"tools": [
|
|
12
|
+
"tools": [
|
|
13
|
+
"chat-friend",
|
|
14
|
+
"chat-send",
|
|
15
|
+
"chat-export-key"
|
|
16
|
+
],
|
|
13
17
|
"gateway": [
|
|
14
18
|
"aicq.status",
|
|
15
19
|
"aicq.friends.list",
|
|
@@ -36,12 +40,20 @@
|
|
|
36
40
|
},
|
|
37
41
|
"sidecar": {
|
|
38
42
|
"command": "node",
|
|
39
|
-
"args": [
|
|
43
|
+
"args": [
|
|
44
|
+
"index.js"
|
|
45
|
+
],
|
|
40
46
|
"port": 6109
|
|
41
47
|
},
|
|
42
48
|
"runtime": "node",
|
|
43
49
|
"requires": {
|
|
44
50
|
"node": ">=18.0.0",
|
|
45
|
-
"packages": [
|
|
51
|
+
"packages": [
|
|
52
|
+
"better-sqlite3",
|
|
53
|
+
"tweetnacl",
|
|
54
|
+
"ws",
|
|
55
|
+
"qrcode",
|
|
56
|
+
"express"
|
|
57
|
+
]
|
|
46
58
|
}
|
|
47
59
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aicq-chat-plugin",
|
|
3
|
-
"version": "2.5.
|
|
4
|
-
"description": "AICQ End-to-end Encrypted Chat Plugin for OpenClaw
|
|
3
|
+
"version": "2.5.5",
|
|
4
|
+
"description": "AICQ End-to-end Encrypted Chat Plugin for OpenClaw \u2014 Full UI with friend management, group chat, file transfer, and AI agent communication",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"aicq-plugin": "cli.js"
|
|
@@ -56,5 +56,13 @@
|
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
58
|
"node": ">=18.0.0"
|
|
59
|
+
},
|
|
60
|
+
"openclaw": {
|
|
61
|
+
"extensions": [
|
|
62
|
+
"./index.js"
|
|
63
|
+
],
|
|
64
|
+
"compat": {
|
|
65
|
+
"pluginApi": ">=2026.3.24-beta.2"
|
|
66
|
+
}
|
|
59
67
|
}
|
|
60
68
|
}
|
package/postinstall.js
CHANGED
|
@@ -269,7 +269,7 @@ console.log(' ╚════════════════════
|
|
|
269
269
|
console.log('');
|
|
270
270
|
|
|
271
271
|
// Read version from package.json
|
|
272
|
-
let version = '2.5.
|
|
272
|
+
let version = '2.5.5';
|
|
273
273
|
try {
|
|
274
274
|
const pkg = JSON.parse(fs.readFileSync(path.join(PLUGIN_DIR, 'package.json'), 'utf8'));
|
|
275
275
|
version = pkg.version;
|