@dzhechkov/harness-cli 0.3.42 → 0.3.43
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 +14 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -448,26 +448,29 @@ Phase 6: VALIDATE → Pilot with variance analysis: projected vs actual → Sc
|
|
|
448
448
|
|
|
449
449
|
### What's included vs what's optional
|
|
450
450
|
|
|
451
|
-
|
|
452
|
-
require additional presets:
|
|
451
|
+
**Core DT** — the `meta` preset includes all required dependencies (6 skills):
|
|
453
452
|
|
|
454
453
|
```bash
|
|
455
|
-
# Required (included in meta):
|
|
456
454
|
dz setup --target claude-code --preset meta
|
|
457
455
|
# → explore, goap-research-ed25519, problem-solver-enhanced,
|
|
458
456
|
# design-thinking, feature-adr, knowledge-extractor
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
**Full DT** — for ALL optional integrations, install [agentic-qe](https://github.com/proffesor-for-testing/agentic-qe):
|
|
459
460
|
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
461
|
+
```bash
|
|
462
|
+
npm install -g agentic-qe && aqe init --auto
|
|
463
|
+
# → 94 QE skills + 55 agents in .claude/skills/ and .claude/agents/
|
|
464
|
+
# → six-thinking-hats, qcsd-ideation-swarm, frontend-design, brutal-honesty-review
|
|
464
465
|
```
|
|
465
466
|
|
|
466
|
-
|
|
467
|
+
Or cherry-pick: `dz compose meta+keysarium` for competitive analysis.
|
|
468
|
+
|
|
469
|
+
| Optional Skill | Source | What it adds |
|
|
467
470
|
|---------------|--------|-------------|
|
|
468
|
-
| `frontend-design` | `
|
|
469
|
-
| `six-thinking-hats` | `
|
|
470
|
-
| `qcsd-ideation-swarm` | `
|
|
471
|
+
| `frontend-design` | `aqe init` / `keysarium` | HTML/React prototypes (Phase 4) |
|
|
472
|
+
| `six-thinking-hats` | `aqe init` | Team ideation (Phase 3) |
|
|
473
|
+
| `qcsd-ideation-swarm` | `aqe init` | 9-agent quality risk (Phase 2-3) |
|
|
471
474
|
| `reverse-engineering-unicorn` | `keysarium` | Competitor CJM+JTBD (Phase 1) |
|
|
472
475
|
|
|
473
476
|
Without optional skills, design-thinking uses built-in fallbacks.
|
package/package.json
CHANGED