@link-assistant/hive-mind 2.0.25 → 2.0.26

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 2.0.26
4
+
5
+ ### Patch Changes
6
+
7
+ - 13074f0: Add Codex model support for the GPT-5.6 preview family, Bedrock-prefixed OpenAI Codex model IDs, and the hidden `codex-auto-review` catalog entry while keeping `gpt-5.5` as the default.
8
+
3
9
  ## 2.0.25
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "2.0.25",
3
+ "version": "2.0.26",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",
@@ -125,6 +125,9 @@ export const codexModels = {
125
125
  'gpt-5.5': 'gpt-5.5',
126
126
  'gpt-5.5-mini': 'gpt-5.5-mini',
127
127
  'gpt-5.5-nano': 'gpt-5.5-nano',
128
+ 'gpt-5.6-sol': 'gpt-5.6-sol',
129
+ 'gpt-5.6-terra': 'gpt-5.6-terra',
130
+ 'gpt-5.6-luna': 'gpt-5.6-luna',
128
131
  'gpt-5.4': 'gpt-5.4',
129
132
  'gpt-5.4-mini': 'gpt-5.4-mini',
130
133
  'gpt-5.4-nano': 'gpt-5.4-nano',
@@ -133,6 +136,12 @@ export const codexModels = {
133
136
  'gpt-5.3-codex': 'gpt-5.3-codex',
134
137
  'gpt-5.3-codex-spark': 'gpt-5.3-codex-spark',
135
138
  'gpt-5.1-codex-max': 'gpt-5.1-codex-max',
139
+ 'openai.gpt-5.5': 'openai.gpt-5.5',
140
+ 'openai.gpt-5.4': 'openai.gpt-5.4',
141
+ 'openai.gpt-5.6-sol': 'openai.gpt-5.6-sol',
142
+ 'openai.gpt-5.6-terra': 'openai.gpt-5.6-terra',
143
+ 'openai.gpt-5.6-luna': 'openai.gpt-5.6-luna',
144
+ 'codex-auto-review': 'codex-auto-review',
136
145
  'o3-mini': 'o3-mini',
137
146
  gpt4: 'gpt-4',
138
147
  'gpt-4': 'gpt-4',
@@ -261,6 +270,9 @@ export const CODEX_MODELS = {
261
270
  'gpt-5.5': 'gpt-5.5',
262
271
  'gpt-5.5-mini': 'gpt-5.5-mini',
263
272
  'gpt-5.5-nano': 'gpt-5.5-nano',
273
+ 'gpt-5.6-sol': 'gpt-5.6-sol',
274
+ 'gpt-5.6-terra': 'gpt-5.6-terra',
275
+ 'gpt-5.6-luna': 'gpt-5.6-luna',
264
276
  'gpt-5.4': 'gpt-5.4',
265
277
  'gpt-5.4-mini': 'gpt-5.4-mini',
266
278
  'gpt-5.4-nano': 'gpt-5.4-nano',
@@ -269,6 +281,12 @@ export const CODEX_MODELS = {
269
281
  'gpt-5.3-codex': 'gpt-5.3-codex',
270
282
  'gpt-5.3-codex-spark': 'gpt-5.3-codex-spark',
271
283
  'gpt-5.1-codex-max': 'gpt-5.1-codex-max',
284
+ 'openai.gpt-5.5': 'openai.gpt-5.5',
285
+ 'openai.gpt-5.4': 'openai.gpt-5.4',
286
+ 'openai.gpt-5.6-sol': 'openai.gpt-5.6-sol',
287
+ 'openai.gpt-5.6-terra': 'openai.gpt-5.6-terra',
288
+ 'openai.gpt-5.6-luna': 'openai.gpt-5.6-luna',
289
+ 'codex-auto-review': 'codex-auto-review',
272
290
  'gpt-4': 'gpt-4',
273
291
  'gpt-4o': 'gpt-4o',
274
292
  };
@@ -344,7 +362,7 @@ export const getDefaultModelForTool = tool => {
344
362
  };
345
363
 
346
364
  let cachedInstalledCodexModelsPromise = null;
347
- const CODEX_DEFAULT_FALLBACK_CHAIN = ['gpt-5.4', 'gpt-5.5-mini', 'gpt-5.4-mini', 'gpt-5.3-codex', 'gpt-5.3-codex-spark', 'gpt-5.2', 'gpt-5.2-codex', 'gpt-5.5-nano', 'gpt-5.4-nano'];
365
+ const CODEX_DEFAULT_FALLBACK_CHAIN = ['openai.gpt-5.5', 'gpt-5.6-sol', 'gpt-5.6-terra', 'gpt-5.6-luna', 'openai.gpt-5.6-sol', 'openai.gpt-5.6-terra', 'openai.gpt-5.6-luna', 'gpt-5.4', 'openai.gpt-5.4', 'gpt-5.5-mini', 'gpt-5.4-mini', 'gpt-5.3-codex', 'gpt-5.3-codex-spark', 'gpt-5.2', 'gpt-5.2-codex', 'gpt-5.5-nano', 'gpt-5.4-nano'];
348
366
 
349
367
  export const getInstalledCodexModels = async () => {
350
368
  if (!cachedInstalledCodexModelsPromise) {
@@ -468,7 +486,7 @@ export const getValidModelsForTool = tool => {
468
486
  export const primaryModelNames = {
469
487
  claude: ['opus', 'sonnet', 'haiku', 'opusplan', 'fable'],
470
488
  opencode: ['grok', 'gpt4o'],
471
- codex: ['gpt-5.5', 'gpt-5.4', 'gpt-5.4-mini', 'gpt-5.3-codex', 'gpt-5.3-codex-spark'],
489
+ codex: ['gpt-5.5', 'gpt-5.6-sol', 'gpt-5.6-terra', 'gpt-5.6-luna', 'gpt-5.4', 'gpt-5.4-mini', 'gpt-5.3-codex-spark'],
472
490
  agent: ['nemotron-3-super-free', 'minimax-m2.5-free', 'big-pickle', 'gpt-5-nano', 'glm-5-free', 'deepseek-r1-free'],
473
491
  qwen: ['qwen3-coder-plus', 'qwen3-coder', 'qwen3-coder-flash'],
474
492
  gemini: ['flash', 'pro', 'flash-lite', 'auto'],
@@ -1132,6 +1150,13 @@ export const defaultFallbackModels = {
1132
1150
  'claude-opus-4-7': 'opus-4-6',
1133
1151
  },
1134
1152
  codex: {
1153
+ 'gpt-5.6-sol': 'gpt-5.5',
1154
+ 'gpt-5.6-terra': 'gpt-5.5',
1155
+ 'gpt-5.6-luna': 'gpt-5.5',
1156
+ 'openai.gpt-5.6-sol': 'openai.gpt-5.5',
1157
+ 'openai.gpt-5.6-terra': 'openai.gpt-5.5',
1158
+ 'openai.gpt-5.6-luna': 'openai.gpt-5.5',
1159
+ 'openai.gpt-5.5': 'openai.gpt-5.4',
1135
1160
  'gpt-5.5': 'gpt-5.4',
1136
1161
  },
1137
1162
  };
@@ -330,7 +330,7 @@ export const SOLVE_OPTION_DEFINITIONS = {
330
330
  },
331
331
  'fallback-model': {
332
332
  type: 'string',
333
- description: 'Fallback model to switch to on model capacity/overload errors (and, for Fable 5, on safety-classifier refusals). When supported, retries resume the same session with this model. Defaults: claude fable/claude-fable-5 -> opus (Opus 4.8); claude mythos-5/claude-mythos-5 -> fable; claude opus/opus-4-8 -> opus-4-7; claude opus-4-7 -> opus-4-6; codex gpt-5.5 -> gpt-5.4; all others unset.',
333
+ description: 'Fallback model to switch to on model capacity/overload errors (and, for Fable 5, on safety-classifier refusals). When supported, retries resume the same session with this model. Defaults: claude fable/claude-fable-5 -> opus (Opus 4.8); claude mythos-5/claude-mythos-5 -> fable; claude opus/opus-4-8 -> opus-4-7; claude opus-4-7 -> opus-4-6; codex gpt-5.6-sol/gpt-5.6-terra/gpt-5.6-luna -> gpt-5.5; codex gpt-5.5 -> gpt-5.4; all others unset.',
334
334
  default: undefined,
335
335
  },
336
336
  'sub-agent-model': {