open-design/apps/daemon/src/agents.ts
fyz3120 428603cf6c
Add local custom agent profiles (#378)
Co-authored-by: fuyizheng3120 <fuyizheng3120@users.noreply.github.com>
2026-05-19 13:13:48 +08:00

26 lines
818 B
TypeScript

// @ts-nocheck
export {
AGENT_DEFS,
getAgentDef,
readLocalAgentProfileDefs,
} from './runtimes/registry.js';
export { detectAgents } from './runtimes/detection.js';
export {
resolveOnPath,
inspectAgentExecutableResolution,
resolveAgentExecutable,
} from './runtimes/executables.js';
export { applyAgentLaunchEnv, resolveAgentLaunch } from './runtimes/launch.js';
export { resolveAgentBin } from './runtimes/resolution.js';
export { spawnEnvForAgent } from './runtimes/env.js';
export { buildLiveArtifactsMcpServersForAgent } from './runtimes/mcp.js';
export {
checkPromptArgvBudget,
checkWindowsCmdShimCommandLineBudget,
checkWindowsDirectExeCommandLineBudget,
} from './runtimes/prompt-budget.js';
export {
rememberLiveModels,
isKnownModel,
sanitizeCustomModel,
} from './runtimes/models.js';