@dzhechkov/harness-cli 0.3.7 → 0.3.8
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 +27 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -165,6 +165,33 @@ The `--bto` flag generates eval templates compatible with `/bto-test`:
|
|
|
165
165
|
|
|
166
166
|
After scaffolding, fill in the SKILL.md protocol and run `/bto-test .claude/skills/my-skill` to evaluate.
|
|
167
167
|
|
|
168
|
+
### dz install — install skills from any npm package
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
# Install skills from any npm package directly
|
|
172
|
+
dz install @dzhechkov/skills-devops
|
|
173
|
+
dz install @dzhechkov/skills-web3 --target openclaude
|
|
174
|
+
dz install @lythos/skill-curator --target claude-code
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
Runs `npm install`, discovers SKILL.md files in the package, copies them to the target platform directory. Works with any agentskills.io-compatible npm package.
|
|
178
|
+
|
|
179
|
+
### dz sync-upstream — check for upstream updates
|
|
180
|
+
|
|
181
|
+
```bash
|
|
182
|
+
# Check if canonicalized skills have upstream changes
|
|
183
|
+
dz sync-upstream --package packages/@dzhechkov/skills-devops
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
Reads `sources.json` in the package, fetches SKILL.md from origin repos, reports which skills have changed. Useful for keeping canonicalized skills in sync with their sources.
|
|
187
|
+
|
|
188
|
+
### dz stats + dz dashboard
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
dz stats # Quick metrics: packages, skills, targets, presets
|
|
192
|
+
dz dashboard # Visual panel with all packages, adapters, skill packs
|
|
193
|
+
```
|
|
194
|
+
|
|
168
195
|
---
|
|
169
196
|
|
|
170
197
|
## How it works
|
package/package.json
CHANGED