@indigoai-us/hq-cli 5.119.0 → 5.119.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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [5.119.1] — 2026-09-17
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- A kit.json written before `syncFiles` existed now reads as NOT syncing, the
|
|
10
|
+
same as a fresh install. 5.119.0 read it as `true` to preserve the behaviour
|
|
11
|
+
it recorded, which was wrong twice over: the bots with such a file are
|
|
12
|
+
exactly the ones the mirror is failing on, and because a bare reinstall keeps
|
|
13
|
+
recorded settings, the documented fix — reinstall the kit — left the sync
|
|
14
|
+
loop running and `hq agent probe` still pulling the whole vault. A reinstall
|
|
15
|
+
now removes that loop. A bot that genuinely wants the local mirror passes
|
|
16
|
+
`--sync-files` once.
|
|
17
|
+
|
|
5
18
|
## [5.119.0] — 2026-09-17
|
|
6
19
|
|
|
7
20
|
### Changed
|
|
@@ -33,8 +33,15 @@ export interface KitConfig {
|
|
|
33
33
|
*
|
|
34
34
|
* Turn it on with `hq agent kit install --sync-files` when the bot genuinely
|
|
35
35
|
* needs files on disk for shell-based work (grep, build tools, a local
|
|
36
|
-
* index).
|
|
37
|
-
*
|
|
36
|
+
* index).
|
|
37
|
+
*
|
|
38
|
+
* A kit.json written before this field existed reads as `false`, the same as
|
|
39
|
+
* a fresh install. Reading it as `true` (its behaviour at the time) was the
|
|
40
|
+
* safer-looking choice and was wrong: the bots with such a file are exactly
|
|
41
|
+
* the ones the mirror is failing on, and because a bare reinstall preserves
|
|
42
|
+
* recorded settings, the documented fix — reinstall the kit — left the sync
|
|
43
|
+
* loop running and the probe still pulling. A bot that genuinely wants the
|
|
44
|
+
* mirror passes `--sync-files` once.
|
|
38
45
|
*/
|
|
39
46
|
syncFiles: boolean;
|
|
40
47
|
installedAt: string;
|
|
@@ -57,8 +57,7 @@ export function readKitConfig(paths, cliVersion) {
|
|
|
57
57
|
heartbeatIntervalMs: num("heartbeatIntervalMs"),
|
|
58
58
|
meshRefreshMs: num("meshRefreshMs"),
|
|
59
59
|
inboxAck: raw.inboxAck === true,
|
|
60
|
-
|
|
61
|
-
syncFiles: typeof raw.syncFiles === "boolean" ? raw.syncFiles : true,
|
|
60
|
+
syncFiles: raw.syncFiles === true,
|
|
62
61
|
installedAt: typeof raw.installedAt === "string" ? raw.installedAt : base.installedAt,
|
|
63
62
|
cliVersion: typeof raw.cliVersion === "string" ? raw.cliVersion : base.cliVersion,
|
|
64
63
|
};
|