@dzhechkov/harness-cli 0.3.44 → 0.3.46
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 +35 -16
- 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
|
|
|
@@ -151,16 +170,16 @@ dz publish # publish all changed packages
|
|
|
151
170
|
|
|
152
171
|
### Standalone Packages (install via npx, no dz CLI needed)
|
|
153
172
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
npx @dzhechkov/
|
|
157
|
-
npx @dzhechkov/
|
|
158
|
-
npx @dzhechkov/
|
|
159
|
-
|
|
160
|
-
npx @dzhechkov/skills-
|
|
161
|
-
npx @dzhechkov/skills-
|
|
162
|
-
npx @dzhechkov/skills-
|
|
163
|
-
|
|
173
|
+
| Package | Install | What it does |
|
|
174
|
+
|---------|---------|-------------|
|
|
175
|
+
| [@dzhechkov/keysarium](https://www.npmjs.com/package/@dzhechkov/keysarium) | `npx @dzhechkov/keysarium init` | Full 7-phase research toolkit |
|
|
176
|
+
| [@dzhechkov/p-replicator](https://www.npmjs.com/package/@dzhechkov/p-replicator) | `npx @dzhechkov/p-replicator init` | AI product development (/replicate pipeline) |
|
|
177
|
+
| [@dzhechkov/health-advisor](https://www.npmjs.com/package/@dzhechkov/health-advisor) | `npx @dzhechkov/health-advisor init` | Medical AI (25 skills) |
|
|
178
|
+
| [@dzhechkov/skills-bto](https://www.npmjs.com/package/@dzhechkov/skills-bto) | `npx @dzhechkov/skills-bto init` | BTO benchmarking (Build-Test-Optimize) |
|
|
179
|
+
| [@dzhechkov/skills-feature-adr](https://www.npmjs.com/package/@dzhechkov/skills-feature-adr) | `npx @dzhechkov/skills-feature-adr init` | 11-step feature pipeline |
|
|
180
|
+
| [@dzhechkov/skills-edu-site](https://www.npmjs.com/package/@dzhechkov/skills-edu-site) | `npx @dzhechkov/skills-edu-site init` | Gamified edu site generator |
|
|
181
|
+
| [@dzhechkov/skills-transcript-site](https://www.npmjs.com/package/@dzhechkov/skills-transcript-site) | `npx @dzhechkov/skills-transcript-site init` | Transcript → interactive site |
|
|
182
|
+
| [@dzhechkov/skills-analyst-manual](https://www.npmjs.com/package/@dzhechkov/skills-analyst-manual) | `npx @dzhechkov/skills-analyst-manual init` | 3-phase analyst composite |
|
|
164
183
|
|
|
165
184
|
**Difference:** `dz init --preset` installs individual skills from `.claude/skills/` source into a target platform tree. Standalone `npx` packages have their own CLI and install a complete toolkit with commands, rules, shards, and agents — a richer but self-contained experience.
|
|
166
185
|
|
package/package.json
CHANGED