@useorgx/wizard 0.1.40 → 0.1.41
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 +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -11396,7 +11396,7 @@ 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 =
|
|
11399
|
+
var WORK_GRAPH_REPORT_CHUNK_CHARS = 3e4;
|
|
11400
11400
|
function hashText(value) {
|
|
11401
11401
|
return createHash7("sha256").update(value).digest("hex");
|
|
11402
11402
|
}
|
|
@@ -13694,7 +13694,7 @@ function printDoctorReport(report, assessment) {
|
|
|
13694
13694
|
async function main() {
|
|
13695
13695
|
const program = new Command();
|
|
13696
13696
|
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.
|
|
13697
|
+
const pkgVersion = true ? "0.1.41" : void 0;
|
|
13698
13698
|
program.version(pkgVersion ?? "unknown", "-V, --version");
|
|
13699
13699
|
program.hook("preAction", (_thisCommand, actionCommand) => {
|
|
13700
13700
|
if (Boolean(actionCommand.optsWithGlobals().json)) return;
|