@dzhechkov/harness-cli 0.5.3 → 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/LICENSE +21 -0
- package/README.md +1 -1
- package/dist/core-compat.d.ts +1 -1
- package/dist/core-compat.js +1 -1
- package/package.json +11 -11
- package/src/core-compat.ts +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 dzhechko
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -3992,7 +3992,7 @@ 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
3996
|
`@dzhechkov/harness-core@0.5.3` and pinned to it, so a fresh install gets the per-sibling design
|
|
3997
3997
|
checkpoint in `/feature-adr` (one dead design agent no longer discards three finished siblings) and
|
|
3998
3998
|
its refusal gate (an incomplete design fan stops at the Step-5/6 boundary instead of planning off a
|
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",
|
|
@@ -40,15 +40,8 @@
|
|
|
40
40
|
".dz-manifest.json",
|
|
41
41
|
"sbom.json"
|
|
42
42
|
],
|
|
43
|
-
"scripts": {
|
|
44
|
-
"build": "tsc -p tsconfig.json",
|
|
45
|
-
"test": "vitest run",
|
|
46
|
-
"test:watch": "vitest",
|
|
47
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
48
|
-
"lint": "tsc -p tsconfig.json --noEmit"
|
|
49
|
-
},
|
|
50
43
|
"dependencies": {
|
|
51
|
-
"@dzhechkov/harness-core": "^0.5.
|
|
44
|
+
"@dzhechkov/harness-core": "^0.5.4",
|
|
52
45
|
"@dzhechkov/harness-presets": "^0.5.0",
|
|
53
46
|
"@dzhechkov/scout": "^0.8.0",
|
|
54
47
|
"@dzhechkov/skills-devops": "^0.3.0",
|
|
@@ -82,5 +75,12 @@
|
|
|
82
75
|
"url": "https://github.com/djd1m/dz-harness-hub.git",
|
|
83
76
|
"directory": "packages/@dzhechkov/harness-cli"
|
|
84
77
|
},
|
|
85
|
-
"homepage": "https://github.com/djd1m/dz-harness-hub/tree/main/packages/@dzhechkov/harness-cli#readme"
|
|
86
|
-
|
|
78
|
+
"homepage": "https://github.com/djd1m/dz-harness-hub/tree/main/packages/@dzhechkov/harness-cli#readme",
|
|
79
|
+
"scripts": {
|
|
80
|
+
"build": "tsc -p tsconfig.json",
|
|
81
|
+
"test": "vitest run",
|
|
82
|
+
"test:watch": "vitest",
|
|
83
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
84
|
+
"lint": "tsc -p tsconfig.json --noEmit"
|
|
85
|
+
}
|
|
86
|
+
}
|
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';
|