@dzhechkov/harness-cli 0.3.177 → 0.3.179

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 +12 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1011,7 +1011,17 @@ Bridge: with the agentdb backend enabled, `dz recall` itself is the bridge — i
1011
1011
 
1012
1012
  ### Semantic recall (vector tier)
1013
1013
 
1014
- `dz recall` is **hybrid** when the vector tier is available and **exactly the old lexical command** when it is not — enabling it never changes behavior for projects that skip it:
1014
+ `dz recall` is **hybrid** when the vector tier is available and **exactly the old lexical command** when it is not — enabling it never changes behavior for projects that skip it.
1015
+
1016
+ **Before → after** (what changes when you enable it):
1017
+
1018
+ | | Before (lexical only) | After (hybrid vector tier) |
1019
+ |---|---|---|
1020
+ | Match | exact tokens / FTS5 stems | + **semantic similarity** (paraphrases, synonyms) |
1021
+ | `recall "how do I stop repeated DB lookups"` after teaching *"Use DataLoader to batch DB round-trips"* | ✗ miss (no shared words) | ✅ hit (same meaning) |
1022
+ | Engine absent | works | **byte-identical** behavior (`--semantic` → honest exit-1 ask) |
1023
+
1024
+ **Scenario** — you taught a lesson weeks ago, now you search for it in *different words*: with the lexical tier `dz recall "how do I stop repeated database lookups"` misses the DataLoader lesson (zero shared keywords); with the vector tier it surfaces by **meaning**. Walk-through:
1015
1025
 
1016
1026
  ```bash
1017
1027
  dz setup --target claude-code --memory agentdb # enables the vector tier (agentdb engine)
@@ -1221,7 +1231,7 @@ npx @dzhechkov/p-replicator init
1221
1231
 
1222
1232
  ## Status
1223
1233
 
1224
- `v0.3.175` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
1234
+ `v0.3.179` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
1225
1235
 
1226
1236
  ## Claude Plugin
1227
1237
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.177",
3
+ "version": "0.3.179",
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",