skykoi 2026.3.340 → 2026.3.341
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/build-info.json +3 -3
- package/dist/canvas-host/a2ui/.bundle.hash +1 -1
- package/dist/{config-guard-BUqZzzk4.js → config-guard-1SLsR8TB.js} +9 -1
- package/dist/entry.js +1 -1
- package/dist/index.js +2 -2
- package/dist/plugin-sdk/index.js +3 -3
- package/dist/{program-Debrr07Q.js → program-CM6e1XIi.js} +2 -6
- package/dist/{run-main-Dz44r7PK.js → run-main-C1NPPxWl.js} +3 -3
- package/extensions/bluebubbles/package.json +1 -1
- package/extensions/copilot-proxy/package.json +1 -1
- package/extensions/diagnostics-otel/package.json +1 -1
- package/extensions/discord/package.json +1 -1
- package/extensions/feishu/package.json +1 -1
- package/extensions/google-antigravity-auth/package.json +1 -1
- package/extensions/google-gemini-cli-auth/package.json +1 -1
- package/extensions/googlechat/package.json +1 -1
- package/extensions/imessage/package.json +1 -1
- package/extensions/line/package.json +1 -1
- package/extensions/llm-task/package.json +1 -1
- package/extensions/lobster/package.json +1 -1
- package/extensions/matrix/CHANGELOG.md +5 -0
- package/extensions/matrix/package.json +1 -1
- package/extensions/mattermost/package.json +1 -1
- package/extensions/memory-core/package.json +1 -1
- package/extensions/memory-lancedb/package.json +1 -1
- package/extensions/minimax-portal-auth/package.json +1 -1
- package/extensions/msteams/CHANGELOG.md +5 -0
- package/extensions/msteams/package.json +1 -1
- package/extensions/nextcloud-talk/package.json +1 -1
- package/extensions/nostr/CHANGELOG.md +5 -0
- package/extensions/nostr/package.json +1 -1
- package/extensions/open-prose/package.json +1 -1
- package/extensions/signal/package.json +1 -1
- package/extensions/slack/package.json +1 -1
- package/extensions/telegram/package.json +1 -1
- package/extensions/tlon/package.json +1 -1
- package/extensions/twitch/CHANGELOG.md +5 -0
- package/extensions/twitch/package.json +1 -1
- package/extensions/voice-call/CHANGELOG.md +5 -0
- package/extensions/voice-call/package.json +1 -1
- package/extensions/whatsapp/package.json +1 -1
- package/extensions/zalo/CHANGELOG.md +5 -0
- package/extensions/zalo/package.json +1 -1
- package/extensions/zalouser/CHANGELOG.md +5 -0
- package/extensions/zalouser/package.json +1 -1
- package/package.json +1 -1
package/dist/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
7d35a7ff9a36192b38190e3c754ef38c673e6b24de75d9bc72fed648834efffd
|
|
@@ -5503,6 +5503,14 @@ function findRoutedCommand(path) {
|
|
|
5503
5503
|
return null;
|
|
5504
5504
|
}
|
|
5505
5505
|
|
|
5506
|
+
//#endregion
|
|
5507
|
+
//#region src/cli/plugin-cli-commands.ts
|
|
5508
|
+
const PLUGIN_CLI_COMMANDS = new Set([
|
|
5509
|
+
"message",
|
|
5510
|
+
"channels",
|
|
5511
|
+
"directory"
|
|
5512
|
+
]);
|
|
5513
|
+
|
|
5506
5514
|
//#endregion
|
|
5507
5515
|
//#region src/cli/program/config-guard.ts
|
|
5508
5516
|
const ALLOWED_INVALID_COMMANDS = new Set([
|
|
@@ -5595,4 +5603,4 @@ async function ensureConfigReady(params) {
|
|
|
5595
5603
|
}
|
|
5596
5604
|
|
|
5597
5605
|
//#endregion
|
|
5598
|
-
export {
|
|
5606
|
+
export { registerProgramCommands as i, PLUGIN_CLI_COMMANDS as n, findRoutedCommand as r, ensureConfigReady as t };
|
package/dist/entry.js
CHANGED
|
@@ -247,7 +247,7 @@ if (!ensureExperimentalWarningSuppressed()) {
|
|
|
247
247
|
applyCliProfileEnv({ profile: parsed.profile });
|
|
248
248
|
process$1.argv = parsed.argv;
|
|
249
249
|
}
|
|
250
|
-
import("./run-main-
|
|
250
|
+
import("./run-main-C1NPPxWl.js").then(({ runCli }) => runCli(process$1.argv)).catch((error) => {
|
|
251
251
|
console.error("[SKYKOI] Failed to start CLI:", error instanceof Error ? error.stack ?? error.message : error);
|
|
252
252
|
process$1.exitCode = 1;
|
|
253
253
|
});
|
package/dist/index.js
CHANGED
|
@@ -73,7 +73,7 @@ import { t as isMainModule } from "./is-main-DZvllFzQ.js";
|
|
|
73
73
|
import { t as ensureSKYKOICliOnPath } from "./path-env-C7V3KfE6.js";
|
|
74
74
|
import { t as assertSupportedRuntime } from "./runtime-guard-DHvhwccg.js";
|
|
75
75
|
import "./ports-BamXUQot.js";
|
|
76
|
-
import "./config-guard-
|
|
76
|
+
import "./config-guard-1SLsR8TB.js";
|
|
77
77
|
import "./logging-BYKu4FCl.js";
|
|
78
78
|
import "./note-JXsKJ6Xp.js";
|
|
79
79
|
import "./clack-prompter-t8CaZFBV.js";
|
|
@@ -118,7 +118,7 @@ import "./service-audit-HStmtL1x.js";
|
|
|
118
118
|
import "./hooks-status-CEe-RaiY.js";
|
|
119
119
|
import "./tui-BI8Lmspl.js";
|
|
120
120
|
import "./channel-options-yVVJPj4e.js";
|
|
121
|
-
import { n as buildProgram } from "./program-
|
|
121
|
+
import { n as buildProgram } from "./program-CM6e1XIi.js";
|
|
122
122
|
import process from "node:process";
|
|
123
123
|
import { fileURLToPath } from "node:url";
|
|
124
124
|
|
package/dist/plugin-sdk/index.js
CHANGED
|
@@ -33,7 +33,7 @@ import { exec as exec$1 } from "child_process";
|
|
|
33
33
|
import { createReadStream as createReadStream$1, createWriteStream as createWriteStream$1, promises as promises$1 } from "fs";
|
|
34
34
|
import { Readable, Transform } from "stream";
|
|
35
35
|
import { platform, release, tmpdir as tmpdir$1 } from "os";
|
|
36
|
-
import EventEmitter
|
|
36
|
+
import EventEmitter, { EventEmitter as EventEmitter$1, once } from "events";
|
|
37
37
|
import { promisify as promisify$1 } from "util";
|
|
38
38
|
import { join as join$1 } from "path";
|
|
39
39
|
import * as Crypto from "crypto";
|
|
@@ -228306,7 +228306,7 @@ const BUFFERABLE_EVENT_SET = new Set([
|
|
|
228306
228306
|
* making the data processing more efficient.
|
|
228307
228307
|
*/
|
|
228308
228308
|
const makeEventBuffer = (logger) => {
|
|
228309
|
-
const ev = new EventEmitter
|
|
228309
|
+
const ev = new EventEmitter();
|
|
228310
228310
|
const historyCache = /* @__PURE__ */ new Set();
|
|
228311
228311
|
let data = makeBufferData();
|
|
228312
228312
|
let isBuffering = false;
|
|
@@ -233876,7 +233876,7 @@ var BinaryInfo = class {
|
|
|
233876
233876
|
|
|
233877
233877
|
//#endregion
|
|
233878
233878
|
//#region node_modules/.pnpm/@whiskeysockets+baileys@7.0.0-rc.9_audio-decode@2.2.3_sharp@0.34.5/node_modules/@whiskeysockets/baileys/lib/Socket/Client/types.js
|
|
233879
|
-
var AbstractSocketClient = class extends EventEmitter {
|
|
233879
|
+
var AbstractSocketClient = class extends EventEmitter$1 {
|
|
233880
233880
|
constructor(url, config) {
|
|
233881
233881
|
super();
|
|
233882
233882
|
this.url = url;
|
|
@@ -5,7 +5,7 @@ import { n as replaceCliName, r as resolveCliName } from "./command-format-DOYW_
|
|
|
5
5
|
import { t as isTruthyEnvValue } from "./env-ChCKTuXK.js";
|
|
6
6
|
import { t as VERSION } from "./version-BKRSzdyx.js";
|
|
7
7
|
import { t as formatDocsLink } from "./links-DLPVdfTL.js";
|
|
8
|
-
import {
|
|
8
|
+
import { i as registerProgramCommands, n as PLUGIN_CLI_COMMANDS, t as ensureConfigReady } from "./config-guard-1SLsR8TB.js";
|
|
9
9
|
import { a as getCommandPath, d as hasHelpOrVersion, l as getVerboseFlag } from "./register.subclis-hGo_4GqB.js";
|
|
10
10
|
import { t as ensurePluginRegistryLoaded } from "./plugin-registry-DiLPdufR.js";
|
|
11
11
|
import { a as hasEmittedCliBanner, i as formatCliBannerLine, r as emitCliBanner } from "./tui-BI8Lmspl.js";
|
|
@@ -80,11 +80,7 @@ function setProcessTitleForCommand(actionCommand) {
|
|
|
80
80
|
if (!name || name === cliName) return;
|
|
81
81
|
process.title = `${cliName}-${name}`;
|
|
82
82
|
}
|
|
83
|
-
const PLUGIN_REQUIRED_COMMANDS =
|
|
84
|
-
"message",
|
|
85
|
-
"channels",
|
|
86
|
-
"directory"
|
|
87
|
-
]);
|
|
83
|
+
const PLUGIN_REQUIRED_COMMANDS = PLUGIN_CLI_COMMANDS;
|
|
88
84
|
function registerPreActionHooks(program, programVersion) {
|
|
89
85
|
program.hook("preAction", async (_thisCommand, actionCommand) => {
|
|
90
86
|
setProcessTitleForCommand(actionCommand);
|
|
@@ -70,7 +70,7 @@ import "./deps-B1uCRuzU.js";
|
|
|
70
70
|
import "./tailscale-D0cB8Nyf.js";
|
|
71
71
|
import { t as ensureSKYKOICliOnPath } from "./path-env-C7V3KfE6.js";
|
|
72
72
|
import { t as assertSupportedRuntime } from "./runtime-guard-DHvhwccg.js";
|
|
73
|
-
import { n as findRoutedCommand, t as ensureConfigReady } from "./config-guard-
|
|
73
|
+
import { n as PLUGIN_CLI_COMMANDS, r as findRoutedCommand, t as ensureConfigReady } from "./config-guard-1SLsR8TB.js";
|
|
74
74
|
import "./logging-BYKu4FCl.js";
|
|
75
75
|
import "./note-JXsKJ6Xp.js";
|
|
76
76
|
import "./clack-prompter-t8CaZFBV.js";
|
|
@@ -167,7 +167,7 @@ async function runCli(argv = process$1.argv) {
|
|
|
167
167
|
assertSupportedRuntime();
|
|
168
168
|
if (await tryRouteCli(normalizedArgv)) return;
|
|
169
169
|
enableConsoleCapture();
|
|
170
|
-
const { buildProgram } = await import("./program-
|
|
170
|
+
const { buildProgram } = await import("./program-CM6e1XIi.js").then((n) => n.t);
|
|
171
171
|
const program = buildProgram();
|
|
172
172
|
installUnhandledRejectionHandler();
|
|
173
173
|
process$1.on("uncaughtException", (error) => {
|
|
@@ -203,7 +203,7 @@ async function runCli(argv = process$1.argv) {
|
|
|
203
203
|
const { registerSubCliByName } = await import("./register.subclis-hGo_4GqB.js").then((n) => n.i);
|
|
204
204
|
await registerSubCliByName(program, primary);
|
|
205
205
|
}
|
|
206
|
-
if (
|
|
206
|
+
if (!!primary && PLUGIN_CLI_COMMANDS.has(primary)) {
|
|
207
207
|
const { registerPluginCliCommands } = await import("./cli-if-Ko0qj.js");
|
|
208
208
|
const { loadConfig } = await import("./config-CPGRZ_aH.js").then((n) => n.t);
|
|
209
209
|
registerPluginCliCommands(program, loadConfig());
|