claude-code/src/skills/mcpSkills.ts

8 lines
362 B
TypeScript
Raw Normal View History

2026-03-31 20:40:16 +08:00
// Auto-generated stub — replace with real implementation
export {};
import type { Command } from 'src/types/command.js';
export const fetchMcpSkillsForClient: ((...args: unknown[]) => Promise<Command[]>) & { cache: Map<string, unknown> } = Object.assign(
(..._args: unknown[]) => Promise.resolve([] as Command[]),
{ cache: new Map<string, unknown>() }
);