holycodex 0.11.3-dev.167.1 → 0.11.3-dev.169.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 +4 -4
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -4391,7 +4391,7 @@ function superRefine(fn, params) {
4391
4391
  }
4392
4392
  //#endregion
4393
4393
  //#region packages/cli/src/catalog.ts
4394
- var VERSION = "0.11.3-dev.167.1";
4394
+ var VERSION = "0.11.3-dev.169.1";
4395
4395
  var SKILLS = [
4396
4396
  "ast-grep",
4397
4397
  "babysit-ci",
@@ -5825,7 +5825,7 @@ function mergedStatusLine(original) {
5825
5825
  return `[${items.map((item) => JSON.stringify(item)).join(", ")}]`;
5826
5826
  }
5827
5827
  /** Installs config. */
5828
- function installConfig(input, mode, _platform, plan = DEFAULT_PLAN, _legacyMaxSubagents, fastMode = "standard") {
5828
+ function installConfig(input, mode, _platform, plan = DEFAULT_PLAN, maxSubagents, fastMode = "standard") {
5829
5829
  const request = normalizeRequestedAutonomy(mode);
5830
5830
  const priorAutonomy = readAutonomyMetadata(input);
5831
5831
  const previousOriginalRoot = readOriginalRootMetadata(input);
@@ -5894,7 +5894,7 @@ function installConfig(input, mode, _platform, plan = DEFAULT_PLAN, _legacyMaxSu
5894
5894
  ["multi_agent", "true"],
5895
5895
  ...legacyMultiAgentV2 === void 0 ? [] : [["multi_agent_v2", legacyMultiAgentV2]]
5896
5896
  ]);
5897
- configured = injectTableKeys(configured, "agents", [["max_concurrent_threads_per_session", String(workflow.limits.concurrency + 1)]]);
5897
+ configured = injectTableKeys(configured, "agents", [["max_concurrent_threads_per_session", String((maxSubagents ?? workflow.limits.concurrency) + 1)]]);
5898
5898
  configured = injectTableKeys(configured, "tui", [["status_line", statusLine]]);
5899
5899
  if (effectiveAutonomy !== "dangerous") configured = injectTableKeys(configured, "sandbox_workspace_write", [["network_access", "true"]]);
5900
5900
  configured = injectTableKeys(configured, "desktop", [["show-context-window-usage", "true"]]);
@@ -6975,7 +6975,7 @@ async function restoreTarget(target, source) {
6975
6975
  }
6976
6976
  async function removeObsoleteVersionCaches(cacheRoot) {
6977
6977
  if (!await exists(cacheRoot)) return;
6978
- for (const entry of await readdir(cacheRoot)) if (entry !== "0.11.3-dev.167.1") await rm(join(cacheRoot, entry), {
6978
+ for (const entry of await readdir(cacheRoot)) if (entry !== "0.11.3-dev.169.1") await rm(join(cacheRoot, entry), {
6979
6979
  recursive: true,
6980
6980
  force: true
6981
6981
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holycodex",
3
- "version": "0.11.3-dev.167.1",
3
+ "version": "0.11.3-dev.169.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.11.3-dev.167.1",
42
+ "@holycodex/plugin": "0.11.3-dev.169.1",
43
43
  "zod": "^4.4.3"
44
44
  },
45
45
  "devDependencies": {