@dzhechkov/harness-cli 0.3.47 → 0.3.49
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 +19 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -220,13 +220,25 @@ dz help
|
|
|
220
220
|
|
|
221
221
|
### Targets (5 platforms)
|
|
222
222
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
|
226
|
-
|
|
227
|
-
| `
|
|
228
|
-
| `
|
|
229
|
-
| `
|
|
223
|
+
All 5 platforms natively support the [agentskills.io](https://agentskills.io) `SKILL.md` format:
|
|
224
|
+
|
|
225
|
+
| Target | Skills directory | Native SKILL.md? |
|
|
226
|
+
|--------|-----------------|:---:|
|
|
227
|
+
| `claude-code` | `.claude/skills/` | Yes |
|
|
228
|
+
| `codex` | `.agents/skills/` | Yes ([docs](https://developers.openai.com/codex/skills/)) |
|
|
229
|
+
| `opencode` | `.opencode/skills/` | Yes (also scans `.claude/skills/`) |
|
|
230
|
+
| `hermes` | `skills/` | Yes |
|
|
231
|
+
| `openclaude` | `.openclaude/skills/` | Yes |
|
|
232
|
+
|
|
233
|
+
Same SKILL.md file, different directory — no format conversion needed.
|
|
234
|
+
|
|
235
|
+
**Optional platform enrichment** (skills work without these):
|
|
236
|
+
|
|
237
|
+
| Platform | Optional extra | What it adds |
|
|
238
|
+
|----------|---------------|-------------|
|
|
239
|
+
| Codex | `agents/openai.yaml` | UI metadata (icons, display_name, MCP deps) |
|
|
240
|
+
| OpenCode | `opencode.json` + `.opencode/agents/*.md` | Config, custom agents |
|
|
241
|
+
| Hermes | `cli-config.yaml` | Agent config, persona, memory |
|
|
230
242
|
|
|
231
243
|
### Workflows (Opus 4.8+ dynamic workflows)
|
|
232
244
|
|
package/package.json
CHANGED