2026-02-20 10:57:44 -03:00
|
|
|
export {
|
|
|
|
|
AGENT_DIR,
|
|
|
|
|
COMMAND_DIR,
|
|
|
|
|
SKILL_DIR,
|
|
|
|
|
CONFIG_FILE,
|
|
|
|
|
AGENT_SCOPE,
|
|
|
|
|
COMMAND_SCOPE,
|
|
|
|
|
SKILL_SCOPE,
|
|
|
|
|
readConfig,
|
|
|
|
|
writeConfig,
|
|
|
|
|
readSkillSupportingFile,
|
|
|
|
|
writeSkillSupportingFile,
|
|
|
|
|
deleteSkillSupportingFile,
|
|
|
|
|
} from './shared.js';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
getAgentScope,
|
|
|
|
|
getAgentPermissionSource,
|
|
|
|
|
getAgentSources,
|
|
|
|
|
getAgentConfig,
|
|
|
|
|
createAgent,
|
|
|
|
|
updateAgent,
|
|
|
|
|
deleteAgent,
|
|
|
|
|
} from './agents.js';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
getCommandScope,
|
|
|
|
|
getCommandSources,
|
|
|
|
|
createCommand,
|
|
|
|
|
updateCommand,
|
|
|
|
|
deleteCommand,
|
|
|
|
|
} from './commands.js';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
getSkillSources,
|
|
|
|
|
getSkillScope,
|
|
|
|
|
discoverSkills,
|
2026-05-23 10:58:12 -07:00
|
|
|
mergeDiscoveredSkills,
|
2026-02-20 10:57:44 -03:00
|
|
|
createSkill,
|
|
|
|
|
updateSkill,
|
|
|
|
|
deleteSkill,
|
|
|
|
|
} from './skills.js';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
getProviderSources,
|
|
|
|
|
removeProviderConfig,
|
|
|
|
|
} from './providers.js';
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
readAuthFile,
|
|
|
|
|
writeAuthFile,
|
|
|
|
|
removeProviderAuth,
|
|
|
|
|
getProviderAuth,
|
|
|
|
|
listProviderAuths,
|
|
|
|
|
AUTH_FILE,
|
|
|
|
|
OPENCODE_DATA_DIR,
|
|
|
|
|
} from './auth.js';
|
|
|
|
|
|
2026-04-11 13:36:02 -06:00
|
|
|
export { createUiAuth } from '../ui-auth/ui-auth.js';
|
2026-02-23 04:22:33 +07:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
listMcpConfigs,
|
|
|
|
|
getMcpConfig,
|
|
|
|
|
createMcpConfig,
|
|
|
|
|
updateMcpConfig,
|
|
|
|
|
deleteMcpConfig,
|
|
|
|
|
} from './mcp.js';
|
2026-05-21 09:35:42 -04:00
|
|
|
|
2026-05-25 12:20:04 -04:00
|
|
|
export {
|
|
|
|
|
listPluginEntries,
|
|
|
|
|
getPluginEntry,
|
|
|
|
|
createPluginEntry,
|
|
|
|
|
updatePluginEntry,
|
|
|
|
|
deletePluginEntry,
|
|
|
|
|
listPluginDirFiles,
|
|
|
|
|
readPluginDirFile,
|
|
|
|
|
writePluginDirFile,
|
|
|
|
|
deletePluginDirFile,
|
|
|
|
|
encodePluginId,
|
|
|
|
|
decodePluginId,
|
|
|
|
|
parsePluginRaw,
|
|
|
|
|
serializePluginEntry,
|
|
|
|
|
} from './plugins.js';
|
|
|
|
|
|
2026-05-21 09:35:42 -04:00
|
|
|
export {
|
2026-05-21 20:00:35 +03:00
|
|
|
listSnippets,
|
|
|
|
|
getSnippet,
|
|
|
|
|
createSnippet,
|
|
|
|
|
updateSnippet,
|
|
|
|
|
deleteSnippet,
|
|
|
|
|
expandSnippets,
|
|
|
|
|
} from './snippets.js';
|
2026-05-25 12:20:04 -04:00
|
|
|
|
|
|
|
|
export { getNpmInfo, lookupNpmPackage, clearCache as clearNpmCache } from './npm-registry.js';
|
|
|
|
|
export { parseNpmSpec, parsePathSpec, isExactSemver } from './plugin-spec.js';
|