feat(skills): validate manifest installer specs

This commit is contained in:
William Valentin
2026-02-12 17:52:53 -08:00
parent bd29afeaff
commit 81d04357a1
5 changed files with 177 additions and 5 deletions
+11 -1
View File
@@ -1,4 +1,14 @@
export type { SkillTier, SkillRequirements, SkillManifest, Skill } from './types.js';
export type {
SkillTier,
SkillRequirements,
SkillManifest,
Skill,
SkillInstallerSpec,
BrewInstallerSpec,
NodeInstallerSpec,
GoInstallerSpec,
DownloadInstallerSpec,
} from './types.js';
export { checkRequirements, loadSkill, discoverSkills, loadAllSkills } from './loader.js';
export { SkillRegistry } from './registry.js';
export { SkillInstaller } from './installer.js';