fix: bundle-builder now registers sub-skills with Hermes skill system (fixes #50) #56
No reviewers
Labels
No labels
community-feedback
enhancement
skill-upgrade
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
magnus/agent-skills!56
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/bundle-builder-subskill-registration"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Fixes #50 — the bundle-builder generates sub-skill
.mdfiles in askills/subdirectory but never registers them withskill_manage(), making them invisible toskills_list()andskill_view().Changes
bundles/workflow-architect/skills/bundle-builder/SKILL.md:skill_manage(action='create')with<bundle-name>-<skill-name>naming and'generated'categorySKILL.mdumbrella, add<category>/path prefixbundles/workflow-architect/AGENTS.md:<category>/path and registrationThe Fix
After writing all bundle files (umbrella SKILL.md + sub-skills + manifest + kanban), the agent now reads each generated sub-skill
.mdfile and registers it:This creates a proper Hermes skill directory with
SKILL.mdentry point. Without this, the sub-skills exist on disk but the agent has no way to discover or load them.