/** * Shared SDK for skills * * Common utilities used across audio, browse, codefix, convert, deploy, * extract, image, transcript, video, and write. */ export { checkSkillAuth, isRemoteExecution, requireAuthIfRemote } from './auth'; export { executeSkill, saveBlob, executeAndSave, type SkillRequest, type SkillResponse, } from './http-client'; export { SkillInstaller, runInstaller, type SkillConfig, type AssistantType, } from './installer'; export { handleInstallCommand } from './skill-install'; // Vision client — multi-provider (anthropic/openai/xai/gemini) // import { analyzeImage, detectProvider } from './vision.js' export * from './vision.js';