MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / renderSkillsIndex

Function renderSkillsIndex

packages/core/execution/src/skills.ts:650–656  ·  view source on GitHub ↗
(catalog: readonly Skill[] = SKILLS)

Source from the content-addressed store, hash-verified

648 * model lands, so it has to say plainly that this list is the whole of it and
649 * covers only Executor's own tools. */
650export const renderSkillsIndex = (catalog: readonly Skill[] = SKILLS): string =>
651 [
652 "How-to docs for Executor's own tools — this is the complete list, and there is nothing else to fetch.",
653 'Fetch one with `skills({ name: "<name>" })`. Names outside this list, file paths, and skills belonging to your harness or the user are not served here.',
654 "",
655 ...catalog.map((skill) => `- \`${skill.name}\` — ${skill.summary}`),
656 ].join("\n");

Callers 2

skills.test.tsFile · 0.90
skillsResultFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected