-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Expand file tree
/
Copy pathagents.ts
More file actions
26 lines (26 loc) · 861 Bytes
/
Copy pathagents.ts
File metadata and controls
26 lines (26 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// @ts-nocheck
export {
AGENT_DEFS,
getAgentDef,
readLocalAgentProfileDefs,
} from './runtimes/registry.js';
export { detectAgents, detectAgentsStream } 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 { openDesignAmrTraceEnv, 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';