@dzhechkov/harness-cli 0.3.156 → 0.3.158
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 +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -95,6 +95,36 @@ dz verify && dz doctor # check health
|
|
|
95
95
|
Re-running is safe (existing files are skipped unless `--force`). Targets: `claude-code`, `codex`,
|
|
96
96
|
`opencode`, `hermes`, `openclaude`, `copilot`.
|
|
97
97
|
|
|
98
|
+
### Target coverage — which coder/agent maps to which `--target`
|
|
99
|
+
|
|
100
|
+
Don't see your tool below? Two fallbacks: if it reads `CLAUDE.md`/`.claude/` use `--target claude-code`;
|
|
101
|
+
otherwise `dz bundle --select <ids> --out <dir>` gives a portable tree of **raw `SKILL.md`** files you can
|
|
102
|
+
point any tool at (a skill is just Markdown). Dedicated targets are on the [roadmap](https://github.com/djd1m/dz-harness-hub/blob/main/docs/target-expansion-research.md).
|
|
103
|
+
|
|
104
|
+
**✅ Shipped native targets** (each compiles to the tool's own layout):
|
|
105
|
+
|
|
106
|
+
| Coder / agent | `--target` | Emits |
|
|
107
|
+
|---------------|-----------|-------|
|
|
108
|
+
| Claude Code | `claude-code` | `CLAUDE.md` + `.claude/skills/` |
|
|
109
|
+
| OpenAI Codex CLI | `codex` | `.agents/skills/` |
|
|
110
|
+
| OpenCode | `opencode` | `.opencode/skills/` |
|
|
111
|
+
| Hermes Agent | `hermes` | `.hermes/skills/` |
|
|
112
|
+
| OpenClaude *(incl. the "OpenClaw"/Claw-Code fork — it mirrors Claude Code)* | `openclaude` | `.openclaude/skills/` |
|
|
113
|
+
| GitHub Copilot | `copilot` | `.github/instructions/*.instructions` |
|
|
114
|
+
|
|
115
|
+
**🗺️ On the roadmap** (verified rules-formats — see the research doc):
|
|
116
|
+
|
|
117
|
+
| Coder(s) / agent | planned `--target` | reads | priority |
|
|
118
|
+
|------------------|--------------------|-------|----------|
|
|
119
|
+
| **~15 tools that read a root `AGENTS.md`** (Cursor, Zed, Warp, Aider, goose, Gemini CLI, RooCode, Kilo, Junie, Trae, Augment, Devin, **pi**, Windsurf…) | `agents-md` | root `AGENTS.md` (plain MD) | **#1** — one target, ~15 tools |
|
|
120
|
+
| Cursor | `cursor` | `.cursor/rules/*.mdc` | #2 |
|
|
121
|
+
| Gemini CLI / Code Assist | `gemini` | `GEMINI.md` | #3 |
|
|
122
|
+
| Windsurf | `windsurf` | `.windsurf/rules/*.md` *(→ `.devin/rules/` rebrand)* | #4 |
|
|
123
|
+
| Cline · Continue · Kiro | `cline` · `continue` · `kiro` | `.clinerules/` · `.continue/rules/` · `.kiro/steering/` | mid |
|
|
124
|
+
|
|
125
|
+
**❌ No target applies:** `nemoclaw` (NVIDIA agent-safety runtime — not a code editor, no rules file) ·
|
|
126
|
+
`v0` (UI-only, no repo file). *(`pi` is a real coder but reads `AGENTS.md` → covered by `agents-md`.)*
|
|
127
|
+
|
|
98
128
|
> **"Nothing installs" / "no skills found"?** Update the CLI:
|
|
99
129
|
> `cd /tmp && npm i -g @dzhechkov/harness-cli@latest`. Older global installs couldn't locate their
|
|
100
130
|
> own bundled packs outside the monorepo — now fixed, so `dz registry`/`dz init`/`dz setup` work
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/harness-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.158",
|
|
4
4
|
"description": "The dz CLI — install AI skills for Claude Code, Codex, OpenCode, Hermes, OpenClaude, GitHub Copilot. 35 commands, 13 presets, 6 platform targets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|