Skip to content

Commit 65cf39f

Browse files
gtrabancoclaude
andcommitted
docs(readme): correct Hermes invocation — slash loads bundles, not skills (EN/ES)
Verified against the local hermes CLI: /<name> routes bundles and quick/plugin commands only. Documented the three working paths: a `hermes bundles create workflow` slash entry point, `chat -s <skill>` preload, and description-matched natural language. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 80aff7c commit 65cf39f

2 files changed

Lines changed: 38 additions & 12 deletions

File tree

README.es.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -436,12 +436,25 @@ se ignoran en silencio.) Elige el modelo de sesión según la
436436
[tabla de equivalencia](#equivalencia-de-modelos-modelos-no-claude--de-libre-inferencia)
437437
— en NaN.builders, según los picks de arriba.
438438

439-
**Invocación:** Hermes soporta la misma sintaxis slash — `/execute-phase 14 P1`,
440-
`/review-change` — **pero solo en sesiones arrancadas después del install**. Si
441-
ves `error: not a quick/plugin/skill command`, la sesión es anterior al
442-
install: `/reset` (terminal) o reinicia la app de escritorio, y comprueba con
443-
`/bundles` o "What skills do you have?". El lenguaje natural también funciona
444-
siempre: "use the execute-phase skill to implement fix #243".
439+
**Invocación:** en Hermes, `/<nombre>` carga **bundles**, no skills
440+
individuales — `/execute-phase` devuelve `error: not a quick/plugin/skill
441+
command` aunque la skill aparezca como enabled. Tres vías que funcionan:
442+
443+
```sh
444+
# 1. Una vez: crea un bundle → /workflow pasa a ser el punto de entrada slash
445+
hermes bundles create workflow \
446+
-s init-workspace -s plan-feature -s plan-fix -s execute-phase \
447+
-s review-change -s audit-pr -s product-audit -s audit-docs \
448+
-s triage-issue -s log-session -s ship-roadmap \
449+
-d "agentic-workflow: plan → execute → review → audit → merge"
450+
# después, en cualquier sesión: /workflow execute-phase --fix #243
451+
452+
# 2. Terminal: precarga skills para una sesión
453+
hermes chat -s execute-phase
454+
455+
# 3. Cualquier sesión, sin setup: lenguaje natural — las skills se seleccionan
456+
# por descripción: "use the execute-phase skill to implement fix #243"
457+
```
445458

446459
Sin publicar en npm, sin registro, sin paso de build — `skills` clona el repo y
447460
copia (o enlaza con symlink) las carpetas de skills en el sitio correcto para

README.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -421,12 +421,25 @@ skills:
421421
skipped.) Pick your session model per the [model-equivalence table](#model-equivalence-non-claude--free-inference-models)
422422
— on NaN.builders, per the picks above.
423423

424-
**Invoking:** Hermes supports the same slash syntax — `/execute-phase 14 P1`,
425-
`/review-change` — **but only in sessions started after the install**. If you
426-
get `error: not a quick/plugin/skill command`, the session predates the
427-
install: `/reset` (terminal) or restart the desktop app, then check with
428-
`/bundles` or "What skills do you have?". Natural language always works too:
429-
"use the execute-phase skill to implement fix #243".
424+
**Invoking:** in Hermes, `/<name>` loads **bundles**, not individual skills —
425+
`/execute-phase` returns `error: not a quick/plugin/skill command` even when
426+
the skill shows as enabled. Three working ways:
427+
428+
```sh
429+
# 1. One-time: create a bundle → /workflow becomes the slash entry point
430+
hermes bundles create workflow \
431+
-s init-workspace -s plan-feature -s plan-fix -s execute-phase \
432+
-s review-change -s audit-pr -s product-audit -s audit-docs \
433+
-s triage-issue -s log-session -s ship-roadmap \
434+
-d "agentic-workflow: plan → execute → review → audit → merge"
435+
# then, in any session: /workflow execute-phase --fix #243
436+
437+
# 2. Terminal: preload skills for a session
438+
hermes chat -s execute-phase
439+
440+
# 3. Any session, no setup: natural language — skills are matched by description
441+
# "use the execute-phase skill to implement fix #243"
442+
```
430443

431444
No npm publish, no registry, no build step — `skills` clones the repo and copies
432445
(or symlinks) the skill folders into the right place for each agent. The skills

0 commit comments

Comments
 (0)