| 10 | } |
| 11 | |
| 12 | export interface SkillPath { |
| 13 | baseDir: string; |
| 14 | type: SkillType; |
| 15 | pattern: ScanPattern; |
| 16 | } |
| 17 | |
| 18 | export type SkillType = "skill" | "command" | "agent" | "rule" | "memory"; |
| 19 | export type ScanPattern = "directory-with-skillmd" | "flat-md" | "mdc"; |
nothing calls this directly
no outgoing calls
no test coverage detected