@useorgx/wizard 0.1.40 → 0.1.42

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/cli.js CHANGED
@@ -11396,7 +11396,8 @@ import { createHash as createHash7, randomUUID as randomUUID2 } from "crypto";
11396
11396
  import { gzipSync } from "zlib";
11397
11397
  var WORK_GRAPH_REPORT_GZIP_THRESHOLD_BYTES = 4e6;
11398
11398
  var WORK_GRAPH_REPORT_CHUNK_UPLOAD_THRESHOLD_BYTES = 5e5;
11399
- var WORK_GRAPH_REPORT_CHUNK_CHARS = 15e4;
11399
+ var WORK_GRAPH_REPORT_CHUNK_CHARS = 3e4;
11400
+ var WORK_GRAPH_REPORT_CHUNK_UPLOAD_TIMEOUT_MS = 3e5;
11400
11401
  function hashText(value) {
11401
11402
  return createHash7("sha256").update(value).digest("hex");
11402
11403
  }
@@ -11486,7 +11487,7 @@ async function publishWorkGraphReportInChunks({
11486
11487
  url
11487
11488
  }) {
11488
11489
  const upload = createWorkGraphReportUploadChunks(payload);
11489
- const uploadSignal = signal ?? AbortSignal.timeout(6e4);
11490
+ const uploadSignal = signal ?? AbortSignal.timeout(WORK_GRAPH_REPORT_CHUNK_UPLOAD_TIMEOUT_MS);
11490
11491
  const startResponse = await postWorkGraphReportJson({
11491
11492
  auth,
11492
11493
  body: {
@@ -13694,7 +13695,7 @@ function printDoctorReport(report, assessment) {
13694
13695
  async function main() {
13695
13696
  const program = new Command();
13696
13697
  program.name("orgx-wizard").description("Add OrgX MCP configs, skills/rules, and companion plugins to your local AI tools.").showHelpAfterError();
13697
- const pkgVersion = true ? "0.1.40" : void 0;
13698
+ const pkgVersion = true ? "0.1.42" : void 0;
13698
13699
  program.version(pkgVersion ?? "unknown", "-V, --version");
13699
13700
  program.hook("preAction", (_thisCommand, actionCommand) => {
13700
13701
  if (Boolean(actionCommand.optsWithGlobals().json)) return;