holycodex 0.12.4 → 0.12.5
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 +3 -3
- 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.
|
|
4394
|
+
var VERSION = "0.12.5";
|
|
4395
4395
|
var SKILLS = [
|
|
4396
4396
|
"ast-grep",
|
|
4397
4397
|
"babysit-ci",
|
|
@@ -6552,8 +6552,8 @@ function finalFallbackReason(reasons) {
|
|
|
6552
6552
|
if (reasons.includes("plugin-not-offered")) return "plugin-not-offered";
|
|
6553
6553
|
if (reasons.includes("timeout")) return "timeout";
|
|
6554
6554
|
if (reasons.includes("unsupported")) return "unsupported";
|
|
6555
|
-
if (reasons.includes("download-failed")) return "download-failed";
|
|
6556
6555
|
if (reasons.includes("marketplace-unavailable")) return "marketplace-unavailable";
|
|
6556
|
+
if (reasons.includes("download-failed")) return "download-failed";
|
|
6557
6557
|
if (reasons.includes("plugin-unavailable")) return "plugin-unavailable";
|
|
6558
6558
|
if (reasons.includes("invalid-response")) return "invalid-response";
|
|
6559
6559
|
return "codex-unavailable";
|
|
@@ -6994,7 +6994,7 @@ async function restoreTarget(target, source) {
|
|
|
6994
6994
|
}
|
|
6995
6995
|
async function removeObsoleteVersionCaches(cacheRoot) {
|
|
6996
6996
|
if (!await exists(cacheRoot)) return;
|
|
6997
|
-
for (const entry of await readdir(cacheRoot)) if (entry !== "0.12.
|
|
6997
|
+
for (const entry of await readdir(cacheRoot)) if (entry !== "0.12.5") await rm(join(cacheRoot, entry), {
|
|
6998
6998
|
recursive: true,
|
|
6999
6999
|
force: true
|
|
7000
7000
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "holycodex",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.5",
|
|
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.
|
|
42
|
+
"@holycodex/plugin": "0.12.5",
|
|
43
43
|
"zod": "^4.4.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|