dorkos 0.24.0 → 0.25.0

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/bin/cli.js CHANGED
@@ -14454,6 +14454,10 @@ var init_config_schema = __esm({
14454
14454
  defaultDirectory: external_exports.string().default("~/.dork/agents"),
14455
14455
  defaultAgent: external_exports.string().default("dorkbot")
14456
14456
  }).default(() => ({ defaultDirectory: "~/.dork/agents", defaultAgent: "dorkbot" })),
14457
+ extensions: external_exports.object({
14458
+ /** Extension IDs that the user has explicitly enabled. */
14459
+ enabled: external_exports.array(external_exports.string()).default(() => [])
14460
+ }).default(() => ({ enabled: [] })),
14457
14461
  sessionSecret: external_exports.string().nullable().default(null)
14458
14462
  });
14459
14463
  LOG_LEVEL_MAP = {
@@ -18951,12 +18955,12 @@ Examples:
18951
18955
  process.exit(0);
18952
18956
  }
18953
18957
  if (values.version) {
18954
- console.log("0.24.0");
18958
+ console.log("0.25.0");
18955
18959
  process.exit(0);
18956
18960
  }
18957
18961
  if (values["post-install-check"]) {
18958
18962
  checkClaude();
18959
- console.log(`dorkos ${"0.24.0"}`);
18963
+ console.log(`dorkos ${"0.25.0"}`);
18960
18964
  console.log("Installation verified.");
18961
18965
  process.exit(0);
18962
18966
  }
@@ -19066,7 +19070,7 @@ await import("../server/index.js");
19066
19070
  var port = process.env.DORKOS_PORT || String(DEFAULT_PORT);
19067
19071
  var localUrl = `http://localhost:${port}`;
19068
19072
  console.log("");
19069
- console.log(` DorkOS v${"0.24.0"}`);
19073
+ console.log(` DorkOS v${"0.25.0"}`);
19070
19074
  console.log(` Local: ${link(localUrl, localUrl)}`);
19071
19075
  var nets = networkInterfaces();
19072
19076
  var networkUrl = null;
@@ -19137,9 +19141,9 @@ if (process.stdin.isTTY) {
19137
19141
  }
19138
19142
  });
19139
19143
  }
19140
- checkForUpdate("0.24.0").then((latestVersion) => {
19144
+ checkForUpdate("0.25.0").then((latestVersion) => {
19141
19145
  if (latestVersion) {
19142
- const msg = `Update available: ${"0.24.0"} \u2192 ${latestVersion}`;
19146
+ const msg = `Update available: ${"0.25.0"} \u2192 ${latestVersion}`;
19143
19147
  const cmd = "Run npm install -g dorkos@latest to update";
19144
19148
  const width = Math.max(msg.length, cmd.length) + 6;
19145
19149
  const pad = (s2) => `\u2502 ${s2}${" ".repeat(width - s2.length - 6)} \u2502`;