dorkos 0.20.0 → 0.22.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
@@ -14359,7 +14359,7 @@ var init_config_schema = __esm({
14359
14359
  "../shared/src/config-schema.ts"() {
14360
14360
  init_zod();
14361
14361
  SENSITIVE_CONFIG_KEYS = ["tunnel.authtoken", "tunnel.auth"];
14362
- ONBOARDING_STEPS = ["discovery", "pulse", "adapters"];
14362
+ ONBOARDING_STEPS = ["meet-dorkbot", "discovery", "pulse", "adapters"];
14363
14363
  OnboardingStepSchema = external_exports.enum(ONBOARDING_STEPS);
14364
14364
  OnboardingStateSchema = external_exports.object({
14365
14365
  completedSteps: external_exports.array(OnboardingStepSchema).default(() => []),
@@ -14433,7 +14433,11 @@ var init_config_schema = __esm({
14433
14433
  maxFileSize: 10 * 1024 * 1024,
14434
14434
  maxFiles: 10,
14435
14435
  allowedTypes: ["*/*"]
14436
- }))
14436
+ })),
14437
+ agents: external_exports.object({
14438
+ defaultDirectory: external_exports.string().default("~/.dork/agents"),
14439
+ defaultAgent: external_exports.string().default("dorkbot")
14440
+ }).default(() => ({ defaultDirectory: "~/.dork/agents", defaultAgent: "dorkbot" }))
14437
14441
  });
14438
14442
  LOG_LEVEL_MAP = {
14439
14443
  fatal: 0,
@@ -18918,12 +18922,12 @@ Examples:
18918
18922
  process.exit(0);
18919
18923
  }
18920
18924
  if (values.version) {
18921
- console.log("0.20.0");
18925
+ console.log("0.22.0");
18922
18926
  process.exit(0);
18923
18927
  }
18924
18928
  if (values["post-install-check"]) {
18925
18929
  checkClaude();
18926
- console.log(`dorkos ${"0.20.0"}`);
18930
+ console.log(`dorkos ${"0.22.0"}`);
18927
18931
  console.log("Installation verified.");
18928
18932
  process.exit(0);
18929
18933
  }
@@ -19033,7 +19037,7 @@ await import("../server/index.js");
19033
19037
  var port = process.env.DORKOS_PORT || String(DEFAULT_PORT);
19034
19038
  var localUrl = `http://localhost:${port}`;
19035
19039
  console.log("");
19036
- console.log(` DorkOS v${"0.20.0"}`);
19040
+ console.log(` DorkOS v${"0.22.0"}`);
19037
19041
  console.log(` Local: ${link(localUrl, localUrl)}`);
19038
19042
  var nets = networkInterfaces();
19039
19043
  var networkUrl = null;
@@ -19104,9 +19108,9 @@ if (process.stdin.isTTY) {
19104
19108
  }
19105
19109
  });
19106
19110
  }
19107
- checkForUpdate("0.20.0").then((latestVersion) => {
19111
+ checkForUpdate("0.22.0").then((latestVersion) => {
19108
19112
  if (latestVersion) {
19109
- const msg = `Update available: ${"0.20.0"} \u2192 ${latestVersion}`;
19113
+ const msg = `Update available: ${"0.22.0"} \u2192 ${latestVersion}`;
19110
19114
  const cmd = "Run npm install -g dorkos@latest to update";
19111
19115
  const width = Math.max(msg.length, cmd.length) + 6;
19112
19116
  const pad = (s2) => `\u2502 ${s2}${" ".repeat(width - s2.length - 6)} \u2502`;