skykoi 2026.3.9 → 2026.3.10
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/plugin-sdk/index.js +7 -7
- package/package.json +1 -1
- /package/extensions/bluebubbles/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/copilot-proxy/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/diagnostics-otel/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/discord/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/feishu/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/google-antigravity-auth/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/google-gemini-cli-auth/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/googlechat/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/imessage/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/line/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/llm-task/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/lobster/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/matrix/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/mattermost/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/memory-core/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/minimax-portal-auth/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/msteams/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/nextcloud-talk/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/nostr/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/open-prose/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/qwen-portal-auth/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/signal/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/slack/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/telegram/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/tlon/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/twitch/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/voice-call/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/whatsapp/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/zalo/{synurex.plugin.json → skykoi.plugin.json} +0 -0
- /package/extensions/zalouser/{synurex.plugin.json → skykoi.plugin.json} +0 -0
package/dist/plugin-sdk/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import os, { homedir } from "node:os";
|
|
|
5
5
|
import path from "node:path";
|
|
6
6
|
import fs, { createWriteStream, existsSync, statSync } from "node:fs";
|
|
7
7
|
import { Logger } from "tslog";
|
|
8
|
-
import
|
|
8
|
+
import JSON5 from "json5";
|
|
9
9
|
import chalk, { Chalk } from "chalk";
|
|
10
10
|
import fs$1 from "node:fs/promises";
|
|
11
11
|
import { execFile, execFileSync, spawn } from "node:child_process";
|
|
@@ -2250,7 +2250,7 @@ function readLoggingConfig() {
|
|
|
2250
2250
|
try {
|
|
2251
2251
|
if (!fs.existsSync(configPath)) return;
|
|
2252
2252
|
const raw = fs.readFileSync(configPath, "utf-8");
|
|
2253
|
-
const logging =
|
|
2253
|
+
const logging = JSON5.parse(raw)?.logging;
|
|
2254
2254
|
if (!logging || typeof logging !== "object" || Array.isArray(logging)) return;
|
|
2255
2255
|
return logging;
|
|
2256
2256
|
} catch {
|
|
@@ -8054,7 +8054,7 @@ var IncludeProcessor = class IncludeProcessor {
|
|
|
8054
8054
|
};
|
|
8055
8055
|
const defaultResolver = {
|
|
8056
8056
|
readFile: (p) => fs.readFileSync(p, "utf-8"),
|
|
8057
|
-
parseJson: (raw) =>
|
|
8057
|
+
parseJson: (raw) => JSON5.parse(raw)
|
|
8058
8058
|
};
|
|
8059
8059
|
/**
|
|
8060
8060
|
* Resolves all $include directives in a parsed config object.
|
|
@@ -10696,18 +10696,18 @@ function resolveConfigPathForDeps(deps) {
|
|
|
10696
10696
|
function normalizeDeps(overrides = {}) {
|
|
10697
10697
|
return {
|
|
10698
10698
|
fs: overrides.fs ?? fs,
|
|
10699
|
-
json5: overrides.json5 ??
|
|
10699
|
+
json5: overrides.json5 ?? JSON5,
|
|
10700
10700
|
env: overrides.env ?? process.env,
|
|
10701
10701
|
homedir: overrides.homedir ?? os.homedir,
|
|
10702
10702
|
configPath: overrides.configPath ?? "",
|
|
10703
10703
|
logger: overrides.logger ?? console
|
|
10704
10704
|
};
|
|
10705
10705
|
}
|
|
10706
|
-
function parseConfigJson5(raw, json5
|
|
10706
|
+
function parseConfigJson5(raw, json5 = JSON5) {
|
|
10707
10707
|
try {
|
|
10708
10708
|
return {
|
|
10709
10709
|
ok: true,
|
|
10710
|
-
parsed: json5
|
|
10710
|
+
parsed: json5.parse(raw)
|
|
10711
10711
|
};
|
|
10712
10712
|
} catch (err) {
|
|
10713
10713
|
return {
|
|
@@ -11204,7 +11204,7 @@ function loadSessionStore(storePath, opts = {}) {
|
|
|
11204
11204
|
let mtimeMs = getFileMtimeMs(storePath);
|
|
11205
11205
|
try {
|
|
11206
11206
|
const raw = fs.readFileSync(storePath, "utf-8");
|
|
11207
|
-
const parsed =
|
|
11207
|
+
const parsed = JSON5.parse(raw);
|
|
11208
11208
|
if (isSessionStoreRecord(parsed)) store = parsed;
|
|
11209
11209
|
mtimeMs = getFileMtimeMs(storePath) ?? mtimeMs;
|
|
11210
11210
|
} catch {}
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|