mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
18 lines
398 B
TypeScript
18 lines
398 B
TypeScript
// Auto-generated stub — replace with real implementation
|
|
export function loadRemoteSkill(_slug: string, _url: string): Promise<{
|
|
cacheHit: boolean;
|
|
latencyMs: number;
|
|
skillPath: string;
|
|
content: string;
|
|
fileCount?: number;
|
|
totalBytes?: number;
|
|
fetchMethod?: string;
|
|
}> {
|
|
return Promise.resolve({
|
|
cacheHit: false,
|
|
latencyMs: 0,
|
|
skillPath: '',
|
|
content: '',
|
|
});
|
|
}
|