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

Function skillCatalogFor

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

Source from the content-addressed store, hash-verified

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