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

Function skillCatalogFor

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

Source from the content-addressed store, hash-verified

631 * does not have; a session that opted in gets the full {@link SKILLS} list.
632 */
633export const skillCatalogFor = (options: { readonly artifacts: boolean }): readonly Skill[] =>
634 options.artifacts ? SKILLS : SKILLS.filter((skill) => !ARTIFACT_SKILLS.has(skill));
635
636/** Look up a skill by its exact name within a session's catalog. */
637export 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