(file: File)
| 169 | * Extract skill name and description from a SKILL.md file. |
| 170 | */ |
| 171 | const extractFromMd = async (file: File): Promise<SkillInfo | null> => { |
| 172 | const content = await file.text(); |
| 173 | return extractFromContent(content); |
| 174 | }; |
| 175 | |
| 176 | /** |
| 177 | * Extract skill name and description from a ZIP file by looking for SKILL.md inside. |
no test coverage detected