| 3 | type JsonRecord = Record<string, unknown>; |
| 4 | |
| 5 | interface SkillMock { |
| 6 | name: string; |
| 7 | display_name: string; |
| 8 | description: string; |
| 9 | instructions: string; |
| 10 | package_root: string; |
| 11 | updated_at: string; |
| 12 | } |
| 13 | |
| 14 | interface PipelineMock { |
| 15 | uuid: string; |
nothing calls this directly
no outgoing calls
no test coverage detected