From 45cbf93899a9f9f1e96c8b85d9192b452e6459d4 Mon Sep 17 00:00:00 2001 From: Gille <4317663+helix4u@users.noreply.github.com> Date: Wed, 6 May 2026 19:14:30 -0600 Subject: [PATCH] docs(kanban): fix orchestrator skill setup instructions (#20958) --- website/docs/user-guide/features/kanban.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/website/docs/user-guide/features/kanban.md b/website/docs/user-guide/features/kanban.md index c82311538d..c91e5fd009 100644 --- a/website/docs/user-guide/features/kanban.md +++ b/website/docs/user-guide/features/kanban.md @@ -403,10 +403,18 @@ kanban_complete( ) ``` -Load it into your orchestrator profile: +`kanban-orchestrator` is a bundled skill. It is synced into each profile during +install and update, so there is no separate Skills Hub install step. Verify it is +present in your orchestrator profile: ```bash -hermes skills install devops/kanban-orchestrator +hermes -p orchestrator skills list | grep kanban-orchestrator +``` + +If the bundled copy is missing, restore it for that profile: + +```bash +hermes -p orchestrator skills reset kanban-orchestrator --restore ``` For best results, pair it with a profile whose toolsets are restricted to board operations (`kanban`, `gateway`, `memory`) so the orchestrator literally cannot execute implementation tasks even if it tries.