@dzhechkov/harness-cli 0.3.30 → 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.
- package/README.md +40 -2
- package/package.json +6 -2
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` |
|
|
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
|
|
|
@@ -598,4 +630,10 @@ npx @dzhechkov/p-replicator init
|
|
|
598
630
|
|
|
599
631
|
## Status
|
|
600
632
|
|
|
601
|
-
`v0.3.
|
|
633
|
+
`v0.3.30` — published on npm. Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
634
|
+
|
|
635
|
+
## Related Projects
|
|
636
|
+
|
|
637
|
+
- [AgentDB](https://github.com/ruvnet/agentdb) — Self-learning vector memory for AI agents (optional `--memory agentdb` backend)
|
|
638
|
+
- [OpenClaude](https://github.com/gitlawb/openclaude) — Open-source coding-agent CLI for multiple LLM providers (5th target platform)
|
|
639
|
+
- [agentskills.io](https://agentskills.io) — Open standard for agent skill definitions (SKILL.md format)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/harness-cli",
|
|
3
|
-
"version": "0.3.
|
|
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",
|
|
@@ -15,7 +15,11 @@
|
|
|
15
15
|
"opencode",
|
|
16
16
|
"hermes",
|
|
17
17
|
"ai-skills",
|
|
18
|
-
"cross-platform"
|
|
18
|
+
"cross-platform",
|
|
19
|
+
"openclaude",
|
|
20
|
+
"agentdb",
|
|
21
|
+
"self-learning",
|
|
22
|
+
"mcp"
|
|
19
23
|
],
|
|
20
24
|
"main": "./dist/index.js",
|
|
21
25
|
"types": "./dist/index.d.ts",
|