holycodex 0.12.3 → 0.12.4

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 +10 -5
  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.12.3";
4394
+ var VERSION = "0.12.4";
4395
4395
  var SKILLS = [
4396
4396
  "ast-grep",
4397
4397
  "babysit-ci",
@@ -6274,8 +6274,8 @@ var COMPUTER_USE_PLUGIN = {
6274
6274
  marketplace: "openai-bundled"
6275
6275
  };
6276
6276
  var BUILD_WEB_APPS_PLUGIN = {
6277
- id: "build-web-apps@openai-curated-remote",
6278
- marketplace: "openai-curated-remote"
6277
+ id: "build-web-apps@openai-curated",
6278
+ marketplace: "openai-curated"
6279
6279
  };
6280
6280
  var CODEX_PLUGIN_OPERATIONAL_TIMEOUT_MS = 15e3;
6281
6281
  var CODEX_PACKAGE_BOOTSTRAP_TIMEOUT_MS = 12e4;
@@ -6338,7 +6338,12 @@ async function installOfficialPlugin(plugin, runProcess = runManagedProcess, pla
6338
6338
  const fallbackReasons = [];
6339
6339
  for (const launcher of candidates) {
6340
6340
  attemptedLaunchers.push(launcher.source);
6341
- const installedOutcome = inspectListResult(await runCodexPlugin(runProcess, launcher, [
6341
+ let installedOutcome = inspectListResult(await runCodexPlugin(runProcess, launcher, [
6342
+ "plugin",
6343
+ "list",
6344
+ "--json"
6345
+ ], platform, env, "list"), launcher);
6346
+ if (launcher.source === "path" && installedOutcome.kind === "fallback" && installedOutcome.reason === "download-failed") installedOutcome = inspectListResult(await runCodexPlugin(runProcess, launcher, [
6342
6347
  "plugin",
6343
6348
  "list",
6344
6349
  "--json"
@@ -6989,7 +6994,7 @@ async function restoreTarget(target, source) {
6989
6994
  }
6990
6995
  async function removeObsoleteVersionCaches(cacheRoot) {
6991
6996
  if (!await exists(cacheRoot)) return;
6992
- for (const entry of await readdir(cacheRoot)) if (entry !== "0.12.3") await rm(join(cacheRoot, entry), {
6997
+ for (const entry of await readdir(cacheRoot)) if (entry !== "0.12.4") await rm(join(cacheRoot, entry), {
6993
6998
  recursive: true,
6994
6999
  force: true
6995
7000
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holycodex",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
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.12.3",
42
+ "@holycodex/plugin": "0.12.4",
43
43
  "zod": "^4.4.3"
44
44
  },
45
45
  "devDependencies": {