@dzhechkov/harness-cli 0.6.0 → 0.7.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.
@@ -44,7 +44,10 @@ import { fileURLToPath } from 'node:url';
44
44
  * standing test (`test/core-import-floor.test.ts`, F1) fails if the two drift apart,
45
45
  * because a guard that says 0.4.7 while npm may install 0.4.2 is worse than no guard.
46
46
  */
47
- export const MIN_CORE = '0.6.0';
47
+ // 0.7.0: this CLI reads `HybridRecall.semanticRanked` and `VectorTierStatus.mirroredOther` /
48
+ // `orphaned` / `unmirrored`, none of which exist in 0.6.1 — a lower core would not merely behave
49
+ // differently, it would be missing the fields every recall claim is now derived from.
50
+ export const MIN_CORE = '0.7.0';
48
51
 
49
52
  /** The npm name of the guarded package — one literal, used by every leg below. */
50
53
  export const CORE_PACKAGE_NAME = '@dzhechkov/harness-core';
package/src/index.ts CHANGED
@@ -15,4 +15,7 @@ export type { CliIo, ReleaseExecRunner } from './cli.js';
15
15
  // The Codex hook DELIVERY seam (crossrt-2 fix round, findings 1+2): the argv→operation mapping and
16
16
  // the one place a success word may be printed, exported so both can be pinned without a live codex.
17
17
  export { codexHooksSummary, codexHooksSyncOptions, deliverCodexHooks } from './cli.js';
18
+ // Exported for its own test: the guard that keeps `--json` stdout parseable when a dependency greets
19
+ // stdout. Tested directly because the end-to-end path cannot reach it without a populated vector tier.
20
+ export { withForeignStdoutOnStderr } from './cli.js';
18
21
  export type { CodexHooksSummary, CodexHooksSyncInput } from './cli.js';