Skip to content

Commit 909b80c

Browse files
authored
docs(kanban): fix worker skill setup instructions too (NousResearch#20960)
Follow-up to NousResearch#20958. The worker skill section had the same stale 'hermes skills install devops/kanban-worker' command — kanban-worker is also bundled, so that command fails with 'Could not fetch from any source.' Replace with bundled-skill verification + restore pattern, matching the orchestrator section. Uses <your-worker-profile> placeholder since assignees vary (researcher, writer, ops, linguist, reviewer, etc.) rather than a single fixed 'worker' profile.
1 parent fa34609 commit 909b80c

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

website/docs/user-guide/features/kanban.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,10 +335,19 @@ Any profile that should be able to work kanban tasks must load the `kanban-worke
335335
3. Call `kanban_heartbeat(note="...")` every few minutes during long operations.
336336
4. Complete with `kanban_complete(summary="...", metadata={...})`, or `kanban_block(reason="...")` if stuck.
337337

338-
Load it with (this one is **you**, installing into a profile — not a tool call):
338+
`kanban-worker` is a bundled skill, synced into every profile during install and
339+
update — there is no separate Skills Hub install step. Verify it is present in
340+
whichever profile you use for kanban workers (`researcher`, `writer`, `ops`,
341+
etc.):
339342

340343
```bash
341-
hermes skills install devops/kanban-worker
344+
hermes -p <your-worker-profile> skills list | grep kanban-worker
345+
```
346+
347+
If the bundled copy is missing, restore it for that profile:
348+
349+
```bash
350+
hermes -p <your-worker-profile> skills reset kanban-worker --restore
342351
```
343352

344353
The dispatcher also auto-passes `--skills kanban-worker` when spawning every worker, so the worker always has the pattern library available even if a profile's default skills config doesn't include it.

0 commit comments

Comments
 (0)