@dzhechkov/harness-cli 0.3.59 → 0.3.61
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 +29 -2
- 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
|
|
@@ -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:
|
package/package.json
CHANGED