holycodex 0.10.7 → 0.10.8

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 +11 -3
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -4252,7 +4252,7 @@ function superRefine(fn, params) {
4252
4252
  }
4253
4253
  //#endregion
4254
4254
  //#region packages/cli/src/catalog.ts
4255
- var VERSION = "0.10.7";
4255
+ var VERSION = "0.10.8";
4256
4256
  var SKILLS = [
4257
4257
  "ast-grep",
4258
4258
  "caveman",
@@ -5784,7 +5784,7 @@ var CODEX_SECURITY_PLUGIN = "codex-security@openai-curated";
5784
5784
  var CODEX_SECURITY_MARKETPLACE = "openai-curated";
5785
5785
  var CODEX_PLUGIN_OPERATIONAL_TIMEOUT_MS = 15e3;
5786
5786
  var CODEX_PACKAGE_BOOTSTRAP_TIMEOUT_MS = 12e4;
5787
- var MAX_CODEX_OUTPUT_CHARS = 64 * 1024;
5787
+ var MAX_CODEX_CATALOG_DIAGNOSTIC_CHARS = 256 * 1024;
5788
5788
  var MAX_JSON_DOCUMENTS = 16;
5789
5789
  var SPAWN_UNAVAILABLE_CODES = /* @__PURE__ */ new Set([
5790
5790
  "EACCES",
@@ -5915,7 +5915,7 @@ async function runCodexPlugin(runProcess, launcher, args, platform, env, operati
5915
5915
  args: codexLauncherArgs(launcher, args),
5916
5916
  platform,
5917
5917
  timeoutMs: timeoutFor(launcher, operation),
5918
- maxOutputChars: MAX_CODEX_OUTPUT_CHARS,
5918
+ maxOutputChars: MAX_CODEX_CATALOG_DIAGNOSTIC_CHARS,
5919
5919
  env
5920
5920
  });
5921
5921
  } catch (error) {
@@ -5938,6 +5938,10 @@ function inspectListResult(result, launcher) {
5938
5938
  kind: "fallback",
5939
5939
  reason: "timeout"
5940
5940
  };
5941
+ if (result.outputTruncated) return {
5942
+ kind: "fallback",
5943
+ reason: "invalid-response"
5944
+ };
5941
5945
  const failure = classifyFailure(result, launcher);
5942
5946
  if (failure !== void 0) return failure;
5943
5947
  const catalog = parsePluginCatalog(result.stdout);
@@ -5964,6 +5968,10 @@ function inspectMarketplaceResult(result, launcher) {
5964
5968
  kind: "fallback",
5965
5969
  reason: "timeout"
5966
5970
  };
5971
+ if (result.outputTruncated) return {
5972
+ kind: "fallback",
5973
+ reason: "invalid-response"
5974
+ };
5967
5975
  const failure = classifyFailure(result, launcher);
5968
5976
  if (failure !== void 0) return failure;
5969
5977
  const marketplaces = parseMarketplaceNames(result.stdout);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holycodex",
3
- "version": "0.10.7",
3
+ "version": "0.10.8",
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.10.7",
42
+ "@holycodex/plugin": "0.10.8",
43
43
  "zod": "^4.4.3"
44
44
  },
45
45
  "engines": {