holycodex 0.9.3 → 0.9.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 +31 -15
  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.9.3";
4255
+ var VERSION = "0.9.4";
4256
4256
  var SKILLS = [
4257
4257
  "ast-grep",
4258
4258
  "caveman",
@@ -4385,7 +4385,7 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
4385
4385
  },
4386
4386
  librarian: {
4387
4387
  model: "gpt-5.6-terra",
4388
- reasoningEffort: "low"
4388
+ reasoningEffort: "medium"
4389
4389
  },
4390
4390
  worker: {
4391
4391
  model: "gpt-5.6-terra",
@@ -4412,8 +4412,8 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
4412
4412
  reasoningEffort: "high"
4413
4413
  },
4414
4414
  worker: {
4415
- model: "gpt-5.6-sol",
4416
- reasoningEffort: "low"
4415
+ model: "gpt-5.6-terra",
4416
+ reasoningEffort: "high"
4417
4417
  }
4418
4418
  },
4419
4419
  usage: {
@@ -4432,8 +4432,8 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
4432
4432
  reasoningEffort: "high"
4433
4433
  },
4434
4434
  librarian: {
4435
- model: "gpt-5.6-luna",
4436
- reasoningEffort: "xhigh"
4435
+ model: "gpt-5.6-terra",
4436
+ reasoningEffort: "high"
4437
4437
  },
4438
4438
  worker: {
4439
4439
  model: "gpt-5.6-sol",
@@ -4456,8 +4456,8 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
4456
4456
  reasoningEffort: "xhigh"
4457
4457
  },
4458
4458
  librarian: {
4459
- model: "gpt-5.6-luna",
4460
- reasoningEffort: "xhigh"
4459
+ model: "gpt-5.6-sol",
4460
+ reasoningEffort: "medium"
4461
4461
  },
4462
4462
  worker: {
4463
4463
  model: "gpt-5.6-sol",
@@ -4500,6 +4500,9 @@ var LEGACY_MANAGED_AGENT_MODEL_HISTORY = {
4500
4500
  librarian: [{
4501
4501
  model: "gpt-5.6-luna",
4502
4502
  reasoningEffort: "low"
4503
+ }, {
4504
+ model: "gpt-5.6-terra",
4505
+ reasoningEffort: "low"
4503
4506
  }],
4504
4507
  worker: [{
4505
4508
  model: "gpt-5.6-terra",
@@ -4518,6 +4521,9 @@ var LEGACY_MANAGED_AGENT_MODEL_HISTORY = {
4518
4521
  worker: [{
4519
4522
  model: "gpt-5.6-terra",
4520
4523
  reasoningEffort: "high"
4524
+ }, {
4525
+ model: "gpt-5.6-sol",
4526
+ reasoningEffort: "low"
4521
4527
  }]
4522
4528
  },
4523
4529
  "pro-5x": {
@@ -4531,6 +4537,9 @@ var LEGACY_MANAGED_AGENT_MODEL_HISTORY = {
4531
4537
  librarian: [{
4532
4538
  model: "gpt-5.6-terra",
4533
4539
  reasoningEffort: "high"
4540
+ }, {
4541
+ model: "gpt-5.6-luna",
4542
+ reasoningEffort: "xhigh"
4534
4543
  }],
4535
4544
  worker: [{
4536
4545
  model: "gpt-5.6-terra",
@@ -4545,13 +4554,20 @@ var LEGACY_MANAGED_AGENT_MODEL_HISTORY = {
4545
4554
  model: "gpt-5.6-sol",
4546
4555
  reasoningEffort: "medium"
4547
4556
  }],
4548
- librarian: [{
4549
- model: "gpt-5.6-terra",
4550
- reasoningEffort: "high"
4551
- }, {
4552
- model: "gpt-5.6-sol",
4553
- reasoningEffort: "medium"
4554
- }],
4557
+ librarian: [
4558
+ {
4559
+ model: "gpt-5.6-terra",
4560
+ reasoningEffort: "high"
4561
+ },
4562
+ {
4563
+ model: "gpt-5.6-sol",
4564
+ reasoningEffort: "medium"
4565
+ },
4566
+ {
4567
+ model: "gpt-5.6-luna",
4568
+ reasoningEffort: "xhigh"
4569
+ }
4570
+ ],
4555
4571
  worker: [{
4556
4572
  model: "gpt-5.6-terra",
4557
4573
  reasoningEffort: "high"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holycodex",
3
- "version": "0.9.3",
3
+ "version": "0.9.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.9.3",
42
+ "@holycodex/plugin": "0.9.4",
43
43
  "zod": "^4.4.3"
44
44
  },
45
45
  "engines": {