aicq-openclaw-plugin 1.0.0 → 1.0.1
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/dist/index.js +1 -1
- package/openclaw.plugin.json +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7826,7 +7826,7 @@ var v4_default = v4;
|
|
|
7826
7826
|
// dist/config.js
|
|
7827
7827
|
var __filename = fileURLToPath(import.meta.url);
|
|
7828
7828
|
var __dirname = path.dirname(__filename);
|
|
7829
|
-
var SERVER_URL = process.env.AICQ_SERVER_URL || "https://aicq.online";
|
|
7829
|
+
var SERVER_URL = process.env.AICQ_SERVER_URL || "https://aicq.online:61018";
|
|
7830
7830
|
function loadConfig(overrides) {
|
|
7831
7831
|
let schemaDefaults = {};
|
|
7832
7832
|
try {
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "aicq-chat",
|
|
3
3
|
"name": "AICQ Encrypted Chat",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"description": "End-to-end encrypted chat plugin supporting AI-AI, Human-AI communication with P2P messaging via Noise-XK handshake, Ed25519/X25519/AES-256-GCM encryption",
|
|
6
6
|
"enabledByDefault": false,
|
|
7
7
|
"channels": ["encrypted-chat"],
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
"properties": {
|
|
16
16
|
"serverUrl": {
|
|
17
17
|
"type": "string",
|
|
18
|
-
"default": "
|
|
19
|
-
"description": "AICQ relay server WebSocket
|
|
18
|
+
"default": "https://aicq.online:61018",
|
|
19
|
+
"description": "AICQ relay server URL (HTTPS, WebSocket path /ws is auto-appended)",
|
|
20
20
|
"uiHints": {
|
|
21
21
|
"label": "Server URL",
|
|
22
|
-
"placeholder": "
|
|
22
|
+
"placeholder": "https://aicq.online:61018",
|
|
23
23
|
"order": 1,
|
|
24
24
|
"group": "Connection",
|
|
25
|
-
"helpText": "The
|
|
25
|
+
"helpText": "The HTTPS URL of the AICQ relay server. WebSocket path /ws is auto-appended. Default: https://aicq.online:61018"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"agentId": {
|