@dzhechkov/harness-cli 0.3.61 → 0.3.63
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/README.md +36 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -539,6 +539,40 @@ dz init --target codex --preset meta --enrich
|
|
|
539
539
|
|
|
540
540
|
---
|
|
541
541
|
|
|
542
|
+
## Example: Understand & Develop an Existing Project
|
|
543
|
+
|
|
544
|
+
```bash
|
|
545
|
+
# 1. Analyze project → get recommendations
|
|
546
|
+
dz pretrain # detects stack, recommends presets
|
|
547
|
+
dz recommend "work on this Node.js API" # suggests skills + toolkits
|
|
548
|
+
|
|
549
|
+
# 2. Install skills
|
|
550
|
+
dz setup --target claude-code --preset meta # 8 core skills + self-learning
|
|
551
|
+
dz setup --target claude-code --preset qe-engineer # 20 QE skills
|
|
552
|
+
```
|
|
553
|
+
|
|
554
|
+
Install [Understand-Anything](https://github.com/Lum1104/Understand-Anything) plugin, then in Claude Code:
|
|
555
|
+
```
|
|
556
|
+
# 3. Map the codebase
|
|
557
|
+
/understand # builds knowledge graph
|
|
558
|
+
# → understand-anything-bridge feeds architecture context to all skills
|
|
559
|
+
|
|
560
|
+
# 4. Develop with full context
|
|
561
|
+
"Add a payment module"
|
|
562
|
+
# → feature-adr runs with architecture awareness (layers, hot spots, dependencies)
|
|
563
|
+
# → code generation informed by real dependency graph
|
|
564
|
+
# → QE review targets tests at high-impact files
|
|
565
|
+
# → agentshield-scan checks new configs for security
|
|
566
|
+
|
|
567
|
+
# 5. Verify impact
|
|
568
|
+
"What files are affected by my changes?"
|
|
569
|
+
# → blast radius calculation → targeted test generation
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
Architecture-aware development: every skill knows the codebase structure.
|
|
573
|
+
|
|
574
|
+
---
|
|
575
|
+
|
|
542
576
|
## Self-Learning: JSONL vs AgentDB
|
|
543
577
|
|
|
544
578
|
DZ Harness supports two memory backends for self-learning:
|
|
@@ -804,7 +838,7 @@ npx @dzhechkov/p-replicator init
|
|
|
804
838
|
|
|
805
839
|
## Status
|
|
806
840
|
|
|
807
|
-
`v0.3.
|
|
841
|
+
`v0.3.61` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
808
842
|
|
|
809
843
|
## Claude Plugin
|
|
810
844
|
|
|
@@ -819,7 +853,7 @@ claude plugin install dz-harness-hub@dz-harness-hub
|
|
|
819
853
|
claude --plugin-dir /path/to/dz-harness-hub
|
|
820
854
|
|
|
821
855
|
# Generate plugin manifest from current inventory:
|
|
822
|
-
dz plugin --version 0.3.
|
|
856
|
+
dz plugin --version 0.3.61
|
|
823
857
|
```
|
|
824
858
|
|
|
825
859
|
The `.claude-plugin/` directory contains `plugin.json` + `marketplace.json` compatible with [pi-claude-marketplace](https://npm.im/pi-claude-marketplace) and [skill-hub](https://npm.im/@jasonwen/skill-hub).
|
package/package.json
CHANGED