* Multi-run with configurable prompt templates * Fixes * Fix handleDuplicate fire-and-forget: await createTemplate and handle failure * Add Polish translations for prompt template and multirun group keys * fix: migrate remaining Remix icons to Icon component in MultiRunLauncher --------- Signed-off-by: Tom Rochette <roctom@gmail.com>
76 lines
1.2 KiB
JavaScript
76 lines
1.2 KiB
JavaScript
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,
|
|
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';
|
|
|
|
export { createUiAuth } from '../ui-auth/ui-auth.js';
|
|
|
|
export {
|
|
listMcpConfigs,
|
|
getMcpConfig,
|
|
createMcpConfig,
|
|
updateMcpConfig,
|
|
deleteMcpConfig,
|
|
} from './mcp.js';
|
|
|
|
export {
|
|
listPromptTemplates,
|
|
getPromptTemplate,
|
|
createPromptTemplate,
|
|
updatePromptTemplate,
|
|
deletePromptTemplate,
|
|
slugify as slugifyPromptTemplate,
|
|
} from './prompt-templates.js';
|