| 7 | // deprecated `ctx7 skills ...` commands are deleted. Keep setup skill directory |
| 8 | // types below. |
| 9 | export interface Skill { |
| 10 | name: string; |
| 11 | description: string; |
| 12 | url: string; |
| 13 | installCount?: number; |
| 14 | trustScore?: number; |
| 15 | } |
| 16 | |
| 17 | export interface SkillSearchResult extends Skill { |
| 18 | project: string; |
nothing calls this directly
no outgoing calls
no test coverage detected