aicq-chat-plugin 3.8.1 → 3.9.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/README.md +80 -80
- package/SKILL.md +78 -78
- package/cli.cjs +356 -356
- package/index.js +417 -375
- package/lib/chat.js +854 -749
- package/lib/crypto.js +168 -168
- package/lib/database.js +455 -455
- package/lib/file-transfer.js +266 -266
- package/lib/handshake.js +147 -147
- package/lib/identity.js +165 -165
- package/lib/package.json +3 -3
- package/lib/server-client.js +380 -337
- package/openclaw.plugin.json +170 -168
- package/package.json +87 -87
- package/postinstall.cjs +27 -27
- package/public/favicon.ico +0 -0
- package/public/icon-16.png +0 -0
- package/public/icon-32.png +0 -0
- package/public/index.html +1468 -1468
- package/public/logo-512.png +0 -0
- package/setup-entry.js +14 -14
- package/src/channel.js +616 -613
- package/src/ui-routes.js +647 -594
package/public/logo-512.png
CHANGED
|
File without changes
|
package/setup-entry.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* AICQ Chat Plugin — Setup Wizard Entry Point
|
|
3
|
-
*
|
|
4
|
-
* Provides the setup-safe entry for OpenClaw's config / onboarding paths.
|
|
5
|
-
* Uses defineSetupPluginEntry from the official Channel Plugin SDK.
|
|
6
|
-
*
|
|
7
|
-
* This entry is loaded when the channel is disabled or unconfigured.
|
|
8
|
-
* It avoids pulling in heavy runtime code (database, transports, etc.).
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
import { defineSetupPluginEntry } from "openclaw/plugin-sdk/channel-core";
|
|
12
|
-
import { aicqChatPlugin } from "./src/channel.js";
|
|
13
|
-
|
|
14
|
-
export default defineSetupPluginEntry(aicqChatPlugin);
|
|
1
|
+
/**
|
|
2
|
+
* AICQ Chat Plugin — Setup Wizard Entry Point
|
|
3
|
+
*
|
|
4
|
+
* Provides the setup-safe entry for OpenClaw's config / onboarding paths.
|
|
5
|
+
* Uses defineSetupPluginEntry from the official Channel Plugin SDK.
|
|
6
|
+
*
|
|
7
|
+
* This entry is loaded when the channel is disabled or unconfigured.
|
|
8
|
+
* It avoids pulling in heavy runtime code (database, transports, etc.).
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
import { defineSetupPluginEntry } from "openclaw/plugin-sdk/channel-core";
|
|
12
|
+
import { aicqChatPlugin } from "./src/channel.js";
|
|
13
|
+
|
|
14
|
+
export default defineSetupPluginEntry(aicqChatPlugin);
|