@indigoai-us/hq-cli 5.115.2 → 5.115.3

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
@@ -2,6 +2,15 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [5.115.3] — 2026-09-15
6
+
7
+ ### Changed
8
+
9
+ - The background helper that tidies HQ after a checkpoint now runs on cheaper
10
+ settings: Claude Sonnet 5 instead of Opus 5, Grok 4.6 instead of 4.5, and a
11
+ medium thinking effort on every engine (Codex and Grok were on high). It does
12
+ the same work; it just costs less while doing it.
13
+
5
14
  ## [5.115.2] — 2026-09-15
6
15
 
7
16
  ### Fixed
@@ -15,13 +15,13 @@ import { peekIdToken } from "../utils/id-token.js";
15
15
  import { toHqStateWriteError } from "../utils/hq-state-write-error.js";
16
16
  const DEFAULT_TRIGGER = "stop-gate";
17
17
  const BACKENDS = new Set(["auto", "claude", "codex", "grok", "none"]);
18
- // Pinned by operator directive 2026-07-31; change defaults here deliberately.
18
+ // Pinned by operator directive 2026-09-15; change defaults here deliberately.
19
19
  const CODEX_SIBLING_MODEL = "gpt-5.6-terra";
20
- const CODEX_SIBLING_REASONING_EFFORT = "high";
21
- const CLAUDE_SIBLING_MODEL = "claude-opus-5";
20
+ const CODEX_SIBLING_REASONING_EFFORT = "medium";
21
+ const CLAUDE_SIBLING_MODEL = "claude-sonnet-5";
22
22
  const CLAUDE_SIBLING_EFFORT = "medium";
23
- const GROK_SIBLING_MODEL = "grok-4.5";
24
- const GROK_SIBLING_EFFORT = "high";
23
+ const GROK_SIBLING_MODEL = "grok-4.6";
24
+ const GROK_SIBLING_EFFORT = "medium";
25
25
  /**
26
26
  * `grok -p` is single-turn by default: without a turn budget it answers with a
27
27
  * plan and exits, having done nothing. The maintenance flow needs many turns.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigoai-us/hq-cli",
3
- "version": "5.115.2",
3
+ "version": "5.115.3",
4
4
  "description": "HQ by Indigo management CLI \u2014 modules and cloud sync",
5
5
  "main": "dist/index.js",
6
6
  "bin": {