(name: string, catalog: readonly Skill[] = SKILLS)
| 624 | |
| 625 | /** Look up a skill by its exact name within a session's catalog. */ |
| 626 | export const findSkill = (name: string, catalog: readonly Skill[] = SKILLS): Skill | undefined => |
| 627 | catalog.find((skill) => skill.name === name); |
| 628 | |
| 629 | /** The index the `skills` tool returns when called without a name (or with an |
| 630 | * unknown one): every skill's name and one-line summary, plus how to fetch |
no outgoing calls
no test coverage detected