@dzhechkov/harness-cli 0.3.41 → 0.3.42

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 +30 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,9 +24,9 @@ npm install -g @dzhechkov/harness-cli # install the CLI
24
24
  dz help # see all commands
25
25
  dz pretrain # analyze project → auto-recommend skills/presets
26
26
  dz recommend "build API and deploy to K8s" # task advisor — decomposes your task into skills
27
- dz stats # 28 packages, 73 skills, 5 targets, 11 presets
27
+ dz stats # 28 packages, 75 skills, 5 targets, 11 presets
28
28
  dz dashboard # visual panel — packages, adapters, skill packs
29
- dz registry # browse all 73 skills by category
29
+ dz registry # browse all 75 skills by category
30
30
  dz registry search kubernetes # find specific skills
31
31
  dz registry --category devops # filter by domain
32
32
  dz downloads # npm weekly download stats
@@ -137,7 +137,7 @@ dz publish # publish all changed packages
137
137
 
138
138
  | Preset | Skills | Description |
139
139
  |--------|--------|-------------|
140
- | `meta` | 4 | Development process (explore, feature-adr, knowledge-extractor, design-thinking) |
140
+ | `meta` | 6 | Development process (explore, goap-research, problem-solver, design-thinking, feature-adr, knowledge-extractor) |
141
141
  | `qe-engineer` | 8 | Quality engineering (test-gen, coverage, chaos, defect, ...) |
142
142
  | `bto` | 1 | Build-Benchmark-Test-Optimize pipeline |
143
143
  | `health` | 8 | Medical AI (diagnostics, drugs, labs, clinical decisions) |
@@ -353,7 +353,7 @@ Scans a GitHub repo for SKILL.md files, generates `dz create-skill` commands.
353
353
  ### dz registry — searchable skill index
354
354
 
355
355
  ```bash
356
- dz registry # visual panel: 73 skills in 5 categories
356
+ dz registry # visual panel: 75 skills in 5 categories
357
357
  dz registry search security # fuzzy search
358
358
  dz registry --category mcp # filter by category
359
359
  ```
@@ -446,6 +446,32 @@ Phase 6: VALIDATE → Pilot with variance analysis: projected vs actual → Sc
446
446
  - **22 methodologies** with academic validation tiers (Strong/Moderate/Practitioner/Weak)
447
447
  - **12 validation rules** (DT-001 through DT-012) enforce quality per tier
448
448
 
449
+ ### What's included vs what's optional
450
+
451
+ The `meta` preset includes all **required** dependencies (6 skills). Optional integrations
452
+ require additional presets:
453
+
454
+ ```bash
455
+ # Required (included in meta):
456
+ dz setup --target claude-code --preset meta
457
+ # → explore, goap-research-ed25519, problem-solver-enhanced,
458
+ # design-thinking, feature-adr, knowledge-extractor
459
+
460
+ # For ALL optional integrations:
461
+ dz compose meta+feature-adr # + frontend-design, six-thinking-hats, qcsd-swarm
462
+ dz compose meta+keysarium # + reverse-engineering-unicorn
463
+ dz compose meta+feature-adr+keysarium # full power
464
+ ```
465
+
466
+ | Optional Skill | Preset | What it adds |
467
+ |---------------|--------|-------------|
468
+ | `frontend-design` | `feature-adr` | HTML/React prototypes (Phase 4) |
469
+ | `six-thinking-hats` | `feature-adr` | Team ideation (Phase 3) |
470
+ | `qcsd-ideation-swarm` | `feature-adr` | 9-agent quality risk (Phase 2-3) |
471
+ | `reverse-engineering-unicorn` | `keysarium` | Competitor CJM+JTBD (Phase 1) |
472
+
473
+ Without optional skills, design-thinking uses built-in fallbacks.
474
+
449
475
  BTO benchmark: L0 Grade A (100%), L2 Opus weighted 7.58/10.
450
476
 
451
477
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.41",
3
+ "version": "0.3.42",
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",