@dzhechkov/harness-cli 0.3.6 → 0.3.8

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 +45 -14
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -54,21 +54,25 @@ npx @dzhechkov/skills-analyst-manual init # 3-phase analyst composite
54
54
 
55
55
  **Difference:** `dz init --preset` installs individual skills from `.claude/skills/` source into a target platform tree. Standalone `npx` packages have their own CLI and install a complete toolkit with commands, rules, shards, and agents — a richer but self-contained experience.
56
56
 
57
- ## All Commands (11)
57
+ ## All Commands (17)
58
58
 
59
59
  ```
60
- dz init --target <name> [--preset <name>] [--select id,id,...] [--force]
61
- dz verify [--skills-dir <dir>] [--target <name>]
62
- dz sync [--canonical <dir>] [--project <dir>] [--dry-run] [--force]
63
- dz update (alias for sync)
64
- dz list [--skills-dir <dir>]
65
- dz info --id <skill-id> [--skills-dir <dir>]
66
- dz create-skill --name <id> [--description <text>] [--tier 1|2|3] [--bto]
67
- dz migrate [--project <dir>]
68
- dz scout [--topics <list>] [--since <date>]
69
- dz workflow --task <name> [--dry-run]
70
- dz doctor [--project <dir>]
71
- dz roam [--apply] [--slug <slug>]
60
+ dz init --target <name> [--preset <name>] [--select id,id,...] [--force]
61
+ dz install <npm-pkg> [--target <name>] [--project <dir>]
62
+ dz verify [--skills-dir <dir>] [--target <name>]
63
+ dz sync [--canonical <dir>] [--project <dir>] [--dry-run] [--force]
64
+ dz update (alias for sync)
65
+ dz list [--skills-dir <dir>]
66
+ dz info --id <skill-id> [--skills-dir <dir>]
67
+ dz create-skill --name <id> [--description <text>] [--tier 1|2|3] [--bto]
68
+ dz migrate [--project <dir>]
69
+ dz scout [--topics <list>] [--since <date>] [--deep]
70
+ dz workflow --task <name> [--dry-run]
71
+ dz sync-upstream [--package <dir>]
72
+ dz stats
73
+ dz dashboard
74
+ dz doctor [--project <dir>]
75
+ dz roam [--apply] [--slug <slug>]
72
76
  dz help
73
77
  ```
74
78
 
@@ -161,6 +165,33 @@ The `--bto` flag generates eval templates compatible with `/bto-test`:
161
165
 
162
166
  After scaffolding, fill in the SKILL.md protocol and run `/bto-test .claude/skills/my-skill` to evaluate.
163
167
 
168
+ ### dz install — install skills from any npm package
169
+
170
+ ```bash
171
+ # Install skills from any npm package directly
172
+ dz install @dzhechkov/skills-devops
173
+ dz install @dzhechkov/skills-web3 --target openclaude
174
+ dz install @lythos/skill-curator --target claude-code
175
+ ```
176
+
177
+ Runs `npm install`, discovers SKILL.md files in the package, copies them to the target platform directory. Works with any agentskills.io-compatible npm package.
178
+
179
+ ### dz sync-upstream — check for upstream updates
180
+
181
+ ```bash
182
+ # Check if canonicalized skills have upstream changes
183
+ dz sync-upstream --package packages/@dzhechkov/skills-devops
184
+ ```
185
+
186
+ Reads `sources.json` in the package, fetches SKILL.md from origin repos, reports which skills have changed. Useful for keeping canonicalized skills in sync with their sources.
187
+
188
+ ### dz stats + dz dashboard
189
+
190
+ ```bash
191
+ dz stats # Quick metrics: packages, skills, targets, presets
192
+ dz dashboard # Visual panel with all packages, adapters, skill packs
193
+ ```
194
+
164
195
  ---
165
196
 
166
197
  ## How it works
@@ -339,4 +370,4 @@ npx @dzhechkov/p-replicator init
339
370
 
340
371
  ## Status
341
372
 
342
- `v0.3.2` — published on npm. Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
373
+ `v0.3.6` — published on npm. Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes. 11 commands, 7 presets, 4 platform adapters.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -35,8 +35,8 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@dzhechkov/harness-presets": "0.2.2",
38
- "@dzhechkov/scout": "0.7.1",
39
- "@dzhechkov/harness-core": "0.3.3"
38
+ "@dzhechkov/harness-core": "0.3.3",
39
+ "@dzhechkov/scout": "0.7.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^25.6.0",