@dzhechkov/harness-cli 0.3.41 → 0.3.43

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 +33 -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,35 @@ 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
+ **Core DT** — the `meta` preset includes all required dependencies (6 skills):
452
+
453
+ ```bash
454
+ dz setup --target claude-code --preset meta
455
+ # → explore, goap-research-ed25519, problem-solver-enhanced,
456
+ # design-thinking, feature-adr, knowledge-extractor
457
+ ```
458
+
459
+ **Full DT** — for ALL optional integrations, install [agentic-qe](https://github.com/proffesor-for-testing/agentic-qe):
460
+
461
+ ```bash
462
+ npm install -g agentic-qe && aqe init --auto
463
+ # → 94 QE skills + 55 agents in .claude/skills/ and .claude/agents/
464
+ # → six-thinking-hats, qcsd-ideation-swarm, frontend-design, brutal-honesty-review
465
+ ```
466
+
467
+ Or cherry-pick: `dz compose meta+keysarium` for competitive analysis.
468
+
469
+ | Optional Skill | Source | What it adds |
470
+ |---------------|--------|-------------|
471
+ | `frontend-design` | `aqe init` / `keysarium` | HTML/React prototypes (Phase 4) |
472
+ | `six-thinking-hats` | `aqe init` | Team ideation (Phase 3) |
473
+ | `qcsd-ideation-swarm` | `aqe init` | 9-agent quality risk (Phase 2-3) |
474
+ | `reverse-engineering-unicorn` | `keysarium` | Competitor CJM+JTBD (Phase 1) |
475
+
476
+ Without optional skills, design-thinking uses built-in fallbacks.
477
+
449
478
  BTO benchmark: L0 Grade A (100%), L2 Opus weighted 7.58/10.
450
479
 
451
480
  ---
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.43",
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",