feat(cli): add install and uninstall commands for skills (#16377)

This commit is contained in:
N. Taylor Mullen
2026-01-12 15:24:41 -08:00
committed by GitHub
parent 95d9a33996
commit 2e8c6cfdbb
9 changed files with 551 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ export async function loadSkillsFromDir(
return [];
}
const skillFiles = await glob('*/SKILL.md', {
const skillFiles = await glob(['SKILL.md', '*/SKILL.md'], {
cwd: absoluteSearchPath,
absolute: true,
nodir: true,