( name: string, description: string, )
| 22 | } |
| 23 | |
| 24 | export function createDefaultConfig( |
| 25 | name: string, |
| 26 | description: string, |
| 27 | ): PackConfig { |
| 28 | return { |
| 29 | name, |
| 30 | description, |
| 31 | version: "1.0.0", |
| 32 | prompts: [], |
| 33 | skills: [], |
| 34 | }; |
| 35 | } |
| 36 | |
| 37 | function validateSkillEntry( |
| 38 | value: unknown, |
no outgoing calls
no test coverage detected