holycodex 0.14.1-dev.230.1 → 0.14.1-dev.231.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.
- package/dist/cli.js +12 -4
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -4167,7 +4167,7 @@ function superRefine(fn, params) {
|
|
|
4167
4167
|
}
|
|
4168
4168
|
//#endregion
|
|
4169
4169
|
//#region packages/cli/src/catalog.ts
|
|
4170
|
-
var VERSION = "0.14.1-dev.
|
|
4170
|
+
var VERSION = "0.14.1-dev.231.1";
|
|
4171
4171
|
var SKILLS = [
|
|
4172
4172
|
"ast-grep",
|
|
4173
4173
|
"babysit-ci",
|
|
@@ -4216,7 +4216,11 @@ var FastModeSchema = _enum([
|
|
|
4216
4216
|
"fast-all"
|
|
4217
4217
|
]);
|
|
4218
4218
|
var ModelRouteSchema = strictObject({
|
|
4219
|
-
model: _enum([
|
|
4219
|
+
model: _enum([
|
|
4220
|
+
"gpt-5.6-luna",
|
|
4221
|
+
"gpt-5.6-sol",
|
|
4222
|
+
"gpt-5.6-terra"
|
|
4223
|
+
]),
|
|
4220
4224
|
reasoningEffort: ReasoningEffortSchema
|
|
4221
4225
|
});
|
|
4222
4226
|
_enum([
|
|
@@ -4287,6 +4291,10 @@ var SOL = (reasoningEffort) => ({
|
|
|
4287
4291
|
model: "gpt-5.6-sol",
|
|
4288
4292
|
reasoningEffort
|
|
4289
4293
|
});
|
|
4294
|
+
var TERRA = (reasoningEffort) => ({
|
|
4295
|
+
model: "gpt-5.6-terra",
|
|
4296
|
+
reasoningEffort
|
|
4297
|
+
});
|
|
4290
4298
|
function taskRoutes(explorer, librarian, worker, reviewer) {
|
|
4291
4299
|
return {
|
|
4292
4300
|
explorer: {
|
|
@@ -4324,7 +4332,7 @@ function workflow(costTarget, costMax, maxCalls, maxConcurrency, routes) {
|
|
|
4324
4332
|
var DEFAULT_PLAN = "plus";
|
|
4325
4333
|
var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
|
|
4326
4334
|
go: {
|
|
4327
|
-
root:
|
|
4335
|
+
root: TERRA("high"),
|
|
4328
4336
|
agents: {
|
|
4329
4337
|
explorer: LUNA("high"),
|
|
4330
4338
|
librarian: LUNA("high"),
|
|
@@ -6807,7 +6815,7 @@ function specializationFailure(name, flag, result) {
|
|
|
6807
6815
|
}
|
|
6808
6816
|
async function removeObsoleteVersionCaches(cacheRoot) {
|
|
6809
6817
|
if (!await exists(cacheRoot)) return;
|
|
6810
|
-
for (const entry of await readdir(cacheRoot)) if (entry !== "0.14.1-dev.
|
|
6818
|
+
for (const entry of await readdir(cacheRoot)) if (entry !== "0.14.1-dev.231.1") await rm(join(cacheRoot, entry), {
|
|
6811
6819
|
recursive: true,
|
|
6812
6820
|
force: true
|
|
6813
6821
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "holycodex",
|
|
3
|
-
"version": "0.14.1-dev.
|
|
3
|
+
"version": "0.14.1-dev.231.1",
|
|
4
4
|
"description": "HolyCodex installer, doctor, and cleanup CLI for durable Codex workflows",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agents",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"prepack": "vp run --workspace-root build"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@holycodex/plugin": "0.14.1-dev.
|
|
45
|
+
"@holycodex/plugin": "0.14.1-dev.231.1",
|
|
46
46
|
"zod": "^4.4.3"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|