@dzhechkov/harness-cli 0.3.60 → 0.3.62
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 +38 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -85,7 +85,7 @@ dz benchmark packages/@dzhechkov/skills-devops --all # batch all
|
|
|
85
85
|
dz benchmark skill-a --compare skill-b # A/B compare
|
|
86
86
|
|
|
87
87
|
# Find skills to canonicalize from the ecosystem:
|
|
88
|
-
dz scout # scan
|
|
88
|
+
dz scout # scan 10 sources (GitHub, npm+plugins, HN, ...)
|
|
89
89
|
dz scout --deep # deep analysis with SKILL.md parsing
|
|
90
90
|
dz auto-canonicalize --source github.com/user/repo --pack packages/@dzhechkov/skills-devops
|
|
91
91
|
```
|
|
@@ -259,7 +259,7 @@ dz scout --topics mcp-server,ai-agent # custom topics
|
|
|
259
259
|
dz scout --since 2026-05-01 # only recent repos
|
|
260
260
|
```
|
|
261
261
|
|
|
262
|
-
**Radar mode** (`dz scout`) scans **
|
|
262
|
+
**Radar mode** (`dz scout`) scans **10 sources in parallel (GitHub + npm + HN + MCP Registry + Glama + OSSInsight + Smithery + Semantic Scholar + arXiv + ECC):
|
|
263
263
|
1. **Detects skill format** — SKILL.md, plugin.json, .claude/skills/, .claude-plugin/, MCP manifests
|
|
264
264
|
2. **Scores relevance** — format (40%) + stars (30%) + recency (20%) + novelty (10%)
|
|
265
265
|
3. **Compares against our 30 packages** — finds skills we don't have
|
|
@@ -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
|
+
Then in Claude Code:
|
|
555
|
+
```
|
|
556
|
+
# 3. Map the codebase (requires Understand-Anything plugin)
|
|
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