Files
prowler/ui/lib/lighthouse/skills/index.ts
2026-03-18 19:35:50 +01:00

15 lines
436 B
TypeScript

import { customAttackPathQuerySkill } from "./definitions/attack-path-custom-query";
import { registerSkill } from "./registry";
// Explicit registration — tree-shake-proof
registerSkill(customAttackPathQuerySkill);
// Re-export registry functions and types
export {
getAllSkillMetadata,
getRegisteredSkillIds,
getSkillById,
registerSkill,
} from "./registry";
export type { SkillDefinition, SkillMetadata } from "./types";