@evolvingmachines/sdk 0.0.46 → 0.0.48
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 +40 -40
- package/dist/index.d.cts +44 -2
- package/dist/index.d.ts +44 -2
- package/dist/index.js +40 -40
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -388,15 +388,27 @@ interface ActionbookBrowserConfig {
|
|
|
388
388
|
provider: "actionbook";
|
|
389
389
|
/** Use Evolve-managed remote browser transport. Defaults to false for object config. */
|
|
390
390
|
remote?: boolean;
|
|
391
|
+
/** Reusable provider-native browser profile for managed remote browser sessions. */
|
|
392
|
+
profile?: string;
|
|
391
393
|
}
|
|
392
394
|
/** Agent-browser browser configuration. */
|
|
393
395
|
interface AgentBrowserConfig {
|
|
394
396
|
provider: "agent-browser";
|
|
395
397
|
/** Use Evolve-managed remote browser transport. Defaults to false for object config. */
|
|
396
398
|
remote?: boolean;
|
|
399
|
+
/** Reusable provider-native browser profile for managed remote browser sessions. */
|
|
400
|
+
profile?: string;
|
|
401
|
+
}
|
|
402
|
+
/** Default managed browser configuration. */
|
|
403
|
+
interface DefaultBrowserConfig {
|
|
404
|
+
provider?: undefined;
|
|
405
|
+
/** Defaults to true for the default managed agent-browser path. */
|
|
406
|
+
remote?: boolean;
|
|
407
|
+
/** Reusable provider-native browser profile for managed remote browser sessions. */
|
|
408
|
+
profile?: string;
|
|
397
409
|
}
|
|
398
410
|
/** Browser automation configuration. */
|
|
399
|
-
type BrowserConfig = BrowserProvider | ActionbookBrowserConfig | AgentBrowserConfig;
|
|
411
|
+
type BrowserConfig = BrowserProvider | DefaultBrowserConfig | ActionbookBrowserConfig | AgentBrowserConfig;
|
|
400
412
|
/** Saved browser login selector exposed to a run. Empty/omitted means all enabled browser logins. */
|
|
401
413
|
interface BrowserCredentialScopeEntry {
|
|
402
414
|
website: string;
|
|
@@ -564,6 +576,7 @@ interface AgentOptions {
|
|
|
564
576
|
provider: ManagedBrowserProvider;
|
|
565
577
|
apiKey: string;
|
|
566
578
|
dashboardUrl?: string;
|
|
579
|
+
profile?: string;
|
|
567
580
|
};
|
|
568
581
|
/** Run-scoped browser login MCP setup. Requires managed remote agent-browser. */
|
|
569
582
|
browserCredentials?: {
|
|
@@ -1432,6 +1445,33 @@ declare class BrowserCredentialsClient {
|
|
|
1432
1445
|
}
|
|
1433
1446
|
declare function browserCredentials(config?: BrowserCredentialsClientConfig): BrowserCredentialsClient;
|
|
1434
1447
|
|
|
1448
|
+
interface BrowserProfileMetadata {
|
|
1449
|
+
id: string;
|
|
1450
|
+
profile: string;
|
|
1451
|
+
createdAt: string;
|
|
1452
|
+
updatedAt: string;
|
|
1453
|
+
lastUsedAt: string | null;
|
|
1454
|
+
}
|
|
1455
|
+
interface BrowserProfilesClientConfig {
|
|
1456
|
+
apiKey?: string;
|
|
1457
|
+
dashboardUrl?: string;
|
|
1458
|
+
}
|
|
1459
|
+
interface BrowserProfileDeleteInput {
|
|
1460
|
+
profile: string;
|
|
1461
|
+
}
|
|
1462
|
+
declare class BrowserProfilesClient {
|
|
1463
|
+
private readonly config;
|
|
1464
|
+
constructor(config?: BrowserProfilesClientConfig);
|
|
1465
|
+
private toMetadata;
|
|
1466
|
+
list(): Promise<{
|
|
1467
|
+
profiles: BrowserProfileMetadata[];
|
|
1468
|
+
}>;
|
|
1469
|
+
delete(input: BrowserProfileDeleteInput): Promise<{
|
|
1470
|
+
ok: boolean;
|
|
1471
|
+
}>;
|
|
1472
|
+
}
|
|
1473
|
+
declare function browserProfiles(config?: BrowserProfilesClientConfig): BrowserProfilesClient;
|
|
1474
|
+
|
|
1435
1475
|
/**
|
|
1436
1476
|
* Evolve events
|
|
1437
1477
|
*
|
|
@@ -1651,6 +1691,8 @@ declare class Evolve extends EventEmitter {
|
|
|
1651
1691
|
};
|
|
1652
1692
|
/** Static browser credential client for listing, creating, and deleting saved browser logins. */
|
|
1653
1693
|
static browserCredentials: typeof browserCredentials;
|
|
1694
|
+
/** Static browser profile client for listing and deleting reusable browser profiles. */
|
|
1695
|
+
static browserProfiles: typeof browserProfiles;
|
|
1654
1696
|
/**
|
|
1655
1697
|
* Initialize agent on first use
|
|
1656
1698
|
*/
|
|
@@ -3145,4 +3187,4 @@ interface SessionsClient {
|
|
|
3145
3187
|
*/
|
|
3146
3188
|
declare function sessions(config?: SessionsConfig): SessionsClient;
|
|
3147
3189
|
|
|
3148
|
-
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, BROWSER_LOGIN_MCP_SERVER_NAME, type BaseMeta, type BestOfConfig, type BestOfParams, type BestOfResult, type BrowserConfig, type BrowserCredentialCreateInput, type BrowserCredentialDeleteInput, type BrowserCredentialListOptions, type BrowserCredentialMetadata, type BrowserCredentialScopeEntry, BrowserCredentialsClient, type BrowserCredentialsClientConfig, type BrowserCredentialsConfig, type BrowserProvider, type BrowserReplay, type BrowserReplayOptions, type BrowserRuntimeInfo, type CandidateCompleteEvent, type CheckpointInfo, type CodexAgentPluginConfig, 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 IntegrationAccount, type IntegrationAccountDeleteParams, type IntegrationAccountDeleteResult, type IntegrationAccountListParams, type IntegrationAccountUpdateParams, type IntegrationAccountUpdateResult, type IntegrationAuthParams, type IntegrationAuthResult, type IntegrationToolsFilter, type IntegrationsConfig, type IntegrationsSetup, 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, 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, browserCredentials, 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 };
|
|
3190
|
+
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, BROWSER_LOGIN_MCP_SERVER_NAME, type BaseMeta, type BestOfConfig, type BestOfParams, type BestOfResult, type BrowserConfig, type BrowserCredentialCreateInput, type BrowserCredentialDeleteInput, type BrowserCredentialListOptions, type BrowserCredentialMetadata, type BrowserCredentialScopeEntry, BrowserCredentialsClient, type BrowserCredentialsClientConfig, type BrowserCredentialsConfig, type BrowserProfileDeleteInput, type BrowserProfileMetadata, BrowserProfilesClient, type BrowserProfilesClientConfig, type BrowserProvider, type BrowserReplay, type BrowserReplayOptions, type BrowserRuntimeInfo, type CandidateCompleteEvent, type CheckpointInfo, type CodexAgentPluginConfig, type DefaultBrowserConfig, 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 IntegrationAccount, type IntegrationAccountDeleteParams, type IntegrationAccountDeleteResult, type IntegrationAccountListParams, type IntegrationAccountUpdateParams, type IntegrationAccountUpdateResult, type IntegrationAuthParams, type IntegrationAuthResult, type IntegrationToolsFilter, type IntegrationsConfig, type IntegrationsSetup, 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, 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, browserCredentials, browserProfiles, 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
|
@@ -388,15 +388,27 @@ interface ActionbookBrowserConfig {
|
|
|
388
388
|
provider: "actionbook";
|
|
389
389
|
/** Use Evolve-managed remote browser transport. Defaults to false for object config. */
|
|
390
390
|
remote?: boolean;
|
|
391
|
+
/** Reusable provider-native browser profile for managed remote browser sessions. */
|
|
392
|
+
profile?: string;
|
|
391
393
|
}
|
|
392
394
|
/** Agent-browser browser configuration. */
|
|
393
395
|
interface AgentBrowserConfig {
|
|
394
396
|
provider: "agent-browser";
|
|
395
397
|
/** Use Evolve-managed remote browser transport. Defaults to false for object config. */
|
|
396
398
|
remote?: boolean;
|
|
399
|
+
/** Reusable provider-native browser profile for managed remote browser sessions. */
|
|
400
|
+
profile?: string;
|
|
401
|
+
}
|
|
402
|
+
/** Default managed browser configuration. */
|
|
403
|
+
interface DefaultBrowserConfig {
|
|
404
|
+
provider?: undefined;
|
|
405
|
+
/** Defaults to true for the default managed agent-browser path. */
|
|
406
|
+
remote?: boolean;
|
|
407
|
+
/** Reusable provider-native browser profile for managed remote browser sessions. */
|
|
408
|
+
profile?: string;
|
|
397
409
|
}
|
|
398
410
|
/** Browser automation configuration. */
|
|
399
|
-
type BrowserConfig = BrowserProvider | ActionbookBrowserConfig | AgentBrowserConfig;
|
|
411
|
+
type BrowserConfig = BrowserProvider | DefaultBrowserConfig | ActionbookBrowserConfig | AgentBrowserConfig;
|
|
400
412
|
/** Saved browser login selector exposed to a run. Empty/omitted means all enabled browser logins. */
|
|
401
413
|
interface BrowserCredentialScopeEntry {
|
|
402
414
|
website: string;
|
|
@@ -564,6 +576,7 @@ interface AgentOptions {
|
|
|
564
576
|
provider: ManagedBrowserProvider;
|
|
565
577
|
apiKey: string;
|
|
566
578
|
dashboardUrl?: string;
|
|
579
|
+
profile?: string;
|
|
567
580
|
};
|
|
568
581
|
/** Run-scoped browser login MCP setup. Requires managed remote agent-browser. */
|
|
569
582
|
browserCredentials?: {
|
|
@@ -1432,6 +1445,33 @@ declare class BrowserCredentialsClient {
|
|
|
1432
1445
|
}
|
|
1433
1446
|
declare function browserCredentials(config?: BrowserCredentialsClientConfig): BrowserCredentialsClient;
|
|
1434
1447
|
|
|
1448
|
+
interface BrowserProfileMetadata {
|
|
1449
|
+
id: string;
|
|
1450
|
+
profile: string;
|
|
1451
|
+
createdAt: string;
|
|
1452
|
+
updatedAt: string;
|
|
1453
|
+
lastUsedAt: string | null;
|
|
1454
|
+
}
|
|
1455
|
+
interface BrowserProfilesClientConfig {
|
|
1456
|
+
apiKey?: string;
|
|
1457
|
+
dashboardUrl?: string;
|
|
1458
|
+
}
|
|
1459
|
+
interface BrowserProfileDeleteInput {
|
|
1460
|
+
profile: string;
|
|
1461
|
+
}
|
|
1462
|
+
declare class BrowserProfilesClient {
|
|
1463
|
+
private readonly config;
|
|
1464
|
+
constructor(config?: BrowserProfilesClientConfig);
|
|
1465
|
+
private toMetadata;
|
|
1466
|
+
list(): Promise<{
|
|
1467
|
+
profiles: BrowserProfileMetadata[];
|
|
1468
|
+
}>;
|
|
1469
|
+
delete(input: BrowserProfileDeleteInput): Promise<{
|
|
1470
|
+
ok: boolean;
|
|
1471
|
+
}>;
|
|
1472
|
+
}
|
|
1473
|
+
declare function browserProfiles(config?: BrowserProfilesClientConfig): BrowserProfilesClient;
|
|
1474
|
+
|
|
1435
1475
|
/**
|
|
1436
1476
|
* Evolve events
|
|
1437
1477
|
*
|
|
@@ -1651,6 +1691,8 @@ declare class Evolve extends EventEmitter {
|
|
|
1651
1691
|
};
|
|
1652
1692
|
/** Static browser credential client for listing, creating, and deleting saved browser logins. */
|
|
1653
1693
|
static browserCredentials: typeof browserCredentials;
|
|
1694
|
+
/** Static browser profile client for listing and deleting reusable browser profiles. */
|
|
1695
|
+
static browserProfiles: typeof browserProfiles;
|
|
1654
1696
|
/**
|
|
1655
1697
|
* Initialize agent on first use
|
|
1656
1698
|
*/
|
|
@@ -3145,4 +3187,4 @@ interface SessionsClient {
|
|
|
3145
3187
|
*/
|
|
3146
3188
|
declare function sessions(config?: SessionsConfig): SessionsClient;
|
|
3147
3189
|
|
|
3148
|
-
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, BROWSER_LOGIN_MCP_SERVER_NAME, type BaseMeta, type BestOfConfig, type BestOfParams, type BestOfResult, type BrowserConfig, type BrowserCredentialCreateInput, type BrowserCredentialDeleteInput, type BrowserCredentialListOptions, type BrowserCredentialMetadata, type BrowserCredentialScopeEntry, BrowserCredentialsClient, type BrowserCredentialsClientConfig, type BrowserCredentialsConfig, type BrowserProvider, type BrowserReplay, type BrowserReplayOptions, type BrowserRuntimeInfo, type CandidateCompleteEvent, type CheckpointInfo, type CodexAgentPluginConfig, 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 IntegrationAccount, type IntegrationAccountDeleteParams, type IntegrationAccountDeleteResult, type IntegrationAccountListParams, type IntegrationAccountUpdateParams, type IntegrationAccountUpdateResult, type IntegrationAuthParams, type IntegrationAuthResult, type IntegrationToolsFilter, type IntegrationsConfig, type IntegrationsSetup, 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, 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, browserCredentials, 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 };
|
|
3190
|
+
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, BROWSER_LOGIN_MCP_SERVER_NAME, type BaseMeta, type BestOfConfig, type BestOfParams, type BestOfResult, type BrowserConfig, type BrowserCredentialCreateInput, type BrowserCredentialDeleteInput, type BrowserCredentialListOptions, type BrowserCredentialMetadata, type BrowserCredentialScopeEntry, BrowserCredentialsClient, type BrowserCredentialsClientConfig, type BrowserCredentialsConfig, type BrowserProfileDeleteInput, type BrowserProfileMetadata, BrowserProfilesClient, type BrowserProfilesClientConfig, type BrowserProvider, type BrowserReplay, type BrowserReplayOptions, type BrowserRuntimeInfo, type CandidateCompleteEvent, type CheckpointInfo, type CodexAgentPluginConfig, type DefaultBrowserConfig, 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 IntegrationAccount, type IntegrationAccountDeleteParams, type IntegrationAccountDeleteResult, type IntegrationAccountListParams, type IntegrationAccountUpdateParams, type IntegrationAccountUpdateResult, type IntegrationAuthParams, type IntegrationAuthResult, type IntegrationToolsFilter, type IntegrationsConfig, type IntegrationsSetup, 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, 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, browserCredentials, browserProfiles, 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 };
|