@dzhechkov/harness-cli 0.3.29 → 0.3.30

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 -6
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -406,13 +406,19 @@ When using `--memory agentdb`, the following algorithms automatically tune searc
406
406
 
407
407
  The bandit automatically selects the best algorithm for your usage pattern — no manual tuning needed.
408
408
 
409
- ### Three ways to use AgentDB
409
+ ### How to enable AgentDB
410
410
 
411
- | Command | What it does | Result |
412
- |---------|-------------|--------|
413
- | `dz setup --memory agentdb` | Creates .rvf, registers MCP server, configures hooks | Infrastructure ready |
414
- | `dz init --select agentdb-memory` | Installs SKILL.md teaching agent to use 41 MCP tools | Agent knows how |
415
- | Both (recommended) | Full setup: infrastructure + instructions | Agent can self-learn |
411
+ ```bash
412
+ # One command — everything is set up:
413
+ dz setup --target claude-code --preset devops --memory agentdb
414
+ ```
415
+
416
+ This creates `.dz/memory.rvf`, registers the agentdb MCP server (41 tools), and configures session hooks. The agent can immediately use `agentdb_pattern_store`, `agentdb_reflexion_recall`, etc. — no additional `dz init` needed.
417
+
418
+ | Command | When to use |
419
+ |---------|-------------|
420
+ | `dz setup --memory agentdb` | **Recommended** — full setup in one step |
421
+ | `dz init --select agentdb-memory` | Only if you want the SKILL.md guide without the infrastructure |
416
422
 
417
423
  ---
418
424
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.29",
3
+ "version": "0.3.30",
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",
@@ -34,9 +34,9 @@
34
34
  "README.md"
35
35
  ],
36
36
  "dependencies": {
37
+ "@dzhechkov/harness-core": "0.3.12",
37
38
  "@dzhechkov/harness-presets": "0.2.9",
38
- "@dzhechkov/scout": "0.7.1",
39
- "@dzhechkov/harness-core": "0.3.12"
39
+ "@dzhechkov/scout": "0.7.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^25.6.0",