@dzhechkov/harness-cli 0.3.79 → 0.3.81

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 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -30,9 +30,9 @@ dz help # see all commands
30
30
  dz pretrain # analyze project files → recommend by tech stack
31
31
  dz recommend "build API and deploy to K8s" # keyword match → skills + toolkits
32
32
  dz recommend "work on this project" # generic? → auto-runs pretrain → recommends by stack
33
- dz stats # 30 packages, 108 skills, 5 targets, 11 presets
33
+ dz stats # 30 packages, 112 skills, 5 targets, 11 presets
34
34
  dz dashboard # visual panel — packages, adapters, skill packs
35
- dz registry # browse all 108 skills by category
35
+ dz registry # browse all 112 skills by category
36
36
  dz registry search kubernetes # find specific skills
37
37
  dz registry --category devops # filter by domain
38
38
  dz downloads # npm weekly download stats
@@ -147,7 +147,7 @@ dz publish # publish all changed packages
147
147
  dz init --target claude-code --select design-thinking
148
148
 
149
149
  # Curated set by topic (recommended):
150
- dz setup --target claude-code --preset meta # 8 development skills + self-learning
150
+ dz setup --target claude-code --preset meta # 12 development skills + self-learning
151
151
 
152
152
  # Full toolkit with orchestrated pipeline:
153
153
  npx @dzhechkov/keysarium init # 7-phase research + commands + memory
@@ -162,7 +162,7 @@ npx @dzhechkov/keysarium init # 7-phase research + comman
162
162
 
163
163
  | Preset | Skills | Description |
164
164
  |--------|--------|-------------|
165
- | `meta` | 8 | Development process (explore, goap-research, problem-solver, design-thinking, feature-adr, knowledge-extractor, understand-anything-bridge, agentshield-scan) |
165
+ | `meta` | 12 | Development process (explore, goap-research, problem-solver, design-thinking, feature-adr, knowledge-extractor, understand-anything-bridge, agentshield-scan) |
166
166
  | `qe-engineer` | 20 | Quality engineering (test-gen, coverage, chaos, defect, ...) |
167
167
  | `bto` | 1 | Build-Benchmark-Test-Optimize pipeline |
168
168
  | `health` | 8 | Medical AI (diagnostics, drugs, labs, clinical decisions) |
@@ -391,7 +391,7 @@ Scans a GitHub repo for SKILL.md files, generates `dz create-skill` commands.
391
391
  ### dz registry — searchable skill index
392
392
 
393
393
  ```bash
394
- dz registry # visual panel: 108 skills in 6 categories
394
+ dz registry # visual panel: 112 skills in 6 categories
395
395
  dz registry search security # fuzzy search
396
396
  dz registry --category mcp # filter by category
397
397
  ```
@@ -513,7 +513,7 @@ Phase 6: VALIDATE → Pilot with variance analysis: projected vs actual → Sc
513
513
 
514
514
  ### What's included vs what's optional
515
515
 
516
- **Core DT** — the `meta` preset includes all required dependencies (8 skills):
516
+ **Core DT** — the `meta` preset includes all required dependencies (12 skills):
517
517
 
518
518
  ```bash
519
519
  dz setup --target claude-code --preset meta
@@ -580,7 +580,7 @@ dz pretrain # detects stack, recommends pres
580
580
  dz recommend "work on this Node.js API" # suggests skills + toolkits
581
581
 
582
582
  # 2. Install skills (choose your level)
583
- dz setup --target claude-code --preset meta --memory agentdb # 8 skills (includes feature-adr)
583
+ dz setup --target claude-code --preset meta --memory agentdb # 12 skills (includes feature-adr)
584
584
  dz setup --target claude-code --preset qe-engineer # + 20 QE skills
585
585
 
586
586
  # Want the full feature-adr toolkit with /feature-adr command + governance?
@@ -614,6 +614,28 @@ Architecture-aware development: every skill knows the codebase structure.
614
614
 
615
615
  ---
616
616
 
617
+ ## Example: AI-Assisted Reasoning & Self-Improvement
618
+
619
+ ```
620
+ # Auto-select reasoning strategy:
621
+ "Compare 3 architectures" → structured-reasoning: Tree-of-Thought (branches + scoring)
622
+ "Debug this test" → structured-reasoning: Chain-of-Thought (linear trace)
623
+ "We've been looping" → structured-reasoning: Reflection-Suppression (break loop)
624
+
625
+ # Self-review before delivering:
626
+ "Write a migration and verify" → reflection-loop: draft → critique → revise (max 3 rounds)
627
+
628
+ # Manage long sessions:
629
+ "Context is getting long" → context-window-management: checkpoint + prune + continue
630
+
631
+ # Learn from success:
632
+ "Extract this as a skill" → skill-crystallizer: trace → reusable SKILL.md
633
+ ```
634
+
635
+ All included in `meta` preset.
636
+
637
+ ---
638
+
617
639
  ## Self-Learning: JSONL vs AgentDB
618
640
 
619
641
  DZ Harness supports two memory backends for self-learning:
@@ -879,7 +901,7 @@ npx @dzhechkov/p-replicator init
879
901
 
880
902
  ## Status
881
903
 
882
- `v0.3.72` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
904
+ `v0.3.80` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
883
905
 
884
906
  ## Claude Plugin
885
907
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.79",
3
+ "version": "0.3.81",
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",
@@ -52,7 +52,7 @@
52
52
  "@dzhechkov/skills-mcp": "^0.3.0",
53
53
  "@dzhechkov/skills-web3": "^0.2.0",
54
54
  "@dzhechkov/skills-qe": "^0.3.0",
55
- "@dzhechkov/skills-meta": "^0.6.0",
55
+ "@dzhechkov/skills-meta": "^0.7.0",
56
56
  "@dzhechkov/skills-academic": "^0.1.0",
57
57
  "@dzhechkov/skills-ecc": "^0.1.0"
58
58
  },