aicq-openclaw-plugin 1.0.0 → 1.0.2

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 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 {
@@ -10683,9 +10683,13 @@ var MODEL_PROVIDERS = [
10683
10683
  function findOpenClawConfig() {
10684
10684
  const candidates = [
10685
10685
  path5.join(process.cwd(), "openclaw.json"),
10686
+ path5.join(process.cwd(), "stableclaw.json"),
10686
10687
  path5.join(os.homedir(), ".config", "openclaw", "openclaw.json"),
10688
+ path5.join(os.homedir(), ".config", "stableclaw", "stableclaw.json"),
10687
10689
  path5.join(os.homedir(), ".openclaw", "openclaw.json"),
10688
- path5.join(os.homedir(), "openclaw.json")
10690
+ path5.join(os.homedir(), ".stableclaw", "stableclaw.json"),
10691
+ path5.join(os.homedir(), "openclaw.json"),
10692
+ path5.join(os.homedir(), "stableclaw.json")
10689
10693
  ];
10690
10694
  for (const p of candidates) {
10691
10695
  try {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "aicq-chat",
3
3
  "name": "AICQ Encrypted Chat",
4
- "version": "1.0.0",
4
+ "version": "1.0.2",
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": "ws://localhost:3000",
19
- "description": "AICQ relay server WebSocket URL",
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": "ws://localhost:3000",
22
+ "placeholder": "https://aicq.online:61018",
23
23
  "order": 1,
24
24
  "group": "Connection",
25
- "helpText": "The WebSocket URL of the AICQ relay server. For local development, use ws://localhost:3000. For production, use wss://your-server.com."
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": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aicq-openclaw-plugin",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "AICQ OpenClaw plugin - end-to-end encrypted P2P chat for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",