holycodex 0.10.8 → 0.11.0
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/README.md +1 -1
- package/dist/cli.js +102 -61
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ bunx holycodex@dev install
|
|
|
7
7
|
bunx holycodex@dev doctor
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
Use `holycodex --help` for commands, autonomy options, routing plans, and service tiers. `--fast` selects Fast for generated agents, `--fast-all` selects Fast for Root and generated agents, and `--no-fast` or omitting Fast flags selects Standard. Fast uses `2
|
|
10
|
+
Use `holycodex --help` for commands, autonomy options, routing plans, and service tiers. `--fast` selects Fast for generated agents, `--fast-all` selects Fast for Root and generated agents, and `--no-fast` or omitting Fast flags selects Standard. Fast uses `2×` API-equivalent usage and changes only the serving tier, not model quality or routing. See the repository's [routing policy](../../docs/ROUTING.md). Stable releases use `bunx holycodex`; development releases use npm's `dev` dist-tag.
|
|
11
11
|
|
|
12
12
|
On a fresh installation, omitting autonomy flags seeds Codex Approve for me semantics: `approval_policy = "on-request"`, `approvals_reviewer = "auto_review"`, and `sandbox_mode = "workspace-write"`. On an existing installation, omitting autonomy flags preserves the complete current permission selection. `--no-codex-autonomous`, `--codex-autonomous`, and `--dangerous-codex-autonomous` explicitly replace that selection with their documented modes. HolyCodex never generates `default_permissions` or selects a named permission profile.
|
|
13
13
|
|
package/dist/cli.js
CHANGED
|
@@ -4252,9 +4252,10 @@ function superRefine(fn, params) {
|
|
|
4252
4252
|
}
|
|
4253
4253
|
//#endregion
|
|
4254
4254
|
//#region packages/cli/src/catalog.ts
|
|
4255
|
-
var VERSION = "0.
|
|
4255
|
+
var VERSION = "0.11.0";
|
|
4256
4256
|
var SKILLS = [
|
|
4257
4257
|
"ast-grep",
|
|
4258
|
+
"babysit-ci",
|
|
4258
4259
|
"caveman",
|
|
4259
4260
|
"code-review",
|
|
4260
4261
|
"compress",
|
|
@@ -4267,8 +4268,7 @@ var SKILLS = [
|
|
|
4267
4268
|
"programming",
|
|
4268
4269
|
"refactor",
|
|
4269
4270
|
"remove-slop",
|
|
4270
|
-
"rules"
|
|
4271
|
-
"security-research"
|
|
4271
|
+
"rules"
|
|
4272
4272
|
];
|
|
4273
4273
|
var AGENTS = _enum([
|
|
4274
4274
|
"explorer",
|
|
@@ -4335,7 +4335,7 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
|
|
|
4335
4335
|
go: {
|
|
4336
4336
|
root: {
|
|
4337
4337
|
model: "gpt-5.6-luna",
|
|
4338
|
-
reasoningEffort: "
|
|
4338
|
+
reasoningEffort: "high"
|
|
4339
4339
|
},
|
|
4340
4340
|
agents: {
|
|
4341
4341
|
explorer: {
|
|
@@ -4348,7 +4348,7 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
|
|
|
4348
4348
|
},
|
|
4349
4349
|
worker: {
|
|
4350
4350
|
model: "gpt-5.6-luna",
|
|
4351
|
-
reasoningEffort: "
|
|
4351
|
+
reasoningEffort: "high"
|
|
4352
4352
|
}
|
|
4353
4353
|
},
|
|
4354
4354
|
usage: {
|
|
@@ -4376,7 +4376,7 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
|
|
|
4376
4376
|
}
|
|
4377
4377
|
},
|
|
4378
4378
|
usage: {
|
|
4379
|
-
maxSubagents:
|
|
4379
|
+
maxSubagents: 2,
|
|
4380
4380
|
maxDepth: 1
|
|
4381
4381
|
}
|
|
4382
4382
|
},
|
|
@@ -4396,7 +4396,7 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
|
|
|
4396
4396
|
},
|
|
4397
4397
|
worker: {
|
|
4398
4398
|
model: "gpt-5.6-luna",
|
|
4399
|
-
reasoningEffort: "
|
|
4399
|
+
reasoningEffort: "high"
|
|
4400
4400
|
}
|
|
4401
4401
|
},
|
|
4402
4402
|
usage: {
|
|
@@ -4412,15 +4412,15 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
|
|
|
4412
4412
|
agents: {
|
|
4413
4413
|
explorer: {
|
|
4414
4414
|
model: "gpt-5.6-luna",
|
|
4415
|
-
reasoningEffort: "
|
|
4415
|
+
reasoningEffort: "high"
|
|
4416
4416
|
},
|
|
4417
4417
|
librarian: {
|
|
4418
4418
|
model: "gpt-5.6-luna",
|
|
4419
|
-
reasoningEffort: "
|
|
4419
|
+
reasoningEffort: "high"
|
|
4420
4420
|
},
|
|
4421
4421
|
worker: {
|
|
4422
4422
|
model: "gpt-5.6-luna",
|
|
4423
|
-
reasoningEffort: "
|
|
4423
|
+
reasoningEffort: "xhigh"
|
|
4424
4424
|
}
|
|
4425
4425
|
},
|
|
4426
4426
|
usage: {
|
|
@@ -4436,15 +4436,15 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
|
|
|
4436
4436
|
agents: {
|
|
4437
4437
|
explorer: {
|
|
4438
4438
|
model: "gpt-5.6-luna",
|
|
4439
|
-
reasoningEffort: "
|
|
4439
|
+
reasoningEffort: "high"
|
|
4440
4440
|
},
|
|
4441
4441
|
librarian: {
|
|
4442
4442
|
model: "gpt-5.6-luna",
|
|
4443
|
-
reasoningEffort: "
|
|
4443
|
+
reasoningEffort: "high"
|
|
4444
4444
|
},
|
|
4445
4445
|
worker: {
|
|
4446
4446
|
model: "gpt-5.6-luna",
|
|
4447
|
-
reasoningEffort: "
|
|
4447
|
+
reasoningEffort: "xhigh"
|
|
4448
4448
|
}
|
|
4449
4449
|
},
|
|
4450
4450
|
usage: {
|
|
@@ -4460,11 +4460,11 @@ var MODEL_ROUTING_PLANS = ModelRoutingPlansSchema.parse({
|
|
|
4460
4460
|
agents: {
|
|
4461
4461
|
explorer: {
|
|
4462
4462
|
model: "gpt-5.6-luna",
|
|
4463
|
-
reasoningEffort: "
|
|
4463
|
+
reasoningEffort: "high"
|
|
4464
4464
|
},
|
|
4465
4465
|
librarian: {
|
|
4466
4466
|
model: "gpt-5.6-luna",
|
|
4467
|
-
reasoningEffort: "
|
|
4467
|
+
reasoningEffort: "high"
|
|
4468
4468
|
},
|
|
4469
4469
|
worker: {
|
|
4470
4470
|
model: "gpt-5.6-luna",
|
|
@@ -4495,13 +4495,20 @@ var LEGACY_MANAGED_AGENT_MODEL_HISTORY = {
|
|
|
4495
4495
|
model: "gpt-5.6-terra",
|
|
4496
4496
|
reasoningEffort: "low"
|
|
4497
4497
|
}],
|
|
4498
|
-
worker: [
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4498
|
+
worker: [
|
|
4499
|
+
{
|
|
4500
|
+
model: "gpt-5.6-luna",
|
|
4501
|
+
reasoningEffort: "xhigh"
|
|
4502
|
+
},
|
|
4503
|
+
{
|
|
4504
|
+
model: "gpt-5.6-terra",
|
|
4505
|
+
reasoningEffort: "low"
|
|
4506
|
+
},
|
|
4507
|
+
{
|
|
4508
|
+
model: "gpt-5.6-terra",
|
|
4509
|
+
reasoningEffort: "medium"
|
|
4510
|
+
}
|
|
4511
|
+
]
|
|
4505
4512
|
},
|
|
4506
4513
|
"plus-low": {
|
|
4507
4514
|
explorer: [{
|
|
@@ -4547,75 +4554,102 @@ var LEGACY_MANAGED_AGENT_MODEL_HISTORY = {
|
|
|
4547
4554
|
}
|
|
4548
4555
|
],
|
|
4549
4556
|
worker: [{
|
|
4557
|
+
model: "gpt-5.6-luna",
|
|
4558
|
+
reasoningEffort: "xhigh"
|
|
4559
|
+
}, {
|
|
4550
4560
|
model: "gpt-5.6-terra",
|
|
4551
4561
|
reasoningEffort: "high"
|
|
4552
4562
|
}]
|
|
4553
4563
|
},
|
|
4554
4564
|
"plus-high": {
|
|
4555
4565
|
explorer: [{
|
|
4566
|
+
model: "gpt-5.6-luna",
|
|
4567
|
+
reasoningEffort: "xhigh"
|
|
4568
|
+
}, {
|
|
4556
4569
|
model: "gpt-5.6-terra",
|
|
4557
4570
|
reasoningEffort: "medium"
|
|
4558
|
-
}, {
|
|
4559
|
-
model: "gpt-5.6-luna",
|
|
4560
|
-
reasoningEffort: "high"
|
|
4561
4571
|
}],
|
|
4562
4572
|
librarian: [{
|
|
4573
|
+
model: "gpt-5.6-luna",
|
|
4574
|
+
reasoningEffort: "xhigh"
|
|
4575
|
+
}, {
|
|
4563
4576
|
model: "gpt-5.6-terra",
|
|
4564
4577
|
reasoningEffort: "medium"
|
|
4565
|
-
}, {
|
|
4566
|
-
model: "gpt-5.6-luna",
|
|
4567
|
-
reasoningEffort: "high"
|
|
4568
4578
|
}],
|
|
4569
|
-
worker: [
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4579
|
+
worker: [
|
|
4580
|
+
{
|
|
4581
|
+
model: "gpt-5.6-luna",
|
|
4582
|
+
reasoningEffort: "max"
|
|
4583
|
+
},
|
|
4584
|
+
{
|
|
4585
|
+
model: "gpt-5.6-terra",
|
|
4586
|
+
reasoningEffort: "high"
|
|
4587
|
+
},
|
|
4588
|
+
{
|
|
4589
|
+
model: "gpt-5.6-sol",
|
|
4590
|
+
reasoningEffort: "low"
|
|
4591
|
+
}
|
|
4592
|
+
]
|
|
4576
4593
|
},
|
|
4577
4594
|
"pro-5x": {
|
|
4578
4595
|
explorer: [
|
|
4579
4596
|
{
|
|
4580
|
-
model: "gpt-5.6-
|
|
4581
|
-
reasoningEffort: "
|
|
4597
|
+
model: "gpt-5.6-luna",
|
|
4598
|
+
reasoningEffort: "xhigh"
|
|
4582
4599
|
},
|
|
4583
4600
|
{
|
|
4584
4601
|
model: "gpt-5.6-terra",
|
|
4585
|
-
reasoningEffort: "
|
|
4602
|
+
reasoningEffort: "medium"
|
|
4586
4603
|
},
|
|
4587
4604
|
{
|
|
4588
|
-
model: "gpt-5.6-
|
|
4605
|
+
model: "gpt-5.6-terra",
|
|
4589
4606
|
reasoningEffort: "high"
|
|
4590
4607
|
}
|
|
4591
4608
|
],
|
|
4592
4609
|
librarian: [{
|
|
4610
|
+
model: "gpt-5.6-luna",
|
|
4611
|
+
reasoningEffort: "xhigh"
|
|
4612
|
+
}, {
|
|
4593
4613
|
model: "gpt-5.6-terra",
|
|
4594
4614
|
reasoningEffort: "high"
|
|
4595
4615
|
}],
|
|
4596
|
-
worker: [
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4616
|
+
worker: [
|
|
4617
|
+
{
|
|
4618
|
+
model: "gpt-5.6-luna",
|
|
4619
|
+
reasoningEffort: "max"
|
|
4620
|
+
},
|
|
4621
|
+
{
|
|
4622
|
+
model: "gpt-5.6-terra",
|
|
4623
|
+
reasoningEffort: "high"
|
|
4624
|
+
},
|
|
4625
|
+
{
|
|
4626
|
+
model: "gpt-5.6-sol",
|
|
4627
|
+
reasoningEffort: "medium"
|
|
4628
|
+
}
|
|
4629
|
+
]
|
|
4603
4630
|
},
|
|
4604
4631
|
"pro-20x": {
|
|
4605
4632
|
explorer: [{
|
|
4606
4633
|
model: "gpt-5.6-luna",
|
|
4607
|
-
reasoningEffort: "
|
|
4608
|
-
}, {
|
|
4609
|
-
model: "gpt-5.6-sol",
|
|
4610
|
-
reasoningEffort: "medium"
|
|
4611
|
-
}],
|
|
4612
|
-
librarian: [{
|
|
4613
|
-
model: "gpt-5.6-terra",
|
|
4614
|
-
reasoningEffort: "high"
|
|
4634
|
+
reasoningEffort: "max"
|
|
4615
4635
|
}, {
|
|
4616
4636
|
model: "gpt-5.6-sol",
|
|
4617
4637
|
reasoningEffort: "medium"
|
|
4618
4638
|
}],
|
|
4639
|
+
librarian: [
|
|
4640
|
+
{
|
|
4641
|
+
model: "gpt-5.6-luna",
|
|
4642
|
+
reasoningEffort: "max"
|
|
4643
|
+
},
|
|
4644
|
+
{
|
|
4645
|
+
model: "gpt-5.6-terra",
|
|
4646
|
+
reasoningEffort: "high"
|
|
4647
|
+
},
|
|
4648
|
+
{
|
|
4649
|
+
model: "gpt-5.6-sol",
|
|
4650
|
+
reasoningEffort: "medium"
|
|
4651
|
+
}
|
|
4652
|
+
],
|
|
4619
4653
|
worker: [
|
|
4620
4654
|
{
|
|
4621
4655
|
model: "gpt-5.6-terra",
|
|
@@ -4660,13 +4694,20 @@ var MANAGED_AGENT_MODEL_HISTORY = {
|
|
|
4660
4694
|
worker: managedAgentModels("worker")
|
|
4661
4695
|
};
|
|
4662
4696
|
var LEGACY_MANAGED_ROOT_MODEL_HISTORY = {
|
|
4663
|
-
go: [
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4697
|
+
go: [
|
|
4698
|
+
{
|
|
4699
|
+
model: "gpt-5.6-luna",
|
|
4700
|
+
reasoningEffort: "xhigh"
|
|
4701
|
+
},
|
|
4702
|
+
{
|
|
4703
|
+
model: "gpt-5.6-sol",
|
|
4704
|
+
reasoningEffort: "low"
|
|
4705
|
+
},
|
|
4706
|
+
{
|
|
4707
|
+
model: "gpt-5.6-terra",
|
|
4708
|
+
reasoningEffort: "medium"
|
|
4709
|
+
}
|
|
4710
|
+
],
|
|
4670
4711
|
"plus-low": [],
|
|
4671
4712
|
plus: [],
|
|
4672
4713
|
"plus-high": [],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "holycodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
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.
|
|
42
|
+
"@holycodex/plugin": "0.11.0",
|
|
43
43
|
"zod": "^4.4.3"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|