@dzhechkov/harness-cli 0.3.58 → 0.3.60

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 +31 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,7 +24,7 @@ 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, 108 skills, 5 targets, 11 presets
27
+ dz stats # 30 packages, 108 skills, 5 targets, 11 presets
28
28
  dz dashboard # visual panel — packages, adapters, skill packs
29
29
  dz registry # browse all 108 skills by category
30
30
  dz registry search kubernetes # find specific skills
@@ -262,7 +262,7 @@ dz scout --since 2026-05-01 # only recent repos
262
262
  **Radar mode** (`dz scout`) scans **9 sources in parallel (GitHub + npm + HN + MCP Registry + Glama + OSSInsight + Smithery + Semantic Scholar + arXiv):
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
- 3. **Compares against our 28 packages** — finds skills we don't have
265
+ 3. **Compares against our 30 packages** — finds skills we don't have
266
266
  4. **Recommends** — integrate (score ≥70) / monitor (40-69 + ≥50 stars) / skip
267
267
 
268
268
  **Deep analyst mode** (`dz scout --deep`) goes further for top-scored repos:
@@ -353,7 +353,7 @@ Compares installed skills with canonical source, reports which need `dz init --f
353
353
  ### dz downloads — npm weekly download stats
354
354
 
355
355
  ```bash
356
- dz downloads # fetch weekly downloads for all 28 packages
356
+ dz downloads # fetch weekly downloads for all 30 packages
357
357
  ```
358
358
 
359
359
  ### dz benchmark — L0 quality gate
@@ -512,6 +512,33 @@ BTO benchmark: L0 Grade A (100%), L2 Opus weighted 7.58/10.
512
512
 
513
513
  ---
514
514
 
515
+ ## Example: Import Skills from ECC
516
+
517
+ ```bash
518
+ dz install @dzhechkov/skills-ecc # 20 curated ECC skills
519
+ dz import-ecc --limit 50 # import 50 from GitHub
520
+ dz import-ecc --local-path /path/to/ECC # from local clone (fast)
521
+ dz import-ecc --select docker-patterns,tdd # cherry-pick
522
+ ```
523
+
524
+ ## Example: Security Scan with AgentShield
525
+
526
+ ```bash
527
+ # In Claude Code: "scan my agent config for security issues"
528
+ # → agentshield-scan skill activates (170 rules, 10 categories)
529
+ npx ecc-agentshield scan --format sarif # SARIF for GitHub Code Scanning
530
+ ```
531
+
532
+ ## Example: 4-Axis Risk Scoring
533
+
534
+ ```bash
535
+ dz init --target codex --preset meta --enrich
536
+ # → agents/openai.yaml includes risk_level per skill
537
+ # Axes: base_tool + file_sensitivity + blast_radius + irreversibility
538
+ ```
539
+
540
+ ---
541
+
515
542
  ## Self-Learning: JSONL vs AgentDB
516
543
 
517
544
  DZ Harness supports two memory backends for self-learning:
@@ -777,7 +804,7 @@ npx @dzhechkov/p-replicator init
777
804
 
778
805
  ## Status
779
806
 
780
- `v0.3.56` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
807
+ `v0.3.58` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
781
808
 
782
809
  ## Claude Plugin
783
810
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.58",
3
+ "version": "0.3.60",
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",