@dzhechkov/harness-cli 0.3.109 → 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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. 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 ~121 skills (design-thinking, QE, devops, web3, MCP, academic…). Five pains follow:
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, 121 skills, 6 targets, 12 presets
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 121 skills by category
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,7 +187,7 @@ 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 · 121 skills)
190
+ ### Skill Packs (8 packs · 122 skills)
191
191
 
192
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
193
 
@@ -200,7 +200,7 @@ Each pack is an npm package — click through for the **full per-skill documenta
200
200
  | [@dzhechkov/skills-ecc](https://www.npmjs.com/package/@dzhechkov/skills-ecc) | 20 | Claude-Code engineering craft — agent architecture, autonomous loops, framework patterns |
201
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
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) | 2 | *dz-original* — source-cited news digests (`news-digest`) + delta watches (`news-monitor`) |
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
204
 
205
205
  ### Available Presets (12)
206
206
 
@@ -217,7 +217,7 @@ Each pack is an npm package — click through for the **full per-skill documenta
217
217
  | `web3` | 12 | Web3/DeFi (quicknode, zerion, symbiosis, bankr, veil, neynar, ...) |
218
218
  | `mcp` | 16 | MCP servers (agentdb, brave-search, gmail, gitlab, comfyui, notion, ...) |
219
219
  | `academic` | 5 | Thesis defense (review, questions, doc-check, live defense + answer eval) |
220
- | `news` | 2 | News & monitoring (news-digest cited reports + news-monitor delta watches) |
220
+ | `news` | 3 | News & monitoring (news-digest cited reports + news-monitor delta watches) |
221
221
 
222
222
  #### What the `meta` skills do & how to trigger them
223
223
 
@@ -479,7 +479,7 @@ Scans a GitHub repo for SKILL.md files, generates `dz create-skill` commands.
479
479
  ### dz registry — searchable skill index
480
480
 
481
481
  ```bash
482
- dz registry # visual panel: 121 skills in 8 categories
482
+ dz registry # visual panel: 122 skills in 8 categories
483
483
  dz registry search security # fuzzy search
484
484
  dz registry --category mcp # filter by category
485
485
  ```
@@ -989,7 +989,7 @@ npx @dzhechkov/p-replicator init
989
989
 
990
990
  ## Status
991
991
 
992
- `v0.3.108` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
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).
993
993
 
994
994
  ## Claude Plugin
995
995
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.109",
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",