holycodex 0.7.4-dev.29700855995.1 → 0.7.4-dev.29702371652.1

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 (2) hide show
  1. package/dist/cli.js +5 -3
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -4053,7 +4053,9 @@ var PACKAGE_INSTALL_TIMEOUT_MS = 12e4;
4053
4053
  var PACKAGE_INSTALL_OUTPUT_LIMIT = 4e3;
4054
4054
  /** Detects whether Bun or npm invoked HolyCodex. */
4055
4055
  function detectPackageRunner(env = process.env) {
4056
- return `${env.npm_execpath ?? ""} ${env.npm_config_user_agent ?? ""}`.toLowerCase().includes("bun") ? "bun" : "npm";
4056
+ const executable = (env.npm_execpath ?? "").split(/[\\/]/).at(-1)?.toLowerCase().replace(/\.exe$/, "");
4057
+ const userAgent = env.npm_config_user_agent?.trim().split(/[\s/]/, 1)[0]?.toLowerCase();
4058
+ return executable === "bun" || userAgent === "bun" ? "bun" : "npm";
4057
4059
  }
4058
4060
  /** Builds the runner-specific codexslimedit invocation. */
4059
4061
  function codexSlimEditInvocation(input) {
@@ -4085,7 +4087,7 @@ async function installCodexSlimEdit(input, env = process.env) {
4085
4087
  }
4086
4088
  //#endregion
4087
4089
  //#region packages/cli/src/catalog.ts
4088
- var VERSION = "0.7.4-dev.29700855995.1";
4090
+ var VERSION = "0.7.4-dev.29702371652.1";
4089
4091
  var SKILLS = [
4090
4092
  "ast-grep",
4091
4093
  "caveman",
@@ -4217,7 +4219,7 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
4217
4219
  }
4218
4220
  },
4219
4221
  usage: {
4220
- maxThreads: 1,
4222
+ maxThreads: 2,
4221
4223
  maxDepth: 1
4222
4224
  }
4223
4225
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holycodex",
3
- "version": "0.7.4-dev.29700855995.1",
3
+ "version": "0.7.4-dev.29702371652.1",
4
4
  "description": "Lean Codex-only agent toolkit installer and doctor",
5
5
  "keywords": [
6
6
  "agents",
@@ -39,7 +39,7 @@
39
39
  "prepack": "vp run --workspace-root build"
40
40
  },
41
41
  "dependencies": {
42
- "@holycodex/plugin": "0.7.4-dev.29700855995.1",
42
+ "@holycodex/plugin": "0.7.4-dev.29702371652.1",
43
43
  "zod": "^4.4.3"
44
44
  },
45
45
  "engines": {