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.
Files changed (32) hide show
  1. package/dist/plugin-sdk/index.js +7 -7
  2. package/package.json +1 -1
  3. /package/extensions/bluebubbles/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  4. /package/extensions/copilot-proxy/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  5. /package/extensions/diagnostics-otel/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  6. /package/extensions/discord/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  7. /package/extensions/feishu/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  8. /package/extensions/google-antigravity-auth/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  9. /package/extensions/google-gemini-cli-auth/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  10. /package/extensions/googlechat/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  11. /package/extensions/imessage/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  12. /package/extensions/line/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  13. /package/extensions/llm-task/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  14. /package/extensions/lobster/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  15. /package/extensions/matrix/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  16. /package/extensions/mattermost/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  17. /package/extensions/memory-core/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  18. /package/extensions/minimax-portal-auth/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  19. /package/extensions/msteams/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  20. /package/extensions/nextcloud-talk/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  21. /package/extensions/nostr/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  22. /package/extensions/open-prose/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  23. /package/extensions/qwen-portal-auth/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  24. /package/extensions/signal/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  25. /package/extensions/slack/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  26. /package/extensions/telegram/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  27. /package/extensions/tlon/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  28. /package/extensions/twitch/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  29. /package/extensions/voice-call/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  30. /package/extensions/whatsapp/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  31. /package/extensions/zalo/{synurex.plugin.json → skykoi.plugin.json} +0 -0
  32. /package/extensions/zalouser/{synurex.plugin.json → skykoi.plugin.json} +0 -0
@@ -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 json5 from "json5";
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 = json5.parse(raw)?.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) => json5.parse(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 ?? 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$1 = json5) {
10706
+ function parseConfigJson5(raw, json5 = JSON5) {
10707
10707
  try {
10708
10708
  return {
10709
10709
  ok: true,
10710
- parsed: json5$1.parse(raw)
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 = json5.parse(raw);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skykoi",
3
- "version": "2026.3.9",
3
+ "version": "2026.3.10",
4
4
  "description": "SkyKoi — AI agent runtime. Multi-channel gateway CLI with RPC agent. Forked from SkyKoi.",
5
5
  "keywords": [
6
6
  "skykoi",