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

Function skillCatalogFor

packages/core/execution/src/skills.ts:622–623  ·  view source on GitHub ↗
(options: { readonly artifacts: boolean })

Source from the content-addressed store, hash-verified

620 * does not have; a session that opted in gets the full {@link SKILLS} list.
621 */
622export const skillCatalogFor = (options: { readonly artifacts: boolean }): readonly Skill[] =>
623 options.artifacts ? SKILLS : SKILLS.filter((skill) => !ARTIFACT_SKILLS.has(skill));
624
625/** Look up a skill by its exact name within a session's catalog. */
626export const findSkill = (name: string, catalog: readonly Skill[] = SKILLS): Skill | undefined =>

Callers 2

skills.test.tsFile · 0.90
createExecutorMcpServerFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected