()
| 81 | * unknown one): every skill's name and one-line summary, plus how to fetch |
| 82 | * the body. */ |
| 83 | export const renderSkillsIndex = (): string => |
| 84 | [ |
| 85 | 'Available skills. Fetch one with `skills({ name: "<name>" })`.', |
| 86 | "", |
| 87 | ...SKILLS.map((skill) => `- \`${skill.name}\` — ${skill.summary}`), |
| 88 | ].join("\n"); |
no outgoing calls
no test coverage detected