@dzhechkov/harness-cli 0.3.108 → 0.3.110
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 +21 -6
- package/package.json +1 -1
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 ~122 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 # 34 packages,
|
|
61
|
+
dz stats # 34 packages, 122 skills, 6 targets, 12 presets
|
|
62
62
|
dz dashboard # visual panel — packages, adapters, skill packs
|
|
63
|
-
dz registry # browse all
|
|
63
|
+
dz registry # browse all 122 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
|
|
@@ -187,6 +187,21 @@ npx @dzhechkov/keysarium init # 7-phase research + comman
|
|
|
187
187
|
- Need a **themed set** that works together → `--preset`
|
|
188
188
|
- Need a **full pipeline** with commands and governance → `npx`
|
|
189
189
|
|
|
190
|
+
### Skill Packs (8 packs · 122 skills)
|
|
191
|
+
|
|
192
|
+
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`.
|
|
193
|
+
|
|
194
|
+
| Pack | Skills | What's inside |
|
|
195
|
+
|------|--------|---------------|
|
|
196
|
+
| [@dzhechkov/skills-devops](https://www.npmjs.com/package/@dzhechkov/skills-devops) | 29 | CI/CD, IaC, containers, databases, observability, incident & problem mgmt, ITSM/ITIL |
|
|
197
|
+
| [@dzhechkov/skills-mcp](https://www.npmjs.com/package/@dzhechkov/skills-mcp) | 16 | MCP-server integrations — search, git/GitLab, Google Workspace, Notion, AgentDB memory |
|
|
198
|
+
| [@dzhechkov/skills-web3](https://www.npmjs.com/package/@dzhechkov/skills-web3) | 12 | On-chain / DeFi — wallets, swaps, bridges, ENS, agent identity (ERC-8004) |
|
|
199
|
+
| [@dzhechkov/skills-qe](https://www.npmjs.com/package/@dzhechkov/skills-qe) | 20 | Quality engineering — test-gen, coverage, chaos, defect intelligence, QCSD swarms |
|
|
200
|
+
| [@dzhechkov/skills-ecc](https://www.npmjs.com/package/@dzhechkov/skills-ecc) | 20 | Claude-Code engineering craft — agent architecture, autonomous loops, framework patterns |
|
|
201
|
+
| [@dzhechkov/skills-meta](https://www.npmjs.com/package/@dzhechkov/skills-meta) | 17 | Dev-process meta skills — explore, feature-adr, design-thinking, audit, skill-advisor |
|
|
202
|
+
| [@dzhechkov/skills-academic](https://www.npmjs.com/package/@dzhechkov/skills-academic) | 5 | Thesis-defense toolkit — dissertation review, questions, doc-check, defense eval |
|
|
203
|
+
| [@dzhechkov/skills-news](https://www.npmjs.com/package/@dzhechkov/skills-news) | 3 | *dz-original* — news digests (`news-digest`) + delta watches (`news-monitor`) + bundled `goap-research-ed25519` verified-research backend (mandatory) |
|
|
204
|
+
|
|
190
205
|
### Available Presets (12)
|
|
191
206
|
|
|
192
207
|
| Preset | Skills | Description |
|
|
@@ -202,7 +217,7 @@ npx @dzhechkov/keysarium init # 7-phase research + comman
|
|
|
202
217
|
| `web3` | 12 | Web3/DeFi (quicknode, zerion, symbiosis, bankr, veil, neynar, ...) |
|
|
203
218
|
| `mcp` | 16 | MCP servers (agentdb, brave-search, gmail, gitlab, comfyui, notion, ...) |
|
|
204
219
|
| `academic` | 5 | Thesis defense (review, questions, doc-check, live defense + answer eval) |
|
|
205
|
-
| `news` |
|
|
220
|
+
| `news` | 3 | News & monitoring (news-digest cited reports + news-monitor delta watches) |
|
|
206
221
|
|
|
207
222
|
#### What the `meta` skills do & how to trigger them
|
|
208
223
|
|
|
@@ -464,7 +479,7 @@ Scans a GitHub repo for SKILL.md files, generates `dz create-skill` commands.
|
|
|
464
479
|
### dz registry — searchable skill index
|
|
465
480
|
|
|
466
481
|
```bash
|
|
467
|
-
dz registry # visual panel:
|
|
482
|
+
dz registry # visual panel: 122 skills in 8 categories
|
|
468
483
|
dz registry search security # fuzzy search
|
|
469
484
|
dz registry --category mcp # filter by category
|
|
470
485
|
```
|
|
@@ -974,7 +989,7 @@ npx @dzhechkov/p-replicator init
|
|
|
974
989
|
|
|
975
990
|
## Status
|
|
976
991
|
|
|
977
|
-
`v0.3.
|
|
992
|
+
`v0.3.109` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
978
993
|
|
|
979
994
|
## Claude Plugin
|
|
980
995
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/harness-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.110",
|
|
4
4
|
"description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes, OpenClaude, GitHub Copilot. 34 commands, 12 presets, 6 platform targets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|