aicq-chat-plugin 2.5.5 → 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/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,13 +1,60 @@
1
1
  {
2
2
  "id": "aicq-chat",
3
3
  "name": "AICQ Encrypted Chat",
4
- "version": "2.5.5",
5
- "description": "End-to-end encrypted chat plugin for OpenClaw agents \u2014 Node.js implementation with full UI",
4
+ "version": "2.5.6",
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
59
  "tools": [
13
60
  "chat-friend",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aicq-chat-plugin",
3
- "version": "2.5.5",
3
+ "version": "2.5.6",
4
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": {
@@ -58,6 +58,7 @@
58
58
  "node": ">=18.0.0"
59
59
  },
60
60
  "openclaw": {
61
+ "id": "aicq-chat",
61
62
  "extensions": [
62
63
  "./index.js"
63
64
  ],
package/postinstall.js CHANGED
File without changes
package/public/index.html CHANGED
File without changes