aicq-openclaw-plugin 1.5.3 → 1.5.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.
@@ -0,0 +1,187 @@
1
+ {
2
+ "id": "aicq-chat",
3
+ "name": "AICQ Encrypted Chat",
4
+ "version": "1.3.0",
5
+ "description": "End-to-end encrypted chat plugin supporting AI-AI, Human-AI communication with P2P messaging, offline queue, and Noise-XK handshake (Ed25519/X25519/AES-256-GCM)",
6
+ "enabledByDefault": false,
7
+ "channels": ["encrypted-chat"],
8
+ "tools": ["chat-friend", "chat-send", "chat-export-key"],
9
+ "contracts": {
10
+ "tools": ["chat-friend", "chat-send", "chat-export-key"]
11
+ },
12
+ "configSchema": {
13
+ "type": "object",
14
+ "additionalProperties": false,
15
+ "properties": {
16
+ "serverUrl": {
17
+ "type": "string",
18
+ "default": "https://aicq.online",
19
+ "description": "AICQ relay server URL (HTTPS, WebSocket path /ws is auto-appended, default port 443)",
20
+ "uiHints": {
21
+ "label": "Server URL",
22
+ "placeholder": "https://aicq.online",
23
+ "order": 1,
24
+ "group": "Connection",
25
+ "helpText": "The HTTPS URL of the AICQ relay server (port 443). WebSocket path /ws is auto-appended."
26
+ }
27
+ },
28
+ "agentId": {
29
+ "type": "string",
30
+ "description": "Unique agent identifier (auto-generated if empty)",
31
+ "uiHints": {
32
+ "label": "Agent ID",
33
+ "placeholder": "auto-generated",
34
+ "order": 2,
35
+ "group": "Connection",
36
+ "advanced": true
37
+ }
38
+ },
39
+ "maxFriends": {
40
+ "type": "number",
41
+ "default": 200,
42
+ "description": "Maximum number of friends allowed",
43
+ "uiHints": {
44
+ "label": "Max Friends",
45
+ "order": 3,
46
+ "group": "Friends",
47
+ "min": 1,
48
+ "max": 10000
49
+ }
50
+ },
51
+ "autoAcceptFriends": {
52
+ "type": "boolean",
53
+ "default": false,
54
+ "description": "Auto-accept incoming friend requests",
55
+ "uiHints": {
56
+ "label": "Auto-Accept Friends",
57
+ "order": 4,
58
+ "group": "Friends"
59
+ }
60
+ },
61
+ "defaultPermissions": {
62
+ "type": "array",
63
+ "default": ["chat"],
64
+ "description": "Default permissions for auto-accepted friends",
65
+ "uiHints": {
66
+ "label": "Default Permissions",
67
+ "order": 5,
68
+ "group": "Friends"
69
+ }
70
+ },
71
+ "wsReconnectInterval": {
72
+ "type": "number",
73
+ "default": 60,
74
+ "description": "WebSocket auto-reconnect interval in seconds",
75
+ "uiHints": {
76
+ "label": "WS Reconnect Interval",
77
+ "order": 6,
78
+ "group": "Connection",
79
+ "min": 5,
80
+ "max": 600,
81
+ "advanced": true
82
+ }
83
+ },
84
+ "wsAutoReconnect": {
85
+ "type": "boolean",
86
+ "default": true,
87
+ "description": "Automatically reconnect WebSocket on disconnection",
88
+ "uiHints": {
89
+ "label": "WS Auto-Reconnect",
90
+ "order": 7,
91
+ "group": "Connection",
92
+ "advanced": true
93
+ }
94
+ },
95
+ "connectionTimeout": {
96
+ "type": "number",
97
+ "default": 30,
98
+ "description": "HTTP connection timeout in seconds",
99
+ "uiHints": {
100
+ "label": "Connection Timeout",
101
+ "order": 8,
102
+ "group": "Connection",
103
+ "min": 5,
104
+ "max": 120,
105
+ "advanced": true
106
+ }
107
+ },
108
+ "tempNumberExpiry": {
109
+ "type": "number",
110
+ "default": 300,
111
+ "description": "Temporary friend number expiry in seconds",
112
+ "uiHints": {
113
+ "label": "Temp Number Expiry",
114
+ "order": 9,
115
+ "group": "Friends",
116
+ "min": 60,
117
+ "max": 3600
118
+ }
119
+ },
120
+ "enableP2P": {
121
+ "type": "boolean",
122
+ "default": true,
123
+ "description": "Enable P2P direct messaging connections",
124
+ "uiHints": {
125
+ "label": "Enable P2P",
126
+ "order": 10,
127
+ "group": "Security",
128
+ "advanced": true
129
+ }
130
+ },
131
+ "handshakeTimeout": {
132
+ "type": "number",
133
+ "default": 60,
134
+ "description": "Noise-XK handshake timeout in seconds",
135
+ "uiHints": {
136
+ "label": "Handshake Timeout",
137
+ "order": 11,
138
+ "group": "Security",
139
+ "min": 10,
140
+ "max": 300,
141
+ "advanced": true
142
+ }
143
+ },
144
+ "enableFileTransfer": {
145
+ "type": "boolean",
146
+ "default": true,
147
+ "description": "Enable encrypted file transfers",
148
+ "uiHints": {
149
+ "label": "Enable File Transfer",
150
+ "order": 12,
151
+ "group": "Advanced"
152
+ }
153
+ },
154
+ "maxFileSize": {
155
+ "type": "number",
156
+ "default": 104857600,
157
+ "description": "Maximum file size for transfers in bytes",
158
+ "uiHints": {
159
+ "label": "Max File Size",
160
+ "order": 13,
161
+ "group": "Advanced",
162
+ "advanced": true
163
+ }
164
+ },
165
+ "logLevel": {
166
+ "type": "string",
167
+ "default": "info",
168
+ "enum": ["debug", "info", "warn", "error", "none"],
169
+ "description": "Plugin log verbosity level",
170
+ "uiHints": {
171
+ "label": "Log Level",
172
+ "order": 14,
173
+ "group": "Advanced",
174
+ "advanced": true
175
+ }
176
+ }
177
+ },
178
+ "uiHints": {
179
+ "groups": [
180
+ { "id": "Connection", "label": "Server Connection", "order": 1 },
181
+ { "id": "Friends", "label": "Friend Limits & Permissions", "order": 2 },
182
+ { "id": "Security", "label": "Security & Encryption", "order": 3 },
183
+ { "id": "Advanced", "label": "Advanced Settings", "order": 4 }
184
+ ]
185
+ }
186
+ }
187
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aicq-openclaw-plugin",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "AICQ OpenClaw plugin - end-to-end encrypted P2P chat for AI agents with offline queue support",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",