You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Create Skill button with template scaffolding
- New "Create" button in sidebar below Marketplace
- Modal with name input + target dropdown (agent + type)
- Creates SKILL.md in directory for skills, flat .md for commands
- Auto-refreshes store and selects the new skill after creation
- Slugifies name for filesystem, validates for duplicates
Closes#17
fix: scan nested skill directories up to 3 levels deep
scanDirectoryWithSkillMd only checked one level, missing grouped
structures like ~/.agents/skills/<group>/skills/<name>/SKILL.md
Now recurses into subdirs that don't contain SKILL.md, up to depth 3.
Also includes skillkit binary validation (isCrafterSkillkit).
Closes#16