@dzhechkov/harness-cli 0.3.29 → 0.3.31
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 +19 -7
- package/package.json +8 -4
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
|
-
###
|
|
409
|
+
### How to enable AgentDB
|
|
410
410
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
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
|
|
|
@@ -592,4 +598,10 @@ npx @dzhechkov/p-replicator init
|
|
|
592
598
|
|
|
593
599
|
## Status
|
|
594
600
|
|
|
595
|
-
`v0.3.
|
|
601
|
+
`v0.3.30` — published on npm. Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
602
|
+
|
|
603
|
+
## Related Projects
|
|
604
|
+
|
|
605
|
+
- [AgentDB](https://github.com/ruvnet/agentdb) — Self-learning vector memory for AI agents (optional `--memory agentdb` backend)
|
|
606
|
+
- [OpenClaude](https://github.com/gitlawb/openclaude) — Open-source coding-agent CLI for multiple LLM providers (5th target platform)
|
|
607
|
+
- [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.31",
|
|
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",
|
|
@@ -34,9 +38,9 @@
|
|
|
34
38
|
"README.md"
|
|
35
39
|
],
|
|
36
40
|
"dependencies": {
|
|
37
|
-
"@dzhechkov/harness-
|
|
41
|
+
"@dzhechkov/harness-core": "0.3.12",
|
|
38
42
|
"@dzhechkov/scout": "0.7.1",
|
|
39
|
-
"@dzhechkov/harness-
|
|
43
|
+
"@dzhechkov/harness-presets": "0.2.9"
|
|
40
44
|
},
|
|
41
45
|
"devDependencies": {
|
|
42
46
|
"@types/node": "^25.6.0",
|