@dzhechkov/harness-cli 0.3.43 → 0.3.44
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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,10 +10,10 @@ npm install -g @dzhechkov/harness-cli
|
|
|
10
10
|
|
|
11
11
|
## User Journey — from install to mastery
|
|
12
12
|
|
|
13
|
-
All
|
|
13
|
+
All 31 commands mapped to a real workflow:
|
|
14
14
|
|
|
15
15
|
```
|
|
16
|
-
DISCOVER → INSTALL → USE → CREATE →
|
|
16
|
+
DISCOVER → INSTALL → USE → CREATE → MAINTAIN → SHARE
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
### Phase 1: Discover (what's available?)
|
|
@@ -24,9 +24,9 @@ npm install -g @dzhechkov/harness-cli # install the CLI
|
|
|
24
24
|
dz help # see all commands
|
|
25
25
|
dz pretrain # analyze project → auto-recommend skills/presets
|
|
26
26
|
dz recommend "build API and deploy to K8s" # task advisor — decomposes your task into skills
|
|
27
|
-
dz stats # 28 packages,
|
|
27
|
+
dz stats # 28 packages, 78 skills, 5 targets, 11 presets
|
|
28
28
|
dz dashboard # visual panel — packages, adapters, skill packs
|
|
29
|
-
dz registry # browse all
|
|
29
|
+
dz registry # browse all 78 skills by category
|
|
30
30
|
dz registry search kubernetes # find specific skills
|
|
31
31
|
dz registry --category devops # filter by domain
|
|
32
32
|
dz downloads # npm weekly download stats
|
|
@@ -353,7 +353,7 @@ Scans a GitHub repo for SKILL.md files, generates `dz create-skill` commands.
|
|
|
353
353
|
### dz registry — searchable skill index
|
|
354
354
|
|
|
355
355
|
```bash
|
|
356
|
-
dz registry # visual panel:
|
|
356
|
+
dz registry # visual panel: 78 skills in 6 categories
|
|
357
357
|
dz registry search security # fuzzy search
|
|
358
358
|
dz registry --category mcp # filter by category
|
|
359
359
|
```
|
|
@@ -370,7 +370,7 @@ dz dashboard # Visual panel with all packages, adapters, skill packs
|
|
|
370
370
|
## Example: Thesis Defense Preparation (Academic Preset)
|
|
371
371
|
|
|
372
372
|
```bash
|
|
373
|
-
# Install academic skills (
|
|
373
|
+
# Install academic skills (5 skills for thesis defense committee)
|
|
374
374
|
dz init --target claude-code --preset academic
|
|
375
375
|
|
|
376
376
|
# Open Claude Code in the folder with student materials and use:
|
|
@@ -379,7 +379,7 @@ dz init --target claude-code --preset academic
|
|
|
379
379
|
# "Check document package completeness"
|
|
380
380
|
```
|
|
381
381
|
|
|
382
|
-
|
|
382
|
+
Five skills auto-activate in Claude Code:
|
|
383
383
|
|
|
384
384
|
| Skill | What it does |
|
|
385
385
|
|-------|-------------|
|
|
@@ -435,7 +435,7 @@ Phase 6: VALIDATE → Pilot with variance analysis: projected vs actual → Sc
|
|
|
435
435
|
| **S** | Quick user insight | 1→2→5 | explore + goap-research |
|
|
436
436
|
| **M** | New feature | 1→2→3→4→5 | + frontend-design + six-thinking-hats |
|
|
437
437
|
| **L** | New product | 1→2→3→4→5→6 | + qcsd-swarm + reverse-engineering-unicorn |
|
|
438
|
-
| **XL** | Platform / ecosystem | All |
|
|
438
|
+
| **XL** | Platform / ecosystem | All | All optional integrations (aqe init recommended) |
|
|
439
439
|
|
|
440
440
|
### Key Safeguards
|
|
441
441
|
|
|
@@ -744,7 +744,7 @@ npx @dzhechkov/p-replicator init
|
|
|
744
744
|
|
|
745
745
|
## Status
|
|
746
746
|
|
|
747
|
-
`v0.3.
|
|
747
|
+
`v0.3.43` — published on npm. Also available as [Claude Plugin](#claude-plugin). Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
|
|
748
748
|
|
|
749
749
|
## Claude Plugin
|
|
750
750
|
|
|
@@ -759,7 +759,7 @@ claude plugin install dz-harness-hub@dz-harness-hub
|
|
|
759
759
|
claude --plugin-dir /path/to/dz-harness-hub
|
|
760
760
|
|
|
761
761
|
# Generate plugin manifest from current inventory:
|
|
762
|
-
dz plugin --version 0.3.
|
|
762
|
+
dz plugin --version 0.3.43
|
|
763
763
|
```
|
|
764
764
|
|
|
765
765
|
The `.claude-plugin/` directory contains `plugin.json` + `marketplace.json` compatible with [pi-claude-marketplace](https://npm.im/pi-claude-marketplace) and [skill-hub](https://npm.im/@jasonwen/skill-hub).
|
package/package.json
CHANGED