The kanban system references a built-in kanban-worker skill that workers need to function. This skill exists in the source tree at skills/devops/kanban-worker/SKILL.md but is not auto-installed during hermes update or fresh installs.
Steps to Reproduce
- Install Hermes Agent v0.13.0 (2026.5.7)
- Run
hermes kanban init
- Create a task:
hermes kanban create "test" --body "test"
- Assign and dispatch:
hermes kanban assign <id> default && hermes kanban dispatch
- Worker crashes with:
Error: Unknown skill(s): kanban-worker
Actual Behavior
Worker exits with code 1, task auto-blocks after 2 failures. hermes kanban log shows successive Unknown skill(s): kanban-worker errors.
Expected Behavior
kanban-worker skill should be auto-installed during setup or at minimum during first hermes kanban init. Alternatively, the dispatcher should detect the missing skill and install it automatically, or provide a clear error message pointing to the install command.
Workaround
Manually install: hermes skills install --force https://raw.githubusercontent.com/NousResearch/hermes-agent/refs/heads/main/skills/devops/kanban-worker/SKILL.md
Environment
- Hermes Agent v0.13.0 (2026.5.7)
- Python 3.11.15
- pip-installed at
/opt/hermes-agent/
The kanban system references a built-in
kanban-workerskill that workers need to function. This skill exists in the source tree atskills/devops/kanban-worker/SKILL.mdbut is not auto-installed duringhermes updateor fresh installs.Steps to Reproduce
hermes kanban inithermes kanban create "test" --body "test"hermes kanban assign <id> default && hermes kanban dispatchError: Unknown skill(s): kanban-workerActual Behavior
Worker exits with code 1, task auto-blocks after 2 failures.
hermes kanban logshows successiveUnknown skill(s): kanban-workererrors.Expected Behavior
kanban-workerskill should be auto-installed during setup or at minimum during firsthermes kanban init. Alternatively, the dispatcher should detect the missing skill and install it automatically, or provide a clear error message pointing to the install command.Workaround
Manually install:
hermes skills install --force https://raw.githubusercontent.com/NousResearch/hermes-agent/refs/heads/main/skills/devops/kanban-worker/SKILL.mdEnvironment
/opt/hermes-agent/