()
| 26 | |
| 27 | export interface SkillServiceAdapter { |
| 28 | getAll(): Promise<SkillSummary[]> |
| 29 | getConfig(id: string): Promise<SkillConfig | null> |
| 30 | create(rawMd: string): Promise<{ success: boolean; id?: string; error?: string }> |
| 31 | update(id: string, rawMd: string): Promise<{ success: boolean; error?: string }> |
no outgoing calls
no test coverage detected