@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.
Files changed (2) hide show
  1. package/README.md +25 -6
  2. 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
- ## Presets vs Individual Skills
128
+ ## Three Ways to Install Skills
129
129
 
130
- | Approach | When to use | Example |
131
- |----------|------------|---------|
132
- | **Preset** | Want a curated set of skills that work together | `dz init --target claude-code --preset keysarium` |
133
- | **--select** | Want specific skills by name | `dz init --target claude-code --select explore,feature-adr` |
134
- | **Standalone npx** | Want a full toolkit with its own CLI | `npx @dzhechkov/keysarium init` |
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.3.44",
3
+ "version": "0.3.45",
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",