@dzhechkov/harness-cli 0.3.44 → 0.3.45
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 +25 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,13 +125,32 @@ dz publish # publish all changed packages
|
|
|
125
125
|
|
|
126
126
|
---
|
|
127
127
|
|
|
128
|
-
##
|
|
128
|
+
## Three Ways to Install Skills
|
|
129
129
|
|
|
130
|
-
|
|
|
131
|
-
|
|
132
|
-
| **
|
|
133
|
-
|
|
|
134
|
-
| **
|
|
130
|
+
| | **Individual Skill** | **Preset** | **npx Package** |
|
|
131
|
+
|---|---|---|---|
|
|
132
|
+
| **What** | 1 SKILL.md file | Curated list of skill names | Full toolkit with orchestration |
|
|
133
|
+
| **Contains** | Instructions for 1 task | N skill references | Skills + commands + rules + shards + agents + memory |
|
|
134
|
+
| **Pipeline** | No | No | Yes (phases, checkpoints, governance) |
|
|
135
|
+
| **Self-learning** | No | `dz setup` adds it | Built-in |
|
|
136
|
+
| **Install** | `dz init --select X` | `dz setup --preset X` | `npx @dzhechkov/X init` |
|
|
137
|
+
| **Example** | `terraform` | `devops` (27 skills) | `keysarium` (7-phase research) |
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# One skill:
|
|
141
|
+
dz init --target claude-code --select design-thinking
|
|
142
|
+
|
|
143
|
+
# Curated set by topic (recommended):
|
|
144
|
+
dz setup --target claude-code --preset meta # 6 development skills + self-learning
|
|
145
|
+
|
|
146
|
+
# Full toolkit with orchestrated pipeline:
|
|
147
|
+
npx @dzhechkov/keysarium init # 7-phase research + commands + memory
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
**When to use which:**
|
|
151
|
+
- Need **1 specific capability** → `--select`
|
|
152
|
+
- Need a **themed set** that works together → `--preset`
|
|
153
|
+
- Need a **full pipeline** with commands and governance → `npx`
|
|
135
154
|
|
|
136
155
|
### Available Presets (11)
|
|
137
156
|
|
package/package.json
CHANGED