@dzhechkov/harness-cli 0.3.31 → 0.3.32

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 +33 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -418,7 +418,39 @@ This creates `.dz/memory.rvf`, registers the agentdb MCP server (41 tools), and
418
418
  | Command | When to use |
419
419
  |---------|-------------|
420
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 |
421
+ | `dz init --select agentdb-memory` | Lightweight only the SKILL.md guide (see below) |
422
+
423
+ ### What does `dz init --select agentdb-memory` actually do?
424
+
425
+ This is the **lightweight** path — it installs only the skill documentation, without configuring the backend:
426
+
427
+ ```
428
+ Step 1: Auto-discovers agentdb-memory/ in skills-mcp package
429
+ Step 2: Copies to .claude/skills/agentdb-memory/
430
+ ├── SKILL.md ← instructions for the agent
431
+ ├── schemas/output.json
432
+ ├── scripts/validate-config.json
433
+ └── evals/agentdb-memory.yaml
434
+
435
+ Step 3: Claude Code auto-discovers the skill from .claude/skills/
436
+ Step 4: When agent encounters a matching task, it reads SKILL.md
437
+ Step 5: SKILL.md teaches the agent WHICH tools to call and WHEN
438
+ ```
439
+
440
+ **What it does NOT do** (unlike `dz setup --memory agentdb`):
441
+ - Does NOT create `.dz/memory.rvf`
442
+ - Does NOT register agentdb MCP server
443
+ - Does NOT configure session hooks
444
+
445
+ **After `dz init --select agentdb-memory`, the user must manually add the MCP server:**
446
+ ```bash
447
+ claude mcp add agentdb -- npx agentdb@latest mcp start
448
+ ```
449
+
450
+ **When this is useful:**
451
+ - You already have agentdb installed separately and just want the skill guide
452
+ - You want to teach the agent about agentdb tools without committing to the full `.dz/` infrastructure
453
+ - You're in a team where agentdb is managed centrally but each developer needs the skill docs
422
454
 
423
455
  ---
424
456
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.31",
3
+ "version": "0.3.32",
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",
@@ -39,8 +39,8 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "@dzhechkov/harness-core": "0.3.12",
42
- "@dzhechkov/scout": "0.7.1",
43
- "@dzhechkov/harness-presets": "0.2.9"
42
+ "@dzhechkov/harness-presets": "0.2.9",
43
+ "@dzhechkov/scout": "0.7.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/node": "^25.6.0",