@dzhechkov/harness-cli 0.4.4 → 0.4.5
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/.dz-manifest.json +2 -2
- package/README.md +57 -28
- package/package.json +10 -10
- package/sbom.json +1 -1
- package/LICENSE +0 -21
package/.dz-manifest.json
CHANGED
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
"path": "package.json",
|
|
72
|
-
"sha256": "
|
|
72
|
+
"sha256": "00a53276d145112e3c2ae5ca2950ac74877ea4b069b2b81040d49c5903eb6482"
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
75
|
"path": "src/bin.ts",
|
|
@@ -221,5 +221,5 @@
|
|
|
221
221
|
}
|
|
222
222
|
]
|
|
223
223
|
},
|
|
224
|
-
"signature": "
|
|
224
|
+
"signature": "6IQyjN4aazsr6EyD1+y/VrZ1+bclvxc9nXsCLR3WVDomAn6AhNtlTJQWdfbvw49A4/HH+KTW+KkJlj/gFFnqCw=="
|
|
225
225
|
}
|
package/README.md
CHANGED
|
@@ -1141,12 +1141,16 @@ host run there is nothing to read, and it says so rather than inventing a timeli
|
|
|
1141
1141
|
follows from the same boundary: on a non-Claude-Code target the authoring and lint verbs work
|
|
1142
1142
|
unchanged, and only execution is absent.
|
|
1143
1143
|
|
|
1144
|
-
### Build a loop for YOUR scenario — the end-to-end use case
|
|
1144
|
+
### Build a loop for YOUR scenario — the end-to-end use case (a real one)
|
|
1145
1145
|
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1146
|
+
This walkthrough is not an invented example. It is the loop that closed a real roadmap item in this
|
|
1147
|
+
very repo: a test pinned `34 canonical packages` while the workspace had grown past 50 directories —
|
|
1148
|
+
red forever, and nobody trusted a hand count. The job: produce a **verified inventory** of every
|
|
1149
|
+
directory under `packages/@dzhechkov` (canonical vs private vs not-a-package), too much for one
|
|
1150
|
+
sitting → an audit fanout: package chunks audited in parallel lanes, one synthesis, and a quality
|
|
1151
|
+
gate that rejects an inventory that doesn't cover every directory. Every command and output below is
|
|
1152
|
+
a capture from the run that actually fixed the test (MEASURED — reproducer
|
|
1153
|
+
`node --test tests/canonical-packages.test.mjs`: 289 pass / 0 fail after the re-pin).
|
|
1150
1154
|
|
|
1151
1155
|
**Install (once):**
|
|
1152
1156
|
|
|
@@ -1162,8 +1166,8 @@ RUNS one. Execution belongs to a host with the `Workflow({scriptPath})` runtime,
|
|
|
1162
1166
|
#### Step 1 — scaffold the plan shape closest to your scenario
|
|
1163
1167
|
|
|
1164
1168
|
```bash
|
|
1165
|
-
dz workflow init --name
|
|
1166
|
-
# → wrote
|
|
1169
|
+
dz workflow init --name pkg-inventory-audit --pattern fanout --o audit.plan.json
|
|
1170
|
+
# → wrote audit.plan.json (pattern: fanout)
|
|
1167
1171
|
# → Next: edit the TODO prompts, then `dz workflow validate` + `dz workflow render`.
|
|
1168
1172
|
```
|
|
1169
1173
|
|
|
@@ -1173,14 +1177,20 @@ template you fight.
|
|
|
1173
1177
|
|
|
1174
1178
|
#### Step 2 — make it yours (edit the JSON)
|
|
1175
1179
|
|
|
1176
|
-
Fill the `TODO` prompts, name your
|
|
1177
|
-
|
|
1180
|
+
Fill the `TODO` prompts, name your work units in `fanouts[].registry`, and add the quality gate
|
|
1181
|
+
with a redo route. The real plan's shape (abridged from
|
|
1182
|
+
`features/pkg-inventory-audit/audit.plan.json` in this repo):
|
|
1178
1183
|
|
|
1179
1184
|
```json
|
|
1180
|
-
"
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
"
|
|
1185
|
+
"fanouts": [ { "stage": "fan", "chain": ["lane"], "maxFanout": 3,
|
|
1186
|
+
"registry": ["chunk-1","chunk-2","chunk-3","chunk-4","chunk-5","chunk-6"] } ],
|
|
1187
|
+
"joins": [ { "stage": "jn", "forStage": "fan", "joinPolicy": "all-activated",
|
|
1188
|
+
"onInvalid": "named-failure" } ],
|
|
1189
|
+
"steps": [ …lanes…, { "stepId": "synthesize", "kind": "agent", "deps": ["jn"],
|
|
1190
|
+
"prompt": "Merge the lane JSONs into one inventory. Return STRICT JSON…" },
|
|
1191
|
+
{ "stepId": "check", "kind": "gate", "deps": ["synthesize"],
|
|
1192
|
+
"prompt": "…counts.total must equal 52… answer GATE: PASS or GATE: FAIL" } ],
|
|
1193
|
+
"gates": [ { "stepId": "check", "kind": "quality", "failRoute": "synthesize", "maxRedos": 1 } ]
|
|
1184
1194
|
```
|
|
1185
1195
|
|
|
1186
1196
|
The plan surface is deliberately NARROW and fully enacted: anything the generated loop would not
|
|
@@ -1190,14 +1200,14 @@ accepted and ignored.
|
|
|
1190
1200
|
#### Step 3 — validate, render, lint (the three gates before any run)
|
|
1191
1201
|
|
|
1192
1202
|
```bash
|
|
1193
|
-
dz workflow validate
|
|
1194
|
-
# → dz workflow validate: OK (digest sha256:
|
|
1203
|
+
dz workflow validate audit.plan.json
|
|
1204
|
+
# → dz workflow validate: OK (digest sha256:70992d9ddc86de15…)
|
|
1195
1205
|
|
|
1196
|
-
dz workflow render
|
|
1197
|
-
# → wrote
|
|
1206
|
+
dz workflow render audit.plan.json --o audit.loop.js
|
|
1207
|
+
# → wrote audit.loop.plan.json then audit.loop.js (exec-fp sha256:49feb8a2c1e17038…, blobs: trace)
|
|
1198
1208
|
|
|
1199
|
-
dz workflow-lint
|
|
1200
|
-
# → dz workflow-lint: PASS (0 fail, 1 warn, 0 inconclusive over 17 rules)
|
|
1209
|
+
dz workflow-lint audit.loop.js --plan audit.loop.plan.json --require-plan
|
|
1210
|
+
# → dz workflow-lint: PASS (mode=require-plan; 0 fail, 1 warn, 0 inconclusive over 17 rules)
|
|
1201
1211
|
```
|
|
1202
1212
|
|
|
1203
1213
|
`inconclusive` is never a pass, and the rendered script keeps your hand edits across re-renders
|
|
@@ -1205,18 +1215,37 @@ dz workflow-lint digest.loop.js --plan digest.loop.plan.json --require-plan
|
|
|
1205
1215
|
|
|
1206
1216
|
#### Step 4 — run it (Claude Code), read it back (anywhere)
|
|
1207
1217
|
|
|
1208
|
-
In **Claude Code**, paste exactly this:
|
|
1218
|
+
In **Claude Code**, paste exactly this shape:
|
|
1209
1219
|
|
|
1210
|
-
> Запусти мой цикл: `Workflow({ scriptPath: '
|
|
1220
|
+
> Запусти мой цикл: `Workflow({ scriptPath: 'audit.loop.js', args: { traceDir: '.dz/loop-trace/pkg-audit-1', runId: 'pkg-audit-1' } })` — и когда закончит, покажи `dz workflow-trace --run pkg-audit-1`.
|
|
1211
1221
|
|
|
1212
|
-
What
|
|
1213
|
-
|
|
1214
|
-
`GATE: FAIL` → the redo route re-runs `synthesize` → `check` answers `GATE: PASS` → `COMPLETED`.
|
|
1215
|
-
13 agent calls, one ledger row, the trace flushed at every settle. Then:
|
|
1222
|
+
What the real run produced (captured verbatim; the trace lives at `.dz/loop-trace/pkg-audit-1/` in
|
|
1223
|
+
this repo):
|
|
1216
1224
|
|
|
1217
|
-
```bash
|
|
1218
|
-
dz workflow-trace <runDir> --html report.html # timeline + SEQ invariants over the loop's own trace
|
|
1219
1225
|
```
|
|
1226
|
+
run pkg-audit-1; sources: trace, ledger
|
|
1227
|
+
1 run.opened plan=70992d9ddc86 exec-fp=49feb8a2c1e1
|
|
1228
|
+
2 dispatch lane:chunk-1#1 phase=Lanes
|
|
1229
|
+
3 dispatch lane:chunk-2#1 phase=Lanes
|
|
1230
|
+
4 dispatch lane:chunk-3#1 phase=Lanes
|
|
1231
|
+
5..7 settle lane:chunk-{1,2,3} outcome=ok
|
|
1232
|
+
8 dispatch synthesize#1 phase=Synthesize
|
|
1233
|
+
9 settle synthesize#4 outcome=ok
|
|
1234
|
+
10 dispatch check#1 phase=Gate causedBy=[9]
|
|
1235
|
+
11 settle check#5 outcome=ok ← GATE: PASS
|
|
1236
|
+
12 run.closed {"dispatched":5,"settled":5}
|
|
1237
|
+
```
|
|
1238
|
+
|
|
1239
|
+
The gate passed, the inventory (52 directories = 49 canonical + 2 private + 1 non-package) was
|
|
1240
|
+
cross-checked deterministically against the filesystem, and the stale test was re-pinned to it.
|
|
1241
|
+
|
|
1242
|
+
**And the run surfaced a real defect — kept here on purpose.** Read the trace again: the registry
|
|
1243
|
+
names six chunks, but only `chunk-1..3` ever dispatched — `maxFanout: 3` **silently truncated** the
|
|
1244
|
+
other three lanes, and the run stayed green only because the synthesize agent noticed the gap and
|
|
1245
|
+
audited the missing chunks with its own tools. That is exactly what the trace is for: it shows what
|
|
1246
|
+
your loop *did*, not what the plan promised. (Filed in this repo's backlog: over-registry items must
|
|
1247
|
+
become a named failure or a loud trace event, never a silent drop. Until then: keep
|
|
1248
|
+
`fanouts[].registry.length ≤ maxFanout`, and read the trace after the first run of any new plan.)
|
|
1220
1249
|
|
|
1221
1250
|
#### How to phrase the ASK — Claude Code vs Codex
|
|
1222
1251
|
|
|
@@ -3405,7 +3434,7 @@ npx @dzhechkov/p-replicator init
|
|
|
3405
3434
|
|
|
3406
3435
|
## Status
|
|
3407
3436
|
|
|
3408
|
-
`v0.4.
|
|
3437
|
+
`v0.4.5` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
3409
3438
|
|
|
3410
3439
|
## Claude Plugin
|
|
3411
3440
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/harness-cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes, OpenClaude, GitHub Copilot. 35 commands, 13 presets, 6 platform targets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,6 +40,13 @@
|
|
|
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
|
+
},
|
|
43
50
|
"dependencies": {
|
|
44
51
|
"@dzhechkov/harness-core": "^0.4.0",
|
|
45
52
|
"@dzhechkov/harness-presets": "^0.5.0",
|
|
@@ -75,12 +82,5 @@
|
|
|
75
82
|
"url": "https://github.com/djd1m/dz-harness-hub.git",
|
|
76
83
|
"directory": "packages/@dzhechkov/harness-cli"
|
|
77
84
|
},
|
|
78
|
-
"homepage": "https://github.com/djd1m/dz-harness-hub/tree/main/packages/@dzhechkov/harness-cli#readme"
|
|
79
|
-
|
|
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
|
-
}
|
|
85
|
+
"homepage": "https://github.com/djd1m/dz-harness-hub/tree/main/packages/@dzhechkov/harness-cli#readme"
|
|
86
|
+
}
|
package/sbom.json
CHANGED
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
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.
|