@dzhechkov/harness-cli 0.3.123 → 0.3.125

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 +18 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -34,12 +34,27 @@ The **`dz`** CLI — the main entry point to the DZ Harness Hub. Install AI skil
34
34
 
35
35
  ```bash
36
36
  npm install -g @dzhechkov/harness-cli
37
+ ```
38
+
39
+ > **Note:** If you get `EUNSUPPORTEDPROTOCOL workspace:*`, you're inside a pnpm/yarn workspace. Run the install from `/tmp` or `~` instead.
40
+
41
+ ### Updating an already-installed `dz`
37
42
 
38
- # Update to latest version (run from outside any workspace project):
43
+ `dz` does **not** auto-update an old global install stays old until you upgrade it explicitly.
44
+ Upgrading also refreshes all bundled skill packs to their latest published versions.
45
+
46
+ ```bash
47
+ # Check installed vs. latest:
48
+ npm ls -g @dzhechkov/harness-cli # what you have
49
+ npm view @dzhechkov/harness-cli version # latest on npm
50
+
51
+ # Upgrade (run from /tmp to avoid the workspace:* error above):
39
52
  cd /tmp && npm install -g @dzhechkov/harness-cli@latest
40
53
  ```
41
54
 
42
- > **Note:** If you get `EUNSUPPORTEDPROTOCOL workspace:*`, you're inside a pnpm/yarn workspace. Run the install from `/tmp` or `~` instead.
55
+ > **On an old version?** Tell-tale signs: `dz registry` shows an `other` bucket instead of
56
+ > `product`/`design` categories, or `dz init`/`dz setup` finds no skills. Upgrade as above.
57
+ > A system-wide global on Linux may live in `/usr/lib/node_modules` and need `sudo`.
43
58
 
44
59
  ## Using the arsenal: new vs. existing project
45
60
 
@@ -1044,7 +1059,7 @@ npx @dzhechkov/p-replicator init
1044
1059
 
1045
1060
  ## Status
1046
1061
 
1047
- `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).
1062
+ `v0.3.125` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
1048
1063
 
1049
1064
  ## Claude Plugin
1050
1065
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.123",
3
+ "version": "0.3.125",
4
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",
@@ -54,7 +54,7 @@
54
54
  "@dzhechkov/skills-reverse-engineering": "^0.1.0",
55
55
  "@dzhechkov/skills-presentation-storyteller": "^0.1.0",
56
56
  "@dzhechkov/skills-website-cloner": "^0.1.0",
57
- "@dzhechkov/harness-core": "0.3.38"
57
+ "@dzhechkov/harness-core": "0.3.39"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/node": "^25.6.0",