@dzhechkov/harness-cli 0.3.15 → 0.3.16

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.
Files changed (2) hide show
  1. package/README.md +53 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -55,11 +55,12 @@ npx @dzhechkov/skills-analyst-manual init # 3-phase analyst composite
55
55
 
56
56
  **Difference:** `dz init --preset` installs individual skills from `.claude/skills/` source into a target platform tree. Standalone `npx` packages have their own CLI and install a complete toolkit with commands, rules, shards, and agents — a richer but self-contained experience.
57
57
 
58
- ## All Commands (21)
58
+ ## All Commands (23)
59
59
 
60
60
  ```
61
61
  dz init --target <name> [--preset <name>] [--select id,id,...] [--force]
62
62
  dz install <npm-pkg> [--target <name>] [--project <dir>]
63
+ dz upgrade [--target <name>] [--project <dir>]
63
64
  dz verify [--skills-dir <dir>] [--target <name>]
64
65
  dz sync [--canonical <dir>] [--project <dir>] [--dry-run] [--force]
65
66
  dz update (alias for sync)
@@ -73,6 +74,7 @@ dz auto-canonicalize --source <github-url> --pack <skills-pack>
73
74
  dz sync-upstream [--package <dir>]
74
75
  dz scout [--topics <list>] [--since <date>] [--deep]
75
76
  dz workflow --task <name> [--dry-run]
77
+ dz downloads
76
78
  dz migrate [--project <dir>]
77
79
  dz stats
78
80
  dz dashboard
@@ -190,6 +192,55 @@ dz sync-upstream --package packages/@dzhechkov/skills-devops
190
192
 
191
193
  Reads `sources.json` in the package, fetches SKILL.md from origin repos, reports which skills have changed. Useful for keeping canonicalized skills in sync with their sources.
192
194
 
195
+ ### dz upgrade — check installed skills for updates
196
+
197
+ ```bash
198
+ dz upgrade # check .claude/skills/ against canonical
199
+ dz upgrade --target openclaude # check .openclaude/skills/
200
+ ```
201
+
202
+ Compares installed skills with canonical source, reports which need `dz init --force` to update.
203
+
204
+ ### dz downloads — npm weekly download stats
205
+
206
+ ```bash
207
+ dz downloads # fetch weekly downloads for all 28 packages
208
+ ```
209
+
210
+ ### dz benchmark — L0 quality gate
211
+
212
+ ```bash
213
+ dz benchmark packages/@dzhechkov/skills-devops/terraform # single skill
214
+ dz benchmark packages/@dzhechkov/skills-devops --all # batch all
215
+ dz benchmark skill-a --compare skill-b # A/B compare
216
+ ```
217
+
218
+ 19 deterministic checks (U1-U5 universal + S1-S14 skill-specific). Grade A = 95%+. For L1/L2 LLM judges, use `/bto-test` inside Claude Code.
219
+
220
+ ### dz publish — automated npm publish
221
+
222
+ ```bash
223
+ dz publish --dry-run # preview what would publish
224
+ dz publish --filter skills-devops # publish specific package
225
+ dz publish --filter skills-devops --bump-only # bump version only, no publish
226
+ ```
227
+
228
+ ### dz auto-canonicalize — discover skills in GitHub repos
229
+
230
+ ```bash
231
+ dz auto-canonicalize --source github.com/user/repo --pack packages/@dzhechkov/skills-devops
232
+ ```
233
+
234
+ Scans a GitHub repo for SKILL.md files, generates `dz create-skill` commands.
235
+
236
+ ### dz registry — searchable skill index
237
+
238
+ ```bash
239
+ dz registry # visual panel: 59 skills in 5 categories
240
+ dz registry search security # fuzzy search
241
+ dz registry --category mcp # filter by category
242
+ ```
243
+
193
244
  ### dz stats + dz dashboard
194
245
 
195
246
  ```bash
@@ -375,4 +426,4 @@ npx @dzhechkov/p-replicator init
375
426
 
376
427
  ## Status
377
428
 
378
- `v0.3.14` — published on npm. Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
429
+ `v0.3.16` — published on npm. Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes. 11 commands, 7 presets, 4 platform adapters.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -35,8 +35,8 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@dzhechkov/harness-core": "0.3.7",
38
- "@dzhechkov/scout": "0.7.1",
39
- "@dzhechkov/harness-presets": "0.2.6"
38
+ "@dzhechkov/harness-presets": "0.2.6",
39
+ "@dzhechkov/scout": "0.7.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^25.6.0",