@dzhechkov/harness-cli 0.2.0 → 0.2.1

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 +88 -16
  2. package/package.json +9 -3
package/README.md CHANGED
@@ -1,27 +1,99 @@
1
1
  # @dzhechkov/harness-cli
2
2
 
3
- The **`dz`** command-line interface for the DZ cross-platform harness a thin
4
- argv shell over [`@dzhechkov/harness-core`](../harness-core).
3
+ The **`dz`** CLI the main entry point to the DZ Harness Hub. Install AI skills for **Claude Code, Codex, OpenCode, Hermes** from a single command.
5
4
 
6
- ## Commands
5
+ ## Install
7
6
 
7
+ ```bash
8
+ npm install -g @dzhechkov/harness-cli
8
9
  ```
9
- dz init --target <name> [--skills-dir <dir>] [--project <dir>] [--force]
10
- dz verify [--skills-dir <dir>] [--target <name>]
11
- dz sync [--canonical <dir>] [--project <dir>] [--dry-run] [--force]
12
- dz update (alias of sync)
13
- dz doctor [--project <dir>]
10
+
11
+ ## Quick Start
12
+
13
+ ```bash
14
+ # Install a preset (curated skill set) for your platform:
15
+ dz init --target claude-code --preset meta
16
+
17
+ # That's it — Claude Code will auto-discover the installed skills.
18
+ ```
19
+
20
+ ## Presets vs Individual Skills
21
+
22
+ | Approach | When to use | Example |
23
+ |----------|------------|---------|
24
+ | **Preset** | Want a curated set of skills that work together | `dz init --target claude-code --preset keysarium` |
25
+ | **--select** | Want specific skills by name | `dz init --target claude-code --select explore,feature-adr` |
26
+ | **Standalone npx** | Want a full toolkit with its own CLI | `npx @dzhechkov/keysarium init` |
27
+
28
+ ### Available Presets (7)
29
+
30
+ | Preset | Skills | Description |
31
+ |--------|--------|-------------|
32
+ | `meta` | 3 | Development process (explore, feature-adr, knowledge-extractor) |
33
+ | `qe-engineer` | 8 | Quality engineering (test-gen, coverage, chaos, defect, ...) |
34
+ | `bto` | 1 | Build-Benchmark-Test-Optimize pipeline |
35
+ | `health` | 8 | Medical AI (diagnostics, drugs, labs, clinical decisions) |
36
+ | `keysarium` | 9 | Full research toolkit (feature-adr, presentation, reverse-eng) |
37
+ | `p-replicator` | 10 | AI product development (/replicate, SPARC PRD, pipeline-forge) |
38
+ | `feature-adr` | 5 | Feature pipeline (feature-adr, explore, frontend-design) |
39
+
40
+ ### Standalone Packages (install via npx, no dz CLI needed)
41
+
42
+ ```bash
43
+ npx @dzhechkov/keysarium init # full research toolkit
44
+ npx @dzhechkov/p-replicator init # AI product development
45
+ npx @dzhechkov/health-advisor init # medical AI (25 skills)
46
+ npx @dzhechkov/skills-bto init # BTO benchmarking
47
+ npx @dzhechkov/skills-feature-adr init # 11-step feature pipeline
48
+ npx @dzhechkov/skills-edu-site init # gamified edu site generator
49
+ npx @dzhechkov/skills-transcript-site init # transcript → interactive site
50
+ npx @dzhechkov/skills-analyst-manual init # 3-phase analyst composite
51
+ ```
52
+
53
+ **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.
54
+
55
+ ## All Commands (11)
56
+
57
+ ```
58
+ dz init --target <name> [--preset <name>] [--select id,id,...] [--force]
59
+ dz verify [--skills-dir <dir>] [--target <name>]
60
+ dz sync [--canonical <dir>] [--project <dir>] [--dry-run] [--force]
61
+ dz update (alias for sync)
62
+ dz list [--skills-dir <dir>]
63
+ dz info --id <skill-id> [--skills-dir <dir>]
64
+ dz migrate [--project <dir>]
65
+ dz workflow --task <name> [--dry-run]
66
+ dz doctor [--project <dir>]
67
+ dz roam [--apply] [--slug <slug>]
14
68
  dz help
15
69
  ```
16
70
 
17
- - `--target` one of `claude-code`, `codex`, `opencode`, `hermes`
18
- - `init` compiles a skills directory for a target and writes it **additively**
19
- (existing files are never overwritten without `--force`)
20
- - `sync` compares the canonical pack to the legacy `.claude/skills` tree
21
- - `doctor` reports environment diagnostics
71
+ ### Targets (4 platforms)
72
+
73
+ | Target | Skills directory |
74
+ |--------|-----------------|
75
+ | `claude-code` | `.claude/skills/` |
76
+ | `codex` | `.agents/skills/` |
77
+ | `opencode` | `.opencode/skills/` |
78
+ | `hermes` | `.hermes/skills/` |
79
+
80
+ ### Workflows (Opus 4.8+ dynamic workflows)
81
+
82
+ ```bash
83
+ dz workflow --task coverage-lift # parallel coverage improvement
84
+ dz workflow --task mutation-kill # kill surviving mutants
85
+ dz workflow --task canonicalize # canonicalize new packages
86
+ dz workflow --task security-audit # adversarial security scan
87
+ ```
88
+
89
+ ## How it works
90
+
91
+ - `dz init` compiles canonical skills from the [agentskills.io](https://agentskills.io) standard into the target platform's layout
92
+ - Writing is **additive** — existing files are never overwritten without `--force`
93
+ - All 4 platform adapters produce **byte-identical** output (ADR-005)
94
+ - `dz doctor` runs 7 health checks (node version, adapters, config, SQLite, skills)
95
+ - `dz migrate` detects legacy keysarium/bto installations and recommends migration path
22
96
 
23
97
  ## Status
24
98
 
25
- `0.1.0` — alpha, part of the `extended-a-migration` feature (Phase 6).
26
- `--preset <name>` (Phase 10) selects a named skill set — see
27
- `@dzhechkov/harness-presets`. The `paperclip` target is planned for a later phase.
99
+ `v0.2.0` — published on npm. Part of [DZ Harness Hub](https://github.com/djd1m/dz-harness-hub).
package/package.json CHANGED
@@ -1,15 +1,21 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-cli",
3
- "version": "0.2.0",
4
- "description": "The dz CLI - init / sync / verify / doctor for the DZ cross-platform harness.",
3
+ "version": "0.2.1",
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",
7
7
  "author": "dzhechko",
8
8
  "keywords": [
9
9
  "agent-skills",
10
+ "agentskills.io",
10
11
  "harness",
11
12
  "cli",
12
- "claude-code"
13
+ "claude-code",
14
+ "codex",
15
+ "opencode",
16
+ "hermes",
17
+ "ai-skills",
18
+ "cross-platform"
13
19
  ],
14
20
  "main": "./dist/index.js",
15
21
  "types": "./dist/index.d.ts",