claude-code with OpenAI mode fix

This commit is contained in:
HitMargin
2026-04-04 01:21:00 +08:00
commit c9f95fc34d
3050 changed files with 557030 additions and 0 deletions

7
src/skills/mcpSkills.ts Normal file
View File

@@ -0,0 +1,7 @@
// 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>() }
);