@dzhechkov/harness-cli 0.3.119 → 0.3.121
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 +10 -8
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ The **`dz`** CLI — the main entry point to the DZ Harness Hub. Install AI skil
|
|
|
6
6
|
|
|
7
7
|
> **`dz` is a package manager + cross-compiler for your AI agent harness.** Write a skill once in one canonical form; `dz` installs it into any agent's harness, holds it to a quality bar, and lets the harness learn over time.
|
|
8
8
|
|
|
9
|
-
**The problem.** You accumulate ~
|
|
9
|
+
**The problem.** You accumulate ~145 skills (design-thinking, QE, devops, web3, MCP, academic…). Five pains follow:
|
|
10
10
|
|
|
11
11
|
1. **Every agent wants a different layout.** Claude Code reads `.claude/skills/`, Codex `.codex/`, OpenCode/Hermes/OpenClaude their own. Hand-maintaining N copies is sync hell.
|
|
12
12
|
2. **Skills arrive from many upstream repos** — they must be *canonicalized* (brought to one form) and kept in sync without losing provenance.
|
|
@@ -58,9 +58,9 @@ dz help # see all commands
|
|
|
58
58
|
dz pretrain # analyze project files → recommend by tech stack
|
|
59
59
|
dz recommend "build API and deploy to K8s" # keyword match → skills + toolkits
|
|
60
60
|
dz recommend "work on this project" # generic? → auto-runs pretrain → recommends by stack
|
|
61
|
-
dz stats #
|
|
61
|
+
dz stats # 40 packages, 145 skills, 6 targets, 13 presets
|
|
62
62
|
dz dashboard # visual panel — packages, adapters, skill packs
|
|
63
|
-
dz registry # browse all
|
|
63
|
+
dz registry # browse all 145 skills by category
|
|
64
64
|
dz registry search kubernetes # find specific skills
|
|
65
65
|
dz registry --category devops # filter by domain
|
|
66
66
|
dz downloads # npm weekly download stats
|
|
@@ -191,7 +191,7 @@ npx @dzhechkov/keysarium init # 7-phase research + comman
|
|
|
191
191
|
- Need a **themed set** that works together → `--preset`
|
|
192
192
|
- Need a **full pipeline** with commands and governance → `npx`
|
|
193
193
|
|
|
194
|
-
### Skill Packs (
|
|
194
|
+
### Skill Packs (14 packs · 145 skills)
|
|
195
195
|
|
|
196
196
|
Each pack is an npm package — click through for the **full per-skill documentation** (what each skill does + how to trigger it). Install a whole pack with `dz install <pkg>`, or pick skills with `dz init --select` / a `--preset`.
|
|
197
197
|
|
|
@@ -209,6 +209,8 @@ Each pack is an npm package — click through for the **full per-skill documenta
|
|
|
209
209
|
| [@dzhechkov/skills-reverse-engineering](https://www.npmjs.com/package/@dzhechkov/skills-reverse-engineering) | 1 | *dz-original* — `reverse-engineering-unicorn`: company → launch playbook (+CJM) via 6-module QUICK/DEEP/VERIFIED pipeline; canonical home that resolved the keysarium↔p-replicator drift ([ADR-0001](https://github.com/djd1m/dz-harness-hub/blob/main/docs/adr/0001-skill-canonicalization-and-dependency-model.md)) |
|
|
210
210
|
| [@dzhechkov/skills-presentation-storyteller](https://www.npmjs.com/package/@dzhechkov/skills-presentation-storyteller) | 1 | *dz-original* — `presentation-storyteller`: selling deck + verified sources + slide-by-slide speaker script; referenced (not vendored) by reverse-engineering-unicorn's Post-M6 step ([ADR-0001](https://github.com/djd1m/dz-harness-hub/blob/main/docs/adr/0001-skill-canonicalization-and-dependency-model.md)) |
|
|
211
211
|
| [@dzhechkov/skills-website-cloner](https://www.npmjs.com/package/@dzhechkov/skills-website-cloner) | 1 | *imported (MIT)* — `clone-website`: live site → pixel-perfect Next.js clone (recon → specs → parallel build → visual QA); needs a browser-MCP + Next.js scaffold; referenced by p-replicator's `/replicate` ([ADR-0001](https://github.com/djd1m/dz-harness-hub/blob/main/docs/adr/0001-skill-canonicalization-and-dependency-model.md)) |
|
|
212
|
+
| [@dzhechkov/skills-pm](https://www.npmjs.com/package/@dzhechkov/skills-pm) | 18 | *imported (MIT)* — product-management toolkit: OST, RICE/ICE prioritization, product-strategy, pricing, OKRs, NSM/metrics/A-B/cohort, outcome-roadmap, stakeholder-map, sprint-plan, strategy-red-team, GTM/growth/beachhead, market-sizing; curated from phuryn/pm-skills (`dz init --preset pm`) ([ADR-0002](https://github.com/djd1m/dz-harness-hub/blob/main/docs/adr/0002-product-and-design-expansion.md)) |
|
|
213
|
+
| [@dzhechkov/skills-taste](https://www.npmjs.com/package/@dzhechkov/skills-taste) | 1 | *imported (MIT)* — `design-taste-frontend`: anti-slop landing/portfolio/redesign framework (dials + pre-flight + GSAP skeletons); complements frontend-design (`dz init --select design-taste-frontend`) ([ADR-0002](https://github.com/djd1m/dz-harness-hub/blob/main/docs/adr/0002-product-and-design-expansion.md)) |
|
|
212
214
|
|
|
213
215
|
### Available Presets (12)
|
|
214
216
|
|
|
@@ -347,7 +349,7 @@ dz scout --since 2026-05-01 # only recent repos
|
|
|
347
349
|
**Radar mode** (`dz scout`) scans **11 sources** in parallel (GitHub + npm + HN + MCP Registry + Glama + OSSInsight + Smithery + Semantic Scholar + arXiv + ECC + AgentBox):
|
|
348
350
|
1. **Detects skill format** — SKILL.md, plugin.json, .claude/skills/, .claude-plugin/, MCP manifests
|
|
349
351
|
2. **Scores relevance** — format (40%) + stars (30%) + recency (20%) + novelty (10%)
|
|
350
|
-
3. **Compares against our
|
|
352
|
+
3. **Compares against our 40 packages** — finds skills we don't have
|
|
351
353
|
4. **Recommends** — integrate (score ≥70) / monitor (40-69 + ≥50 stars) / skip
|
|
352
354
|
|
|
353
355
|
**Deep analyst mode** (`dz scout --deep`) goes further for top-scored repos:
|
|
@@ -438,7 +440,7 @@ Compares installed skills with canonical source, reports which need `dz init --f
|
|
|
438
440
|
### dz downloads — npm weekly download stats
|
|
439
441
|
|
|
440
442
|
```bash
|
|
441
|
-
dz downloads # fetch weekly downloads for all
|
|
443
|
+
dz downloads # fetch weekly downloads for all 40 packages
|
|
442
444
|
```
|
|
443
445
|
|
|
444
446
|
### dz benchmark — L0 quality gate
|
|
@@ -488,7 +490,7 @@ Scans a GitHub repo for SKILL.md files, generates `dz create-skill` commands.
|
|
|
488
490
|
### dz registry — searchable skill index
|
|
489
491
|
|
|
490
492
|
```bash
|
|
491
|
-
dz registry # visual panel:
|
|
493
|
+
dz registry # visual panel: 145 skills in 9 categories
|
|
492
494
|
dz registry search security # fuzzy search
|
|
493
495
|
dz registry --category mcp # filter by category
|
|
494
496
|
```
|
|
@@ -998,7 +1000,7 @@ npx @dzhechkov/p-replicator init
|
|
|
998
1000
|
|
|
999
1001
|
## Status
|
|
1000
1002
|
|
|
1001
|
-
`v0.3.
|
|
1003
|
+
`v0.3.121` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
1002
1004
|
|
|
1003
1005
|
## Claude Plugin
|
|
1004
1006
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/harness-cli",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes, OpenClaude, GitHub Copilot.
|
|
3
|
+
"version": "0.3.121",
|
|
4
|
+
"description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes, OpenClaude, GitHub Copilot. 35 commands, 13 presets, 6 platform targets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "dzhechko",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"@dzhechkov/skills-academic": "^0.3.0",
|
|
49
49
|
"@dzhechkov/skills-ecc": "^0.1.0",
|
|
50
50
|
"@dzhechkov/skills-news": "^0.1.0",
|
|
51
|
+
"@dzhechkov/skills-pm": "^0.1.0",
|
|
51
52
|
"@dzhechkov/harness-core": "0.3.37"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|