@evolvingmachines/sdk 0.0.35 → 0.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +54 -42
- package/dist/index.d.cts +25 -11
- package/dist/index.d.ts +25 -11
- package/dist/index.js +54 -42
- package/package.json +10 -6
package/dist/index.d.cts
CHANGED
|
@@ -380,15 +380,23 @@ type WorkspaceMode = "knowledge" | "swe";
|
|
|
380
380
|
/** Available skills that can be enabled */
|
|
381
381
|
type SkillName = "pdf" | "dev-browser" | (string & {});
|
|
382
382
|
/** Browser automation providers that can be enabled explicitly */
|
|
383
|
-
type BrowserProvider = "browser-use" | "actionbook";
|
|
383
|
+
type BrowserProvider = "browser-use" | "actionbook" | "agent-browser";
|
|
384
|
+
/** Browser providers backed by Evolve-managed browser transport. */
|
|
385
|
+
type ManagedBrowserProvider = "actionbook" | "agent-browser";
|
|
384
386
|
/** Actionbook browser configuration. */
|
|
385
387
|
interface ActionbookBrowserConfig {
|
|
386
388
|
provider: "actionbook";
|
|
387
|
-
/** Use Evolve-managed browser transport.
|
|
388
|
-
|
|
389
|
+
/** Use Evolve-managed remote browser transport. Defaults to false for object config. */
|
|
390
|
+
remote?: boolean;
|
|
391
|
+
}
|
|
392
|
+
/** Agent-browser browser configuration. */
|
|
393
|
+
interface AgentBrowserConfig {
|
|
394
|
+
provider: "agent-browser";
|
|
395
|
+
/** Use Evolve-managed remote browser transport. Defaults to false for object config. */
|
|
396
|
+
remote?: boolean;
|
|
389
397
|
}
|
|
390
398
|
/** Browser automation configuration. */
|
|
391
|
-
type BrowserConfig = BrowserProvider | ActionbookBrowserConfig;
|
|
399
|
+
type BrowserConfig = BrowserProvider | ActionbookBrowserConfig | AgentBrowserConfig;
|
|
392
400
|
/** Marketplace plugin shape for CLIs with explicit plugin install commands. */
|
|
393
401
|
interface MarketplaceAgentPluginConfig {
|
|
394
402
|
/** Marketplace URL/source to register in the sandbox user profile */
|
|
@@ -541,6 +549,7 @@ interface AgentOptions {
|
|
|
541
549
|
browserPrompt?: string;
|
|
542
550
|
/** Evolve-managed browser transport for browser automation */
|
|
543
551
|
managedBrowser?: {
|
|
552
|
+
provider: ManagedBrowserProvider;
|
|
544
553
|
apiKey: string;
|
|
545
554
|
dashboardUrl?: string;
|
|
546
555
|
};
|
|
@@ -1025,6 +1034,7 @@ declare class Agent {
|
|
|
1025
1034
|
*/
|
|
1026
1035
|
private buildEnvironmentVariables;
|
|
1027
1036
|
private ensureManagedBrowserSession;
|
|
1037
|
+
private setupManagedBrowser;
|
|
1028
1038
|
private closeManagedBrowserSession;
|
|
1029
1039
|
/**
|
|
1030
1040
|
* Build the inline gateway config JSON for agents using gatewayConfigEnv
|
|
@@ -1487,14 +1497,18 @@ declare class Evolve extends EventEmitter {
|
|
|
1487
1497
|
/**
|
|
1488
1498
|
* Enable browser automation.
|
|
1489
1499
|
*
|
|
1490
|
-
*
|
|
1491
|
-
* transport in gateway mode. Pass "
|
|
1500
|
+
* .withBrowser() defaults to Actionbook with Evolve-managed remote browser
|
|
1501
|
+
* transport in gateway mode. Pass "actionbook" or "agent-browser" for local
|
|
1502
|
+
* skills-only mode, or "browser-use" to use the browser-use MCP server.
|
|
1503
|
+
*
|
|
1504
|
+
* @example
|
|
1505
|
+
* kit.withBrowser("browser-use") // browser-use MCP provider
|
|
1492
1506
|
*
|
|
1493
1507
|
* @example
|
|
1494
|
-
* kit.withBrowser(
|
|
1508
|
+
* kit.withBrowser() // defaults to remote managed Actionbook
|
|
1495
1509
|
*
|
|
1496
1510
|
* @example
|
|
1497
|
-
* kit.withBrowser() //
|
|
1511
|
+
* kit.withBrowser({ provider: "agent-browser", remote: true }) // managed remote agent-browser
|
|
1498
1512
|
*/
|
|
1499
1513
|
withBrowser(provider?: BrowserConfig | false): this;
|
|
1500
1514
|
/**
|
|
@@ -2666,8 +2680,8 @@ interface AgentRegistryEntry {
|
|
|
2666
2680
|
buildCommand: (opts: BuildCommandOptions) => string;
|
|
2667
2681
|
/** Extra setup step (e.g., codex login) */
|
|
2668
2682
|
setupCommand?: string;
|
|
2669
|
-
/**
|
|
2670
|
-
|
|
2683
|
+
/** Gateway path prefix for CLIs that use a provider-native passthrough endpoint */
|
|
2684
|
+
gatewayPath?: string;
|
|
2671
2685
|
/** Default base URL for direct mode (only needed if provider requires specific endpoint, e.g., Qwen → Dashscope) */
|
|
2672
2686
|
defaultBaseUrl?: string;
|
|
2673
2687
|
/** Available beta headers for this agent (for reference) */
|
|
@@ -3099,4 +3113,4 @@ interface SessionsClient {
|
|
|
3099
3113
|
*/
|
|
3100
3114
|
declare function sessions(config?: SessionsConfig): SessionsClient;
|
|
3101
3115
|
|
|
3102
|
-
export { AGENT_REGISTRY, AGENT_TYPES, type ActionbookBrowserConfig, Agent, type AgentConfig, type AgentOptions, type AgentOverride, type AgentParser, type AgentPluginConfig, type AgentRegistryEntry, type AgentResponse, type AgentRuntimeState, type AgentType, BROWSER_ACTIONBOOK_PROMPT, type BaseMeta, type BestOfConfig, type BestOfParams, type BestOfResult, type BrowserConfig, type BrowserProvider, type BrowserRuntimeInfo, type CandidateCompleteEvent, type CheckpointInfo, type CodexAgentPluginConfig, type ComposioAuthResult, type ComposioConfig, type ComposioConnectionStatus, type ComposioSetup, type DownloadCheckpointOptions, type DownloadFilesOptions, type DownloadSessionOptions, type EmitOption, type EventHandler, type EventName, Evolve, type EvolveConfig, type EvolveEvents, type ExecuteCommandOptions, type FileMap, type FilterConfig, type FilterParams, type GeminiAgentPluginConfig, type GetEventsOptions, type IndexedMeta, type ItemInput, type ItemRetryEvent, JUDGE_PROMPT, type JsonSchema, type JudgeCompleteEvent, type JudgeDecision, type JudgeMeta, type LifecycleEvent, type LifecycleReason, type ListSessionsOptions, type MapConfig, type MapParams, type MarketplaceAgentPluginConfig, type McpConfigInfo, type McpServerConfig, type ModelInfo, type OnCandidateCompleteCallback, type OnItemRetryCallback, type OnJudgeCompleteCallback, type OnVerifierCompleteCallback, type OnWorkerCompleteCallback, type OperationType, type OutputEvent, type OutputResult, Pipeline, type PipelineContext, type PipelineEventMap, type PipelineEvents, type PipelineResult, type ProcessInfo, type Prompt, type PromptFn, RETRY_FEEDBACK_PROMPT, type ReasoningEffort, type ReduceConfig, type ReduceMeta, type ReduceParams, type ReduceResult, type ResolvedStorageConfig, type RetryConfig, type RunCost, type RunOptions, SCHEMA_PROMPT, SWARM_RESULT_BRAND, SYSTEM_PROMPT, type SandboxCommandHandle, type SandboxCommandResult, type SandboxCommands, type SandboxCreateOptions, type SandboxFiles, type SandboxInstance, type SandboxLifecycleState, type SandboxProvider, type SandboxRunOptions, type SandboxSpawnOptions, type SchemaValidationOptions, Semaphore, type SessionCost, type SessionEvent, type SessionInfo, type SessionPage, type SessionStatus, type SessionsClient, type SessionsConfig, type SkillName, type SkillsConfig, type StepCompleteEvent, type StepErrorEvent, type StepEvent, type StepResult, type StepStartEvent, type StorageClient, type StorageConfig, type StreamCallbacks, Swarm, type SwarmConfig, type SwarmResult, SwarmResultList, TerminalPipeline, type ToolsFilter, VALIDATION_PRESETS, VERIFY_PROMPT, type ValidationMode, type VerifierCompleteEvent, type VerifyConfig, type VerifyDecision, type VerifyInfo, type VerifyMeta, WORKSPACE_PROMPT, WORKSPACE_SWE_PROMPT, type WorkerCompleteEvent, type WorkspaceMode, applyTemplate, buildWorkerSystemPrompt, createAgentParser, createClaudeParser, createCodexParser, createDroidParser, createGeminiParser, executeWithRetry, expandPath, getAgentConfig, getMcpSettingsDir, getMcpSettingsPath, isValidAgentType, isZodSchema, jsonSchemaToString, parseNdjsonLine, parseNdjsonOutput, parseQwenOutput, readLocalDir, resolveStorageConfig, saveLocalDir, sessions, storage, writeClaudeMcpConfig, writeCodexMcpConfig, writeDroidGatewaySettings, writeDroidMcpConfig, writeGeminiMcpConfig, writeMcpConfig, writeQwenMcpConfig, zodSchemaToJson };
|
|
3116
|
+
export { AGENT_REGISTRY, AGENT_TYPES, type ActionbookBrowserConfig, Agent, type AgentBrowserConfig, type AgentConfig, type AgentOptions, type AgentOverride, type AgentParser, type AgentPluginConfig, type AgentRegistryEntry, type AgentResponse, type AgentRuntimeState, type AgentType, BROWSER_ACTIONBOOK_PROMPT, type BaseMeta, type BestOfConfig, type BestOfParams, type BestOfResult, type BrowserConfig, type BrowserProvider, type BrowserRuntimeInfo, type CandidateCompleteEvent, type CheckpointInfo, type CodexAgentPluginConfig, type ComposioAuthResult, type ComposioConfig, type ComposioConnectionStatus, type ComposioSetup, type DownloadCheckpointOptions, type DownloadFilesOptions, type DownloadSessionOptions, type EmitOption, type EventHandler, type EventName, Evolve, type EvolveConfig, type EvolveEvents, type ExecuteCommandOptions, type FileMap, type FilterConfig, type FilterParams, type GeminiAgentPluginConfig, type GetEventsOptions, type IndexedMeta, type ItemInput, type ItemRetryEvent, JUDGE_PROMPT, type JsonSchema, type JudgeCompleteEvent, type JudgeDecision, type JudgeMeta, type LifecycleEvent, type LifecycleReason, type ListSessionsOptions, type ManagedBrowserProvider, type MapConfig, type MapParams, type MarketplaceAgentPluginConfig, type McpConfigInfo, type McpServerConfig, type ModelInfo, type OnCandidateCompleteCallback, type OnItemRetryCallback, type OnJudgeCompleteCallback, type OnVerifierCompleteCallback, type OnWorkerCompleteCallback, type OperationType, type OutputEvent, type OutputResult, Pipeline, type PipelineContext, type PipelineEventMap, type PipelineEvents, type PipelineResult, type ProcessInfo, type Prompt, type PromptFn, RETRY_FEEDBACK_PROMPT, type ReasoningEffort, type ReduceConfig, type ReduceMeta, type ReduceParams, type ReduceResult, type ResolvedStorageConfig, type RetryConfig, type RunCost, type RunOptions, SCHEMA_PROMPT, SWARM_RESULT_BRAND, SYSTEM_PROMPT, type SandboxCommandHandle, type SandboxCommandResult, type SandboxCommands, type SandboxCreateOptions, type SandboxFiles, type SandboxInstance, type SandboxLifecycleState, type SandboxProvider, type SandboxRunOptions, type SandboxSpawnOptions, type SchemaValidationOptions, Semaphore, type SessionCost, type SessionEvent, type SessionInfo, type SessionPage, type SessionStatus, type SessionsClient, type SessionsConfig, type SkillName, type SkillsConfig, type StepCompleteEvent, type StepErrorEvent, type StepEvent, type StepResult, type StepStartEvent, type StorageClient, type StorageConfig, type StreamCallbacks, Swarm, type SwarmConfig, type SwarmResult, SwarmResultList, TerminalPipeline, type ToolsFilter, VALIDATION_PRESETS, VERIFY_PROMPT, type ValidationMode, type VerifierCompleteEvent, type VerifyConfig, type VerifyDecision, type VerifyInfo, type VerifyMeta, WORKSPACE_PROMPT, WORKSPACE_SWE_PROMPT, type WorkerCompleteEvent, type WorkspaceMode, applyTemplate, buildWorkerSystemPrompt, createAgentParser, createClaudeParser, createCodexParser, createDroidParser, createGeminiParser, executeWithRetry, expandPath, getAgentConfig, getMcpSettingsDir, getMcpSettingsPath, isValidAgentType, isZodSchema, jsonSchemaToString, parseNdjsonLine, parseNdjsonOutput, parseQwenOutput, readLocalDir, resolveStorageConfig, saveLocalDir, sessions, storage, writeClaudeMcpConfig, writeCodexMcpConfig, writeDroidGatewaySettings, writeDroidMcpConfig, writeGeminiMcpConfig, writeMcpConfig, writeQwenMcpConfig, zodSchemaToJson };
|
package/dist/index.d.ts
CHANGED
|
@@ -380,15 +380,23 @@ type WorkspaceMode = "knowledge" | "swe";
|
|
|
380
380
|
/** Available skills that can be enabled */
|
|
381
381
|
type SkillName = "pdf" | "dev-browser" | (string & {});
|
|
382
382
|
/** Browser automation providers that can be enabled explicitly */
|
|
383
|
-
type BrowserProvider = "browser-use" | "actionbook";
|
|
383
|
+
type BrowserProvider = "browser-use" | "actionbook" | "agent-browser";
|
|
384
|
+
/** Browser providers backed by Evolve-managed browser transport. */
|
|
385
|
+
type ManagedBrowserProvider = "actionbook" | "agent-browser";
|
|
384
386
|
/** Actionbook browser configuration. */
|
|
385
387
|
interface ActionbookBrowserConfig {
|
|
386
388
|
provider: "actionbook";
|
|
387
|
-
/** Use Evolve-managed browser transport.
|
|
388
|
-
|
|
389
|
+
/** Use Evolve-managed remote browser transport. Defaults to false for object config. */
|
|
390
|
+
remote?: boolean;
|
|
391
|
+
}
|
|
392
|
+
/** Agent-browser browser configuration. */
|
|
393
|
+
interface AgentBrowserConfig {
|
|
394
|
+
provider: "agent-browser";
|
|
395
|
+
/** Use Evolve-managed remote browser transport. Defaults to false for object config. */
|
|
396
|
+
remote?: boolean;
|
|
389
397
|
}
|
|
390
398
|
/** Browser automation configuration. */
|
|
391
|
-
type BrowserConfig = BrowserProvider | ActionbookBrowserConfig;
|
|
399
|
+
type BrowserConfig = BrowserProvider | ActionbookBrowserConfig | AgentBrowserConfig;
|
|
392
400
|
/** Marketplace plugin shape for CLIs with explicit plugin install commands. */
|
|
393
401
|
interface MarketplaceAgentPluginConfig {
|
|
394
402
|
/** Marketplace URL/source to register in the sandbox user profile */
|
|
@@ -541,6 +549,7 @@ interface AgentOptions {
|
|
|
541
549
|
browserPrompt?: string;
|
|
542
550
|
/** Evolve-managed browser transport for browser automation */
|
|
543
551
|
managedBrowser?: {
|
|
552
|
+
provider: ManagedBrowserProvider;
|
|
544
553
|
apiKey: string;
|
|
545
554
|
dashboardUrl?: string;
|
|
546
555
|
};
|
|
@@ -1025,6 +1034,7 @@ declare class Agent {
|
|
|
1025
1034
|
*/
|
|
1026
1035
|
private buildEnvironmentVariables;
|
|
1027
1036
|
private ensureManagedBrowserSession;
|
|
1037
|
+
private setupManagedBrowser;
|
|
1028
1038
|
private closeManagedBrowserSession;
|
|
1029
1039
|
/**
|
|
1030
1040
|
* Build the inline gateway config JSON for agents using gatewayConfigEnv
|
|
@@ -1487,14 +1497,18 @@ declare class Evolve extends EventEmitter {
|
|
|
1487
1497
|
/**
|
|
1488
1498
|
* Enable browser automation.
|
|
1489
1499
|
*
|
|
1490
|
-
*
|
|
1491
|
-
* transport in gateway mode. Pass "
|
|
1500
|
+
* .withBrowser() defaults to Actionbook with Evolve-managed remote browser
|
|
1501
|
+
* transport in gateway mode. Pass "actionbook" or "agent-browser" for local
|
|
1502
|
+
* skills-only mode, or "browser-use" to use the browser-use MCP server.
|
|
1503
|
+
*
|
|
1504
|
+
* @example
|
|
1505
|
+
* kit.withBrowser("browser-use") // browser-use MCP provider
|
|
1492
1506
|
*
|
|
1493
1507
|
* @example
|
|
1494
|
-
* kit.withBrowser(
|
|
1508
|
+
* kit.withBrowser() // defaults to remote managed Actionbook
|
|
1495
1509
|
*
|
|
1496
1510
|
* @example
|
|
1497
|
-
* kit.withBrowser() //
|
|
1511
|
+
* kit.withBrowser({ provider: "agent-browser", remote: true }) // managed remote agent-browser
|
|
1498
1512
|
*/
|
|
1499
1513
|
withBrowser(provider?: BrowserConfig | false): this;
|
|
1500
1514
|
/**
|
|
@@ -2666,8 +2680,8 @@ interface AgentRegistryEntry {
|
|
|
2666
2680
|
buildCommand: (opts: BuildCommandOptions) => string;
|
|
2667
2681
|
/** Extra setup step (e.g., codex login) */
|
|
2668
2682
|
setupCommand?: string;
|
|
2669
|
-
/**
|
|
2670
|
-
|
|
2683
|
+
/** Gateway path prefix for CLIs that use a provider-native passthrough endpoint */
|
|
2684
|
+
gatewayPath?: string;
|
|
2671
2685
|
/** Default base URL for direct mode (only needed if provider requires specific endpoint, e.g., Qwen → Dashscope) */
|
|
2672
2686
|
defaultBaseUrl?: string;
|
|
2673
2687
|
/** Available beta headers for this agent (for reference) */
|
|
@@ -3099,4 +3113,4 @@ interface SessionsClient {
|
|
|
3099
3113
|
*/
|
|
3100
3114
|
declare function sessions(config?: SessionsConfig): SessionsClient;
|
|
3101
3115
|
|
|
3102
|
-
export { AGENT_REGISTRY, AGENT_TYPES, type ActionbookBrowserConfig, Agent, type AgentConfig, type AgentOptions, type AgentOverride, type AgentParser, type AgentPluginConfig, type AgentRegistryEntry, type AgentResponse, type AgentRuntimeState, type AgentType, BROWSER_ACTIONBOOK_PROMPT, type BaseMeta, type BestOfConfig, type BestOfParams, type BestOfResult, type BrowserConfig, type BrowserProvider, type BrowserRuntimeInfo, type CandidateCompleteEvent, type CheckpointInfo, type CodexAgentPluginConfig, type ComposioAuthResult, type ComposioConfig, type ComposioConnectionStatus, type ComposioSetup, type DownloadCheckpointOptions, type DownloadFilesOptions, type DownloadSessionOptions, type EmitOption, type EventHandler, type EventName, Evolve, type EvolveConfig, type EvolveEvents, type ExecuteCommandOptions, type FileMap, type FilterConfig, type FilterParams, type GeminiAgentPluginConfig, type GetEventsOptions, type IndexedMeta, type ItemInput, type ItemRetryEvent, JUDGE_PROMPT, type JsonSchema, type JudgeCompleteEvent, type JudgeDecision, type JudgeMeta, type LifecycleEvent, type LifecycleReason, type ListSessionsOptions, type MapConfig, type MapParams, type MarketplaceAgentPluginConfig, type McpConfigInfo, type McpServerConfig, type ModelInfo, type OnCandidateCompleteCallback, type OnItemRetryCallback, type OnJudgeCompleteCallback, type OnVerifierCompleteCallback, type OnWorkerCompleteCallback, type OperationType, type OutputEvent, type OutputResult, Pipeline, type PipelineContext, type PipelineEventMap, type PipelineEvents, type PipelineResult, type ProcessInfo, type Prompt, type PromptFn, RETRY_FEEDBACK_PROMPT, type ReasoningEffort, type ReduceConfig, type ReduceMeta, type ReduceParams, type ReduceResult, type ResolvedStorageConfig, type RetryConfig, type RunCost, type RunOptions, SCHEMA_PROMPT, SWARM_RESULT_BRAND, SYSTEM_PROMPT, type SandboxCommandHandle, type SandboxCommandResult, type SandboxCommands, type SandboxCreateOptions, type SandboxFiles, type SandboxInstance, type SandboxLifecycleState, type SandboxProvider, type SandboxRunOptions, type SandboxSpawnOptions, type SchemaValidationOptions, Semaphore, type SessionCost, type SessionEvent, type SessionInfo, type SessionPage, type SessionStatus, type SessionsClient, type SessionsConfig, type SkillName, type SkillsConfig, type StepCompleteEvent, type StepErrorEvent, type StepEvent, type StepResult, type StepStartEvent, type StorageClient, type StorageConfig, type StreamCallbacks, Swarm, type SwarmConfig, type SwarmResult, SwarmResultList, TerminalPipeline, type ToolsFilter, VALIDATION_PRESETS, VERIFY_PROMPT, type ValidationMode, type VerifierCompleteEvent, type VerifyConfig, type VerifyDecision, type VerifyInfo, type VerifyMeta, WORKSPACE_PROMPT, WORKSPACE_SWE_PROMPT, type WorkerCompleteEvent, type WorkspaceMode, applyTemplate, buildWorkerSystemPrompt, createAgentParser, createClaudeParser, createCodexParser, createDroidParser, createGeminiParser, executeWithRetry, expandPath, getAgentConfig, getMcpSettingsDir, getMcpSettingsPath, isValidAgentType, isZodSchema, jsonSchemaToString, parseNdjsonLine, parseNdjsonOutput, parseQwenOutput, readLocalDir, resolveStorageConfig, saveLocalDir, sessions, storage, writeClaudeMcpConfig, writeCodexMcpConfig, writeDroidGatewaySettings, writeDroidMcpConfig, writeGeminiMcpConfig, writeMcpConfig, writeQwenMcpConfig, zodSchemaToJson };
|
|
3116
|
+
export { AGENT_REGISTRY, AGENT_TYPES, type ActionbookBrowserConfig, Agent, type AgentBrowserConfig, type AgentConfig, type AgentOptions, type AgentOverride, type AgentParser, type AgentPluginConfig, type AgentRegistryEntry, type AgentResponse, type AgentRuntimeState, type AgentType, BROWSER_ACTIONBOOK_PROMPT, type BaseMeta, type BestOfConfig, type BestOfParams, type BestOfResult, type BrowserConfig, type BrowserProvider, type BrowserRuntimeInfo, type CandidateCompleteEvent, type CheckpointInfo, type CodexAgentPluginConfig, type ComposioAuthResult, type ComposioConfig, type ComposioConnectionStatus, type ComposioSetup, type DownloadCheckpointOptions, type DownloadFilesOptions, type DownloadSessionOptions, type EmitOption, type EventHandler, type EventName, Evolve, type EvolveConfig, type EvolveEvents, type ExecuteCommandOptions, type FileMap, type FilterConfig, type FilterParams, type GeminiAgentPluginConfig, type GetEventsOptions, type IndexedMeta, type ItemInput, type ItemRetryEvent, JUDGE_PROMPT, type JsonSchema, type JudgeCompleteEvent, type JudgeDecision, type JudgeMeta, type LifecycleEvent, type LifecycleReason, type ListSessionsOptions, type ManagedBrowserProvider, type MapConfig, type MapParams, type MarketplaceAgentPluginConfig, type McpConfigInfo, type McpServerConfig, type ModelInfo, type OnCandidateCompleteCallback, type OnItemRetryCallback, type OnJudgeCompleteCallback, type OnVerifierCompleteCallback, type OnWorkerCompleteCallback, type OperationType, type OutputEvent, type OutputResult, Pipeline, type PipelineContext, type PipelineEventMap, type PipelineEvents, type PipelineResult, type ProcessInfo, type Prompt, type PromptFn, RETRY_FEEDBACK_PROMPT, type ReasoningEffort, type ReduceConfig, type ReduceMeta, type ReduceParams, type ReduceResult, type ResolvedStorageConfig, type RetryConfig, type RunCost, type RunOptions, SCHEMA_PROMPT, SWARM_RESULT_BRAND, SYSTEM_PROMPT, type SandboxCommandHandle, type SandboxCommandResult, type SandboxCommands, type SandboxCreateOptions, type SandboxFiles, type SandboxInstance, type SandboxLifecycleState, type SandboxProvider, type SandboxRunOptions, type SandboxSpawnOptions, type SchemaValidationOptions, Semaphore, type SessionCost, type SessionEvent, type SessionInfo, type SessionPage, type SessionStatus, type SessionsClient, type SessionsConfig, type SkillName, type SkillsConfig, type StepCompleteEvent, type StepErrorEvent, type StepEvent, type StepResult, type StepStartEvent, type StorageClient, type StorageConfig, type StreamCallbacks, Swarm, type SwarmConfig, type SwarmResult, SwarmResultList, TerminalPipeline, type ToolsFilter, VALIDATION_PRESETS, VERIFY_PROMPT, type ValidationMode, type VerifierCompleteEvent, type VerifyConfig, type VerifyDecision, type VerifyInfo, type VerifyMeta, WORKSPACE_PROMPT, WORKSPACE_SWE_PROMPT, type WorkerCompleteEvent, type WorkspaceMode, applyTemplate, buildWorkerSystemPrompt, createAgentParser, createClaudeParser, createCodexParser, createDroidParser, createGeminiParser, executeWithRetry, expandPath, getAgentConfig, getMcpSettingsDir, getMcpSettingsPath, isValidAgentType, isZodSchema, jsonSchemaToString, parseNdjsonLine, parseNdjsonOutput, parseQwenOutput, readLocalDir, resolveStorageConfig, saveLocalDir, sessions, storage, writeClaudeMcpConfig, writeCodexMcpConfig, writeDroidGatewaySettings, writeDroidMcpConfig, writeGeminiMcpConfig, writeMcpConfig, writeQwenMcpConfig, zodSchemaToJson };
|