@dzhechkov/harness-cli 0.5.2 → 0.5.4
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 +7 -1
- package/dist/core-compat.d.ts +1 -1
- package/dist/core-compat.js +1 -1
- package/package.json +2 -2
- package/src/core-compat.ts +1 -1
package/README.md
CHANGED
|
@@ -3992,7 +3992,13 @@ npx @dzhechkov/p-replicator init
|
|
|
3992
3992
|
|
|
3993
3993
|
## Status
|
|
3994
3994
|
|
|
3995
|
-
`v0.5.
|
|
3995
|
+
`v0.5.4` — **published 2026-08-20** (0.5.3 is deprecated — the core it pinned could not be installed). No CLI behavior change of its own: released in lockstep with
|
|
3996
|
+
`@dzhechkov/harness-core@0.5.3` and pinned to it, so a fresh install gets the per-sibling design
|
|
3997
|
+
checkpoint in `/feature-adr` (one dead design agent no longer discards three finished siblings) and
|
|
3998
|
+
its refusal gate (an incomplete design fan stops at the Step-5/6 boundary instead of planning off a
|
|
3999
|
+
partial design). The compat floor is unchanged — this CLI uses no new core export.
|
|
4000
|
+
|
|
4001
|
+
**v0.5.1** — published 2026-08-20. Ships `dz workflow run`, the portable plan enactor: it INTERPRETS a `loop-plan/1` plan instead of executing a rendered script, dispatching to `codex exec` or an isolated `claude -p`, exit 0/1/2/75 (75 = a typed pause whose last stdout line is a `wf-pause-envelope/1`). Requires `@dzhechkov/harness-core >= 0.5.1` (the compat guard refuses below it by name). See "Who writes the trace" above for the stated scope of the cross-host equivalence claim — it is narrower than "the two hosts agree".
|
|
3996
4002
|
|
|
3997
4003
|
`v0.5.0` — published. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
3998
4004
|
|
package/dist/core-compat.d.ts
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
* standing test (`test/core-import-floor.test.ts`, F1) fails if the two drift apart,
|
|
40
40
|
* because a guard that says 0.4.7 while npm may install 0.4.2 is worse than no guard.
|
|
41
41
|
*/
|
|
42
|
-
export declare const MIN_CORE = "0.5.
|
|
42
|
+
export declare const MIN_CORE = "0.5.4";
|
|
43
43
|
/** The npm name of the guarded package — one literal, used by every leg below. */
|
|
44
44
|
export declare const CORE_PACKAGE_NAME = "@dzhechkov/harness-core";
|
|
45
45
|
/**
|
package/dist/core-compat.js
CHANGED
|
@@ -42,7 +42,7 @@ import { fileURLToPath } from 'node:url';
|
|
|
42
42
|
* standing test (`test/core-import-floor.test.ts`, F1) fails if the two drift apart,
|
|
43
43
|
* because a guard that says 0.4.7 while npm may install 0.4.2 is worse than no guard.
|
|
44
44
|
*/
|
|
45
|
-
export const MIN_CORE = '0.5.
|
|
45
|
+
export const MIN_CORE = '0.5.4';
|
|
46
46
|
/** The npm name of the guarded package — one literal, used by every leg below. */
|
|
47
47
|
export const CORE_PACKAGE_NAME = '@dzhechkov/harness-core';
|
|
48
48
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/harness-cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes, OpenClaude, GitHub Copilot. 67 commands, 14 presets, 10 platform targets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"sbom.json"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@dzhechkov/harness-core": "^0.5.
|
|
44
|
+
"@dzhechkov/harness-core": "^0.5.4",
|
|
45
45
|
"@dzhechkov/harness-presets": "^0.5.0",
|
|
46
46
|
"@dzhechkov/scout": "^0.8.0",
|
|
47
47
|
"@dzhechkov/skills-devops": "^0.3.0",
|
package/src/core-compat.ts
CHANGED
|
@@ -44,7 +44,7 @@ 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.5.
|
|
47
|
+
export const MIN_CORE = '0.5.4';
|
|
48
48
|
|
|
49
49
|
/** The npm name of the guarded package — one literal, used by every leg below. */
|
|
50
50
|
export const CORE_PACKAGE_NAME = '@dzhechkov/harness-core';
|