* Get a skill by name, source, and optionally mode
(name: string, source: "global" | "project", mode?: string)
| 294 | * Get a skill by name, source, and optionally mode |
| 295 | */ |
| 296 | getSkill(name: string, source: "global" | "project", mode?: string): SkillMetadata | undefined { |
| 297 | const skillKey = this.getSkillKey(name, source, mode) |
| 298 | return this.skills.get(skillKey) |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * Find a skill by name and source (regardless of mode). |
no test coverage detected