@dzhechkov/harness-cli 0.3.99 → 0.3.101
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 +6 -6
- package/package.json +2 -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 ~119 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 # 33 packages,
|
|
61
|
+
dz stats # 33 packages, 119 skills, 6 targets, 11 presets
|
|
62
62
|
dz dashboard # visual panel — packages, adapters, skill packs
|
|
63
|
-
dz registry # browse all
|
|
63
|
+
dz registry # browse all 119 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
|
|
@@ -462,7 +462,7 @@ Scans a GitHub repo for SKILL.md files, generates `dz create-skill` commands.
|
|
|
462
462
|
### dz registry — searchable skill index
|
|
463
463
|
|
|
464
464
|
```bash
|
|
465
|
-
dz registry # visual panel:
|
|
465
|
+
dz registry # visual panel: 119 skills in 6 categories
|
|
466
466
|
dz registry search security # fuzzy search
|
|
467
467
|
dz registry --category mcp # filter by category
|
|
468
468
|
```
|
|
@@ -619,7 +619,7 @@ BTO benchmark: L0 Grade A (100%), L2 Opus weighted 7.58/10.
|
|
|
619
619
|
## Example: Import Skills from ECC
|
|
620
620
|
|
|
621
621
|
```bash
|
|
622
|
-
dz install @dzhechkov/skills-ecc #
|
|
622
|
+
dz install @dzhechkov/skills-ecc # 21 curated ECC skills
|
|
623
623
|
dz import-ecc --limit 50 # import 50 from GitHub
|
|
624
624
|
dz import-ecc --local-path /path/to/ECC # from local clone (fast)
|
|
625
625
|
dz import-ecc --select docker-patterns,tdd # cherry-pick
|
|
@@ -972,7 +972,7 @@ npx @dzhechkov/p-replicator init
|
|
|
972
972
|
|
|
973
973
|
## Status
|
|
974
974
|
|
|
975
|
-
`v0.3.
|
|
975
|
+
`v0.3.100` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
976
976
|
|
|
977
977
|
## Claude Plugin
|
|
978
978
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/harness-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.101",
|
|
4
4
|
"description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes, OpenClaude, GitHub Copilot. 32 commands, 11 presets, 6 platform targets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@dzhechkov/skills-meta": "^0.9.0",
|
|
48
48
|
"@dzhechkov/skills-academic": "^0.3.0",
|
|
49
49
|
"@dzhechkov/skills-ecc": "^0.1.0",
|
|
50
|
-
"@dzhechkov/harness-core": "0.3.
|
|
50
|
+
"@dzhechkov/harness-core": "0.3.33"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/node": "^25.6.0",
|