aicq-chat-plugin 2.5.4 → 2.5.6

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
File without changes
package/SKILL.md CHANGED
@@ -4,7 +4,7 @@ description: AICQ End-to-end Encrypted Chat Plugin for OpenClaw — Full UI with
4
4
  license: MIT
5
5
  metadata:
6
6
  author: AICQ
7
- version: "2.5.2"
7
+ version: "2.5.5"
8
8
  ---
9
9
 
10
10
  # AICQ Encrypted Chat
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.2';
226
+ let version = '2.5.5';
227
227
 
228
228
  // Read version from package.json
229
229
  try {
package/index.js CHANGED
File without changes
package/lib/chat.js CHANGED
File without changes
package/lib/crypto.js CHANGED
File without changes
package/lib/database.js CHANGED
File without changes
File without changes
package/lib/handshake.js CHANGED
File without changes
package/lib/identity.js CHANGED
File without changes
File without changes
@@ -1,15 +1,66 @@
1
1
  {
2
2
  "id": "aicq-chat",
3
3
  "name": "AICQ Encrypted Chat",
4
- "version": "2.5.4",
4
+ "version": "2.5.6",
5
5
  "description": "End-to-end encrypted chat plugin for OpenClaw agents — 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
+ "configSchema": {
12
+ "type": "object",
13
+ "additionalProperties": false,
14
+ "properties": {
15
+ "enabled": {
16
+ "type": "boolean",
17
+ "description": "Enable the AICQ chat plugin (default: true).",
18
+ "default": true
19
+ },
20
+ "port": {
21
+ "type": "number",
22
+ "description": "Port for the AICQ sidecar server (default: 6109).",
23
+ "default": 6109,
24
+ "minimum": 1024,
25
+ "maximum": 65535
26
+ },
27
+ "autoStart": {
28
+ "type": "boolean",
29
+ "description": "Automatically start the sidecar server on gateway startup (default: true).",
30
+ "default": true
31
+ },
32
+ "debug": {
33
+ "type": "boolean",
34
+ "description": "Enable verbose debug logging (default: false).",
35
+ "default": false
36
+ }
37
+ }
38
+ },
39
+ "uiHints": {
40
+ "enabled": {
41
+ "label": "Enable AICQ",
42
+ "help": "Toggle the AICQ encrypted chat plugin on or off."
43
+ },
44
+ "port": {
45
+ "label": "Sidecar Port",
46
+ "help": "The port the AICQ sidecar server listens on."
47
+ },
48
+ "autoStart": {
49
+ "label": "Auto Start",
50
+ "help": "Start the AICQ server automatically when OpenClaw gateway starts."
51
+ },
52
+ "debug": {
53
+ "label": "Debug Mode",
54
+ "help": "Enable verbose logging for troubleshooting.",
55
+ "advanced": true
56
+ }
57
+ },
11
58
  "contracts": {
12
- "tools": ["chat-friend", "chat-send", "chat-export-key"],
59
+ "tools": [
60
+ "chat-friend",
61
+ "chat-send",
62
+ "chat-export-key"
63
+ ],
13
64
  "gateway": [
14
65
  "aicq.status",
15
66
  "aicq.friends.list",
@@ -36,12 +87,20 @@
36
87
  },
37
88
  "sidecar": {
38
89
  "command": "node",
39
- "args": ["index.js"],
90
+ "args": [
91
+ "index.js"
92
+ ],
40
93
  "port": 6109
41
94
  },
42
95
  "runtime": "node",
43
96
  "requires": {
44
97
  "node": ">=18.0.0",
45
- "packages": ["better-sqlite3", "tweetnacl", "ws", "qrcode", "express"]
98
+ "packages": [
99
+ "better-sqlite3",
100
+ "tweetnacl",
101
+ "ws",
102
+ "qrcode",
103
+ "express"
104
+ ]
46
105
  }
47
106
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aicq-chat-plugin",
3
- "version": "2.5.4",
4
- "description": "AICQ End-to-end Encrypted Chat Plugin for OpenClaw Full UI with friend management, group chat, file transfer, and AI agent communication",
3
+ "version": "2.5.6",
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,14 @@
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=18.0.0"
59
+ },
60
+ "openclaw": {
61
+ "id": "aicq-chat",
62
+ "extensions": [
63
+ "./index.js"
64
+ ],
65
+ "compat": {
66
+ "pluginApi": ">=2026.3.24-beta.2"
67
+ }
59
68
  }
60
69
  }
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.2';
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;
package/public/index.html CHANGED
File without changes