(name: string)
| 75 | |
| 76 | /** Look up a skill by its exact name. */ |
| 77 | export const findSkill = (name: string): Skill | undefined => |
| 78 | SKILLS.find((skill) => skill.name === name); |
| 79 | |
| 80 | /** The index the `skills` tool returns when called without a name (or with an |
| 81 | * unknown one): every skill's name and one-line summary, plus how to fetch |
no outgoing calls
no test coverage detected