@excitedjs/tm 1.1.0
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/bin/tm +76 -0
- package/package.json +39 -0
- package/resolver-register.mjs +7 -0
- package/resolver.mjs +86 -0
- package/src/cli/context.ts +63 -0
- package/src/cli/dispatch.ts +444 -0
- package/src/cli/errors.ts +45 -0
- package/src/cli/parse.ts +265 -0
- package/src/cli.ts +12 -0
- package/src/codex-protocol/AbsolutePathBuf.ts +14 -0
- package/src/codex-protocol/AgentPath.ts +5 -0
- package/src/codex-protocol/ApplyPatchApprovalParams.ts +21 -0
- package/src/codex-protocol/ApplyPatchApprovalResponse.ts +6 -0
- package/src/codex-protocol/AuthMode.ts +8 -0
- package/src/codex-protocol/AutoCompactTokenLimitScope.ts +9 -0
- package/src/codex-protocol/ClientInfo.ts +5 -0
- package/src/codex-protocol/ClientNotification.ts +5 -0
- package/src/codex-protocol/ClientRequest.ts +110 -0
- package/src/codex-protocol/CollaborationMode.ts +10 -0
- package/src/codex-protocol/ContentItem.ts +6 -0
- package/src/codex-protocol/ConversationGitInfo.ts +5 -0
- package/src/codex-protocol/ConversationSummary.ts +8 -0
- package/src/codex-protocol/ExecCommandApprovalParams.ts +16 -0
- package/src/codex-protocol/ExecCommandApprovalResponse.ts +6 -0
- package/src/codex-protocol/ExecPolicyAmendment.ts +12 -0
- package/src/codex-protocol/FileChange.ts +5 -0
- package/src/codex-protocol/ForcedLoginMethod.ts +5 -0
- package/src/codex-protocol/FunctionCallOutputBody.ts +6 -0
- package/src/codex-protocol/FunctionCallOutputContentItem.ts +10 -0
- package/src/codex-protocol/FuzzyFileSearchMatchType.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchParams.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchResponse.ts +6 -0
- package/src/codex-protocol/FuzzyFileSearchResult.ts +9 -0
- package/src/codex-protocol/FuzzyFileSearchSessionCompletedNotification.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionStartParams.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionStartResponse.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionStopParams.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionStopResponse.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionUpdateParams.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionUpdateResponse.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionUpdatedNotification.ts +6 -0
- package/src/codex-protocol/GetAuthStatusParams.ts +5 -0
- package/src/codex-protocol/GetAuthStatusResponse.ts +6 -0
- package/src/codex-protocol/GetConversationSummaryParams.ts +6 -0
- package/src/codex-protocol/GetConversationSummaryResponse.ts +6 -0
- package/src/codex-protocol/GitDiffToRemoteParams.ts +5 -0
- package/src/codex-protocol/GitDiffToRemoteResponse.ts +6 -0
- package/src/codex-protocol/GitSha.ts +5 -0
- package/src/codex-protocol/ImageDetail.ts +5 -0
- package/src/codex-protocol/InitializeCapabilities.ts +21 -0
- package/src/codex-protocol/InitializeParams.ts +7 -0
- package/src/codex-protocol/InitializeResponse.ts +20 -0
- package/src/codex-protocol/InputModality.ts +8 -0
- package/src/codex-protocol/InternalSessionSource.ts +5 -0
- package/src/codex-protocol/LocalShellAction.ts +6 -0
- package/src/codex-protocol/LocalShellExecAction.ts +5 -0
- package/src/codex-protocol/LocalShellStatus.ts +5 -0
- package/src/codex-protocol/MessagePhase.ts +11 -0
- package/src/codex-protocol/ModeKind.ts +8 -0
- package/src/codex-protocol/NetworkPolicyAmendment.ts +6 -0
- package/src/codex-protocol/NetworkPolicyRuleAction.ts +5 -0
- package/src/codex-protocol/ParsedCommand.ts +12 -0
- package/src/codex-protocol/Personality.ts +5 -0
- package/src/codex-protocol/PlanType.ts +5 -0
- package/src/codex-protocol/RealtimeConversationVersion.ts +5 -0
- package/src/codex-protocol/RealtimeOutputModality.ts +5 -0
- package/src/codex-protocol/RealtimeVoice.ts +5 -0
- package/src/codex-protocol/RealtimeVoicesList.ts +6 -0
- package/src/codex-protocol/ReasoningEffort.ts +8 -0
- package/src/codex-protocol/ReasoningItemContent.ts +5 -0
- package/src/codex-protocol/ReasoningItemReasoningSummary.ts +5 -0
- package/src/codex-protocol/ReasoningSummary.ts +10 -0
- package/src/codex-protocol/RequestId.ts +5 -0
- package/src/codex-protocol/Resource.ts +9 -0
- package/src/codex-protocol/ResourceContent.ts +17 -0
- package/src/codex-protocol/ResourceTemplate.ts +9 -0
- package/src/codex-protocol/ResponseItem.ts +17 -0
- package/src/codex-protocol/ReviewDecision.ts +10 -0
- package/src/codex-protocol/ServerNotification.ts +73 -0
- package/src/codex-protocol/ServerRequest.ts +19 -0
- package/src/codex-protocol/SessionSource.ts +7 -0
- package/src/codex-protocol/Settings.ts +9 -0
- package/src/codex-protocol/SubAgentSource.ts +7 -0
- package/src/codex-protocol/ThreadId.ts +5 -0
- package/src/codex-protocol/ThreadMemoryMode.ts +5 -0
- package/src/codex-protocol/Tool.ts +9 -0
- package/src/codex-protocol/Verbosity.ts +9 -0
- package/src/codex-protocol/WebSearchAction.ts +5 -0
- package/src/codex-protocol/WebSearchContextSize.ts +5 -0
- package/src/codex-protocol/WebSearchLocation.ts +5 -0
- package/src/codex-protocol/WebSearchMode.ts +5 -0
- package/src/codex-protocol/WebSearchToolConfig.ts +7 -0
- package/src/codex-protocol/index.ts +86 -0
- package/src/codex-protocol/serde_json/JsonValue.ts +5 -0
- package/src/codex-protocol/v2/Account.ts +6 -0
- package/src/codex-protocol/v2/AccountLoginCompletedNotification.ts +5 -0
- package/src/codex-protocol/v2/AccountRateLimitsUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/AccountUpdatedNotification.ts +7 -0
- package/src/codex-protocol/v2/ActivePermissionProfile.ts +15 -0
- package/src/codex-protocol/v2/AddCreditsNudgeCreditType.ts +5 -0
- package/src/codex-protocol/v2/AddCreditsNudgeEmailStatus.ts +5 -0
- package/src/codex-protocol/v2/AdditionalFileSystemPermissions.ts +15 -0
- package/src/codex-protocol/v2/AdditionalNetworkPermissions.ts +5 -0
- package/src/codex-protocol/v2/AdditionalPermissionProfile.ts +11 -0
- package/src/codex-protocol/v2/AgentMessageDeltaNotification.ts +5 -0
- package/src/codex-protocol/v2/AnalyticsConfig.ts +6 -0
- package/src/codex-protocol/v2/AppBranding.ts +8 -0
- package/src/codex-protocol/v2/AppInfo.ts +19 -0
- package/src/codex-protocol/v2/AppListUpdatedNotification.ts +9 -0
- package/src/codex-protocol/v2/AppMetadata.ts +7 -0
- package/src/codex-protocol/v2/AppReview.ts +5 -0
- package/src/codex-protocol/v2/AppScreenshot.ts +5 -0
- package/src/codex-protocol/v2/AppSummary.ts +8 -0
- package/src/codex-protocol/v2/AppToolApproval.ts +5 -0
- package/src/codex-protocol/v2/AppToolsConfig.ts +6 -0
- package/src/codex-protocol/v2/ApprovalsReviewer.ts +12 -0
- package/src/codex-protocol/v2/AppsConfig.ts +8 -0
- package/src/codex-protocol/v2/AppsDefaultConfig.ts +5 -0
- package/src/codex-protocol/v2/AppsListParams.ts +24 -0
- package/src/codex-protocol/v2/AppsListResponse.ts +14 -0
- package/src/codex-protocol/v2/AskForApproval.ts +5 -0
- package/src/codex-protocol/v2/AttestationGenerateParams.ts +5 -0
- package/src/codex-protocol/v2/AttestationGenerateResponse.ts +9 -0
- package/src/codex-protocol/v2/AutoReviewDecisionSource.ts +8 -0
- package/src/codex-protocol/v2/ByteRange.ts +5 -0
- package/src/codex-protocol/v2/CancelLoginAccountParams.ts +5 -0
- package/src/codex-protocol/v2/CancelLoginAccountResponse.ts +6 -0
- package/src/codex-protocol/v2/CancelLoginAccountStatus.ts +5 -0
- package/src/codex-protocol/v2/ChatgptAuthTokensRefreshParams.ts +16 -0
- package/src/codex-protocol/v2/ChatgptAuthTokensRefreshReason.ts +5 -0
- package/src/codex-protocol/v2/ChatgptAuthTokensRefreshResponse.ts +5 -0
- package/src/codex-protocol/v2/CodexErrorInfo.ts +12 -0
- package/src/codex-protocol/v2/CollabAgentState.ts +6 -0
- package/src/codex-protocol/v2/CollabAgentStatus.ts +5 -0
- package/src/codex-protocol/v2/CollabAgentTool.ts +5 -0
- package/src/codex-protocol/v2/CollabAgentToolCallStatus.ts +5 -0
- package/src/codex-protocol/v2/CollaborationModeListParams.ts +8 -0
- package/src/codex-protocol/v2/CollaborationModeListResponse.ts +9 -0
- package/src/codex-protocol/v2/CollaborationModeMask.ts +10 -0
- package/src/codex-protocol/v2/CommandAction.ts +6 -0
- package/src/codex-protocol/v2/CommandExecOutputDeltaNotification.ts +30 -0
- package/src/codex-protocol/v2/CommandExecOutputStream.ts +8 -0
- package/src/codex-protocol/v2/CommandExecParams.ts +105 -0
- package/src/codex-protocol/v2/CommandExecResizeParams.ts +18 -0
- package/src/codex-protocol/v2/CommandExecResizeResponse.ts +8 -0
- package/src/codex-protocol/v2/CommandExecResponse.ts +24 -0
- package/src/codex-protocol/v2/CommandExecTerminalSize.ts +16 -0
- package/src/codex-protocol/v2/CommandExecTerminateParams.ts +13 -0
- package/src/codex-protocol/v2/CommandExecTerminateResponse.ts +8 -0
- package/src/codex-protocol/v2/CommandExecWriteParams.ts +22 -0
- package/src/codex-protocol/v2/CommandExecWriteResponse.ts +8 -0
- package/src/codex-protocol/v2/CommandExecutionApprovalDecision.ts +7 -0
- package/src/codex-protocol/v2/CommandExecutionOutputDeltaNotification.ts +5 -0
- package/src/codex-protocol/v2/CommandExecutionRequestApprovalParams.ts +62 -0
- package/src/codex-protocol/v2/CommandExecutionRequestApprovalResponse.ts +6 -0
- package/src/codex-protocol/v2/CommandExecutionSource.ts +5 -0
- package/src/codex-protocol/v2/CommandExecutionStatus.ts +5 -0
- package/src/codex-protocol/v2/CommandMigration.ts +5 -0
- package/src/codex-protocol/v2/ComputerUseRequirements.ts +5 -0
- package/src/codex-protocol/v2/Config.ts +26 -0
- package/src/codex-protocol/v2/ConfigBatchWriteParams.ts +14 -0
- package/src/codex-protocol/v2/ConfigEdit.ts +7 -0
- package/src/codex-protocol/v2/ConfigLayer.ts +7 -0
- package/src/codex-protocol/v2/ConfigLayerMetadata.ts +6 -0
- package/src/codex-protocol/v2/ConfigLayerSource.ts +21 -0
- package/src/codex-protocol/v2/ConfigReadParams.ts +11 -0
- package/src/codex-protocol/v2/ConfigReadResponse.ts +8 -0
- package/src/codex-protocol/v2/ConfigRequirements.ts +13 -0
- package/src/codex-protocol/v2/ConfigRequirementsReadResponse.ts +10 -0
- package/src/codex-protocol/v2/ConfigValueWriteParams.ts +11 -0
- package/src/codex-protocol/v2/ConfigWarningNotification.ts +22 -0
- package/src/codex-protocol/v2/ConfigWriteResponse.ts +12 -0
- package/src/codex-protocol/v2/ConfiguredHookHandler.ts +5 -0
- package/src/codex-protocol/v2/ConfiguredHookMatcherGroup.ts +6 -0
- package/src/codex-protocol/v2/ContextCompactedNotification.ts +8 -0
- package/src/codex-protocol/v2/CreditsSnapshot.ts +5 -0
- package/src/codex-protocol/v2/DeprecationNoticeNotification.ts +13 -0
- package/src/codex-protocol/v2/DynamicToolCallOutputContentItem.ts +5 -0
- package/src/codex-protocol/v2/DynamicToolCallParams.ts +6 -0
- package/src/codex-protocol/v2/DynamicToolCallResponse.ts +6 -0
- package/src/codex-protocol/v2/DynamicToolCallStatus.ts +5 -0
- package/src/codex-protocol/v2/DynamicToolSpec.ts +6 -0
- package/src/codex-protocol/v2/EnvironmentAddParams.ts +5 -0
- package/src/codex-protocol/v2/EnvironmentAddResponse.ts +5 -0
- package/src/codex-protocol/v2/ErrorNotification.ts +6 -0
- package/src/codex-protocol/v2/ExecPolicyAmendment.ts +5 -0
- package/src/codex-protocol/v2/ExperimentalFeature.ts +37 -0
- package/src/codex-protocol/v2/ExperimentalFeatureEnablementSetParams.ts +12 -0
- package/src/codex-protocol/v2/ExperimentalFeatureEnablementSetResponse.ts +9 -0
- package/src/codex-protocol/v2/ExperimentalFeatureListParams.ts +19 -0
- package/src/codex-protocol/v2/ExperimentalFeatureListResponse.ts +11 -0
- package/src/codex-protocol/v2/ExperimentalFeatureStage.ts +5 -0
- package/src/codex-protocol/v2/ExternalAgentConfigDetectParams.ts +13 -0
- package/src/codex-protocol/v2/ExternalAgentConfigDetectResponse.ts +6 -0
- package/src/codex-protocol/v2/ExternalAgentConfigImportCompletedNotification.ts +5 -0
- package/src/codex-protocol/v2/ExternalAgentConfigImportParams.ts +6 -0
- package/src/codex-protocol/v2/ExternalAgentConfigImportResponse.ts +5 -0
- package/src/codex-protocol/v2/ExternalAgentConfigMigrationItem.ts +11 -0
- package/src/codex-protocol/v2/ExternalAgentConfigMigrationItemType.ts +5 -0
- package/src/codex-protocol/v2/FeedbackUploadParams.ts +5 -0
- package/src/codex-protocol/v2/FeedbackUploadResponse.ts +5 -0
- package/src/codex-protocol/v2/FileChangeApprovalDecision.ts +5 -0
- package/src/codex-protocol/v2/FileChangeOutputDeltaNotification.ts +10 -0
- package/src/codex-protocol/v2/FileChangePatchUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/FileChangeRequestApprovalParams.ts +18 -0
- package/src/codex-protocol/v2/FileChangeRequestApprovalResponse.ts +6 -0
- package/src/codex-protocol/v2/FileSystemAccessMode.ts +5 -0
- package/src/codex-protocol/v2/FileSystemPath.ts +7 -0
- package/src/codex-protocol/v2/FileSystemSandboxEntry.ts +7 -0
- package/src/codex-protocol/v2/FileSystemSpecialPath.ts +5 -0
- package/src/codex-protocol/v2/FileUpdateChange.ts +6 -0
- package/src/codex-protocol/v2/ForcedChatgptWorkspaceIds.ts +8 -0
- package/src/codex-protocol/v2/FsChangedNotification.ts +17 -0
- package/src/codex-protocol/v2/FsCopyParams.ts +21 -0
- package/src/codex-protocol/v2/FsCopyResponse.ts +8 -0
- package/src/codex-protocol/v2/FsCreateDirectoryParams.ts +17 -0
- package/src/codex-protocol/v2/FsCreateDirectoryResponse.ts +8 -0
- package/src/codex-protocol/v2/FsGetMetadataParams.ts +13 -0
- package/src/codex-protocol/v2/FsGetMetadataResponse.ts +28 -0
- package/src/codex-protocol/v2/FsReadDirectoryEntry.ts +20 -0
- package/src/codex-protocol/v2/FsReadDirectoryParams.ts +13 -0
- package/src/codex-protocol/v2/FsReadDirectoryResponse.ts +13 -0
- package/src/codex-protocol/v2/FsReadFileParams.ts +13 -0
- package/src/codex-protocol/v2/FsReadFileResponse.ts +12 -0
- package/src/codex-protocol/v2/FsRemoveParams.ts +21 -0
- package/src/codex-protocol/v2/FsRemoveResponse.ts +8 -0
- package/src/codex-protocol/v2/FsUnwatchParams.ts +12 -0
- package/src/codex-protocol/v2/FsUnwatchResponse.ts +8 -0
- package/src/codex-protocol/v2/FsWatchParams.ts +17 -0
- package/src/codex-protocol/v2/FsWatchResponse.ts +13 -0
- package/src/codex-protocol/v2/FsWriteFileParams.ts +17 -0
- package/src/codex-protocol/v2/FsWriteFileResponse.ts +8 -0
- package/src/codex-protocol/v2/GetAccountParams.ts +13 -0
- package/src/codex-protocol/v2/GetAccountRateLimitsResponse.ts +14 -0
- package/src/codex-protocol/v2/GetAccountResponse.ts +6 -0
- package/src/codex-protocol/v2/GitInfo.ts +5 -0
- package/src/codex-protocol/v2/GrantedPermissionProfile.ts +7 -0
- package/src/codex-protocol/v2/GuardianApprovalReview.ts +13 -0
- package/src/codex-protocol/v2/GuardianApprovalReviewAction.ts +9 -0
- package/src/codex-protocol/v2/GuardianApprovalReviewStatus.ts +8 -0
- package/src/codex-protocol/v2/GuardianCommandSource.ts +5 -0
- package/src/codex-protocol/v2/GuardianRiskLevel.ts +8 -0
- package/src/codex-protocol/v2/GuardianUserAuthorization.ts +8 -0
- package/src/codex-protocol/v2/GuardianWarningNotification.ts +13 -0
- package/src/codex-protocol/v2/HookCompletedNotification.ts +6 -0
- package/src/codex-protocol/v2/HookErrorInfo.ts +5 -0
- package/src/codex-protocol/v2/HookEventName.ts +5 -0
- package/src/codex-protocol/v2/HookExecutionMode.ts +5 -0
- package/src/codex-protocol/v2/HookHandlerType.ts +5 -0
- package/src/codex-protocol/v2/HookMetadata.ts +10 -0
- package/src/codex-protocol/v2/HookMigration.ts +5 -0
- package/src/codex-protocol/v2/HookOutputEntry.ts +6 -0
- package/src/codex-protocol/v2/HookOutputEntryKind.ts +5 -0
- package/src/codex-protocol/v2/HookPromptFragment.ts +5 -0
- package/src/codex-protocol/v2/HookRunStatus.ts +5 -0
- package/src/codex-protocol/v2/HookRunSummary.ts +13 -0
- package/src/codex-protocol/v2/HookScope.ts +5 -0
- package/src/codex-protocol/v2/HookSource.ts +5 -0
- package/src/codex-protocol/v2/HookStartedNotification.ts +6 -0
- package/src/codex-protocol/v2/HookTrustStatus.ts +5 -0
- package/src/codex-protocol/v2/HooksListEntry.ts +7 -0
- package/src/codex-protocol/v2/HooksListParams.ts +9 -0
- package/src/codex-protocol/v2/HooksListResponse.ts +6 -0
- package/src/codex-protocol/v2/ItemCompletedNotification.ts +10 -0
- package/src/codex-protocol/v2/ItemGuardianApprovalReviewCompletedNotification.ts +38 -0
- package/src/codex-protocol/v2/ItemGuardianApprovalReviewStartedNotification.ts +33 -0
- package/src/codex-protocol/v2/ItemStartedNotification.ts +10 -0
- package/src/codex-protocol/v2/ListMcpServerStatusParams.ts +19 -0
- package/src/codex-protocol/v2/ListMcpServerStatusResponse.ts +11 -0
- package/src/codex-protocol/v2/LoginAccountParams.ts +21 -0
- package/src/codex-protocol/v2/LoginAccountResponse.ts +17 -0
- package/src/codex-protocol/v2/LogoutAccountResponse.ts +5 -0
- package/src/codex-protocol/v2/ManagedHooksRequirements.ts +6 -0
- package/src/codex-protocol/v2/MarketplaceAddParams.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceAddResponse.ts +6 -0
- package/src/codex-protocol/v2/MarketplaceInterface.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceLoadErrorInfo.ts +6 -0
- package/src/codex-protocol/v2/MarketplaceRemoveParams.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceRemoveResponse.ts +6 -0
- package/src/codex-protocol/v2/MarketplaceUpgradeErrorInfo.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceUpgradeParams.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceUpgradeResponse.ts +7 -0
- package/src/codex-protocol/v2/McpAuthStatus.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationArrayType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationBooleanSchema.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationBooleanType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationConstOption.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationEnumSchema.ts +8 -0
- package/src/codex-protocol/v2/McpElicitationLegacyTitledEnumSchema.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationMultiSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationNumberSchema.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationNumberType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationObjectType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationPrimitiveSchema.ts +9 -0
- package/src/codex-protocol/v2/McpElicitationSchema.ts +13 -0
- package/src/codex-protocol/v2/McpElicitationSingleSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationStringFormat.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationStringSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationStringType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationTitledEnumItems.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationTitledMultiSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationTitledSingleSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationUntitledEnumItems.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationUntitledMultiSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationUntitledSingleSelectEnumSchema.ts +6 -0
- package/src/codex-protocol/v2/McpResourceReadParams.ts +5 -0
- package/src/codex-protocol/v2/McpResourceReadResponse.ts +6 -0
- package/src/codex-protocol/v2/McpServerElicitationAction.ts +5 -0
- package/src/codex-protocol/v2/McpServerElicitationRequestParams.ts +16 -0
- package/src/codex-protocol/v2/McpServerElicitationRequestResponse.ts +17 -0
- package/src/codex-protocol/v2/McpServerMigration.ts +5 -0
- package/src/codex-protocol/v2/McpServerOauthLoginCompletedNotification.ts +5 -0
- package/src/codex-protocol/v2/McpServerOauthLoginParams.ts +5 -0
- package/src/codex-protocol/v2/McpServerOauthLoginResponse.ts +5 -0
- package/src/codex-protocol/v2/McpServerRefreshResponse.ts +5 -0
- package/src/codex-protocol/v2/McpServerStartupState.ts +5 -0
- package/src/codex-protocol/v2/McpServerStatus.ts +9 -0
- package/src/codex-protocol/v2/McpServerStatusDetail.ts +5 -0
- package/src/codex-protocol/v2/McpServerStatusUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/McpServerToolCallParams.ts +6 -0
- package/src/codex-protocol/v2/McpServerToolCallResponse.ts +6 -0
- package/src/codex-protocol/v2/McpToolCallError.ts +5 -0
- package/src/codex-protocol/v2/McpToolCallProgressNotification.ts +5 -0
- package/src/codex-protocol/v2/McpToolCallResult.ts +6 -0
- package/src/codex-protocol/v2/McpToolCallStatus.ts +5 -0
- package/src/codex-protocol/v2/MemoryCitation.ts +6 -0
- package/src/codex-protocol/v2/MemoryCitationEntry.ts +5 -0
- package/src/codex-protocol/v2/MemoryResetResponse.ts +5 -0
- package/src/codex-protocol/v2/MergeStrategy.ts +5 -0
- package/src/codex-protocol/v2/MigrationDetails.ts +11 -0
- package/src/codex-protocol/v2/MockExperimentalMethodParams.ts +9 -0
- package/src/codex-protocol/v2/MockExperimentalMethodResponse.ts +9 -0
- package/src/codex-protocol/v2/Model.ts +19 -0
- package/src/codex-protocol/v2/ModelAvailabilityNux.ts +5 -0
- package/src/codex-protocol/v2/ModelListParams.ts +17 -0
- package/src/codex-protocol/v2/ModelListResponse.ts +11 -0
- package/src/codex-protocol/v2/ModelProviderCapabilitiesReadParams.ts +5 -0
- package/src/codex-protocol/v2/ModelProviderCapabilitiesReadResponse.ts +5 -0
- package/src/codex-protocol/v2/ModelRerouteReason.ts +5 -0
- package/src/codex-protocol/v2/ModelReroutedNotification.ts +6 -0
- package/src/codex-protocol/v2/ModelServiceTier.ts +5 -0
- package/src/codex-protocol/v2/ModelUpgradeInfo.ts +5 -0
- package/src/codex-protocol/v2/ModelVerification.ts +5 -0
- package/src/codex-protocol/v2/ModelVerificationNotification.ts +6 -0
- package/src/codex-protocol/v2/NetworkAccess.ts +5 -0
- package/src/codex-protocol/v2/NetworkApprovalContext.ts +6 -0
- package/src/codex-protocol/v2/NetworkApprovalProtocol.ts +5 -0
- package/src/codex-protocol/v2/NetworkDomainPermission.ts +5 -0
- package/src/codex-protocol/v2/NetworkPolicyAmendment.ts +6 -0
- package/src/codex-protocol/v2/NetworkPolicyRuleAction.ts +5 -0
- package/src/codex-protocol/v2/NetworkRequirements.ts +32 -0
- package/src/codex-protocol/v2/NetworkUnixSocketPermission.ts +5 -0
- package/src/codex-protocol/v2/NonSteerableTurnKind.ts +5 -0
- package/src/codex-protocol/v2/OverriddenMetadata.ts +7 -0
- package/src/codex-protocol/v2/PatchApplyStatus.ts +5 -0
- package/src/codex-protocol/v2/PatchChangeKind.ts +5 -0
- package/src/codex-protocol/v2/PermissionGrantScope.ts +5 -0
- package/src/codex-protocol/v2/PermissionProfileListParams.ts +17 -0
- package/src/codex-protocol/v2/PermissionProfileListResponse.ts +11 -0
- package/src/codex-protocol/v2/PermissionProfileSummary.ts +13 -0
- package/src/codex-protocol/v2/PermissionsRequestApprovalParams.ts +11 -0
- package/src/codex-protocol/v2/PermissionsRequestApprovalResponse.ts +11 -0
- package/src/codex-protocol/v2/PlanDeltaNotification.ts +9 -0
- package/src/codex-protocol/v2/PluginAuthPolicy.ts +5 -0
- package/src/codex-protocol/v2/PluginAvailability.ts +5 -0
- package/src/codex-protocol/v2/PluginDetail.ts +10 -0
- package/src/codex-protocol/v2/PluginHookSummary.ts +6 -0
- package/src/codex-protocol/v2/PluginInstallParams.ts +6 -0
- package/src/codex-protocol/v2/PluginInstallPolicy.ts +5 -0
- package/src/codex-protocol/v2/PluginInstallResponse.ts +7 -0
- package/src/codex-protocol/v2/PluginInstalledParams.ts +15 -0
- package/src/codex-protocol/v2/PluginInstalledResponse.ts +7 -0
- package/src/codex-protocol/v2/PluginInterface.ts +35 -0
- package/src/codex-protocol/v2/PluginListMarketplaceKind.ts +5 -0
- package/src/codex-protocol/v2/PluginListParams.ts +17 -0
- package/src/codex-protocol/v2/PluginListResponse.ts +7 -0
- package/src/codex-protocol/v2/PluginMarketplaceEntry.ts +13 -0
- package/src/codex-protocol/v2/PluginReadParams.ts +6 -0
- package/src/codex-protocol/v2/PluginReadResponse.ts +6 -0
- package/src/codex-protocol/v2/PluginShareCheckoutParams.ts +5 -0
- package/src/codex-protocol/v2/PluginShareCheckoutResponse.ts +6 -0
- package/src/codex-protocol/v2/PluginShareContext.ts +11 -0
- package/src/codex-protocol/v2/PluginShareDeleteParams.ts +5 -0
- package/src/codex-protocol/v2/PluginShareDeleteResponse.ts +5 -0
- package/src/codex-protocol/v2/PluginShareDiscoverability.ts +5 -0
- package/src/codex-protocol/v2/PluginShareListItem.ts +7 -0
- package/src/codex-protocol/v2/PluginShareListParams.ts +5 -0
- package/src/codex-protocol/v2/PluginShareListResponse.ts +6 -0
- package/src/codex-protocol/v2/PluginSharePrincipal.ts +7 -0
- package/src/codex-protocol/v2/PluginSharePrincipalRole.ts +5 -0
- package/src/codex-protocol/v2/PluginSharePrincipalType.ts +5 -0
- package/src/codex-protocol/v2/PluginShareSaveParams.ts +8 -0
- package/src/codex-protocol/v2/PluginShareSaveResponse.ts +5 -0
- package/src/codex-protocol/v2/PluginShareTarget.ts +7 -0
- package/src/codex-protocol/v2/PluginShareTargetRole.ts +5 -0
- package/src/codex-protocol/v2/PluginShareUpdateDiscoverability.ts +5 -0
- package/src/codex-protocol/v2/PluginShareUpdateTargetsParams.ts +7 -0
- package/src/codex-protocol/v2/PluginShareUpdateTargetsResponse.ts +7 -0
- package/src/codex-protocol/v2/PluginSkillReadParams.ts +5 -0
- package/src/codex-protocol/v2/PluginSkillReadResponse.ts +5 -0
- package/src/codex-protocol/v2/PluginSource.ts +6 -0
- package/src/codex-protocol/v2/PluginSummary.ts +27 -0
- package/src/codex-protocol/v2/PluginUninstallParams.ts +5 -0
- package/src/codex-protocol/v2/PluginUninstallResponse.ts +5 -0
- package/src/codex-protocol/v2/PluginsMigration.ts +5 -0
- package/src/codex-protocol/v2/ProcessExitedNotification.ts +42 -0
- package/src/codex-protocol/v2/ProcessKillParams.ts +12 -0
- package/src/codex-protocol/v2/ProcessKillResponse.ts +8 -0
- package/src/codex-protocol/v2/ProcessOutputDeltaNotification.ts +26 -0
- package/src/codex-protocol/v2/ProcessOutputStream.ts +8 -0
- package/src/codex-protocol/v2/ProcessResizePtyParams.ts +17 -0
- package/src/codex-protocol/v2/ProcessResizePtyResponse.ts +8 -0
- package/src/codex-protocol/v2/ProcessSpawnParams.ts +73 -0
- package/src/codex-protocol/v2/ProcessSpawnResponse.ts +8 -0
- package/src/codex-protocol/v2/ProcessTerminalSize.ts +16 -0
- package/src/codex-protocol/v2/ProcessWriteStdinParams.ts +21 -0
- package/src/codex-protocol/v2/ProcessWriteStdinResponse.ts +8 -0
- package/src/codex-protocol/v2/ProfileV2.ts +19 -0
- package/src/codex-protocol/v2/RateLimitReachedType.ts +5 -0
- package/src/codex-protocol/v2/RateLimitSnapshot.ts +9 -0
- package/src/codex-protocol/v2/RateLimitWindow.ts +5 -0
- package/src/codex-protocol/v2/RawResponseItemCompletedNotification.ts +6 -0
- package/src/codex-protocol/v2/ReasoningEffortOption.ts +6 -0
- package/src/codex-protocol/v2/ReasoningSummaryPartAddedNotification.ts +5 -0
- package/src/codex-protocol/v2/ReasoningSummaryTextDeltaNotification.ts +5 -0
- package/src/codex-protocol/v2/ReasoningTextDeltaNotification.ts +5 -0
- package/src/codex-protocol/v2/RemoteControlConnectionStatus.ts +5 -0
- package/src/codex-protocol/v2/RemoteControlDisableResponse.ts +6 -0
- package/src/codex-protocol/v2/RemoteControlEnableResponse.ts +6 -0
- package/src/codex-protocol/v2/RemoteControlStatusChangedNotification.ts +9 -0
- package/src/codex-protocol/v2/RemoteControlStatusReadResponse.ts +6 -0
- package/src/codex-protocol/v2/RequestPermissionProfile.ts +7 -0
- package/src/codex-protocol/v2/ResidencyRequirement.ts +5 -0
- package/src/codex-protocol/v2/ReviewDelivery.ts +5 -0
- package/src/codex-protocol/v2/ReviewStartParams.ts +12 -0
- package/src/codex-protocol/v2/ReviewStartResponse.ts +13 -0
- package/src/codex-protocol/v2/ReviewTarget.ts +9 -0
- package/src/codex-protocol/v2/SandboxMode.ts +5 -0
- package/src/codex-protocol/v2/SandboxPolicy.ts +7 -0
- package/src/codex-protocol/v2/SandboxWorkspaceWrite.ts +5 -0
- package/src/codex-protocol/v2/SendAddCreditsNudgeEmailParams.ts +6 -0
- package/src/codex-protocol/v2/SendAddCreditsNudgeEmailResponse.ts +6 -0
- package/src/codex-protocol/v2/ServerRequestResolvedNotification.ts +6 -0
- package/src/codex-protocol/v2/SessionMigration.ts +5 -0
- package/src/codex-protocol/v2/SessionSource.ts +6 -0
- package/src/codex-protocol/v2/SkillDependencies.ts +6 -0
- package/src/codex-protocol/v2/SkillErrorInfo.ts +5 -0
- package/src/codex-protocol/v2/SkillInterface.ts +6 -0
- package/src/codex-protocol/v2/SkillMetadata.ts +13 -0
- package/src/codex-protocol/v2/SkillScope.ts +5 -0
- package/src/codex-protocol/v2/SkillSummary.ts +7 -0
- package/src/codex-protocol/v2/SkillToolDependency.ts +5 -0
- package/src/codex-protocol/v2/SkillsChangedNotification.ts +11 -0
- package/src/codex-protocol/v2/SkillsConfigWriteParams.ts +14 -0
- package/src/codex-protocol/v2/SkillsConfigWriteResponse.ts +5 -0
- package/src/codex-protocol/v2/SkillsListEntry.ts +7 -0
- package/src/codex-protocol/v2/SkillsListParams.ts +13 -0
- package/src/codex-protocol/v2/SkillsListResponse.ts +6 -0
- package/src/codex-protocol/v2/SortDirection.ts +5 -0
- package/src/codex-protocol/v2/SubagentMigration.ts +5 -0
- package/src/codex-protocol/v2/TerminalInteractionNotification.ts +5 -0
- package/src/codex-protocol/v2/TextElement.ts +14 -0
- package/src/codex-protocol/v2/TextPosition.ts +13 -0
- package/src/codex-protocol/v2/TextRange.ts +6 -0
- package/src/codex-protocol/v2/Thread.ts +86 -0
- package/src/codex-protocol/v2/ThreadActiveFlag.ts +5 -0
- package/src/codex-protocol/v2/ThreadApproveGuardianDeniedActionParams.ts +10 -0
- package/src/codex-protocol/v2/ThreadApproveGuardianDeniedActionResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadArchiveParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadArchiveResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadArchivedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadBackgroundTerminalsCleanParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadBackgroundTerminalsCleanResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadClosedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadCompactStartParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadCompactStartResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadDecrementElicitationParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadDecrementElicitationResponse.ts +16 -0
- package/src/codex-protocol/v2/ThreadForkParams.ts +60 -0
- package/src/codex-protocol/v2/ThreadForkResponse.ts +35 -0
- package/src/codex-protocol/v2/ThreadGoal.ts +6 -0
- package/src/codex-protocol/v2/ThreadGoalClearParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalClearResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalClearedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalGetParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalGetResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadGoalSetParams.ts +6 -0
- package/src/codex-protocol/v2/ThreadGoalSetResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadGoalStatus.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadIncrementElicitationParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadIncrementElicitationResponse.ts +16 -0
- package/src/codex-protocol/v2/ThreadInjectItemsParams.ts +10 -0
- package/src/codex-protocol/v2/ThreadInjectItemsResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadItem.ts +101 -0
- package/src/codex-protocol/v2/ThreadListParams.ts +54 -0
- package/src/codex-protocol/v2/ThreadListResponse.ts +18 -0
- package/src/codex-protocol/v2/ThreadLoadedListParams.ts +13 -0
- package/src/codex-protocol/v2/ThreadLoadedListResponse.ts +14 -0
- package/src/codex-protocol/v2/ThreadMemoryModeSetParams.ts +6 -0
- package/src/codex-protocol/v2/ThreadMemoryModeSetResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadMetadataGitInfoUpdateParams.ts +20 -0
- package/src/codex-protocol/v2/ThreadMetadataUpdateParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadMetadataUpdateResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadNameUpdatedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadReadParams.ts +9 -0
- package/src/codex-protocol/v2/ThreadReadResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadRealtimeAppendAudioParams.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeAppendAudioResponse.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeAppendTextParams.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeAppendTextResponse.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeAudioChunk.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeClosedNotification.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeErrorNotification.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeItemAddedNotification.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeListVoicesParams.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeListVoicesResponse.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeOutputAudioDeltaNotification.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeSdpNotification.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeStartParams.ts +16 -0
- package/src/codex-protocol/v2/ThreadRealtimeStartResponse.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeStartTransport.ts +13 -0
- package/src/codex-protocol/v2/ThreadRealtimeStartedNotification.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeStopParams.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeStopResponse.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeTranscriptDeltaNotification.ts +13 -0
- package/src/codex-protocol/v2/ThreadRealtimeTranscriptDoneNotification.ts +13 -0
- package/src/codex-protocol/v2/ThreadResumeParams.ts +71 -0
- package/src/codex-protocol/v2/ThreadResumeResponse.ts +35 -0
- package/src/codex-protocol/v2/ThreadRollbackParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadRollbackResponse.ts +14 -0
- package/src/codex-protocol/v2/ThreadSetNameParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadSetNameResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadSettings.ts +14 -0
- package/src/codex-protocol/v2/ThreadSettingsUpdateParams.ts +61 -0
- package/src/codex-protocol/v2/ThreadSettingsUpdateResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadSettingsUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadShellCommandParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadShellCommandResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadSortKey.ts +5 -0
- package/src/codex-protocol/v2/ThreadSource.ts +5 -0
- package/src/codex-protocol/v2/ThreadSourceKind.ts +5 -0
- package/src/codex-protocol/v2/ThreadStartParams.ts +57 -0
- package/src/codex-protocol/v2/ThreadStartResponse.ts +35 -0
- package/src/codex-protocol/v2/ThreadStartSource.ts +5 -0
- package/src/codex-protocol/v2/ThreadStartedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadStatus.ts +6 -0
- package/src/codex-protocol/v2/ThreadStatusChangedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadTokenUsage.ts +6 -0
- package/src/codex-protocol/v2/ThreadTokenUsageUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadTurnsItemsListParams.ts +18 -0
- package/src/codex-protocol/v2/ThreadTurnsItemsListResponse.ts +16 -0
- package/src/codex-protocol/v2/ThreadTurnsListParams.ts +23 -0
- package/src/codex-protocol/v2/ThreadTurnsListResponse.ts +18 -0
- package/src/codex-protocol/v2/ThreadUnarchiveParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadUnarchiveResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadUnarchivedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadUnsubscribeParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadUnsubscribeResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadUnsubscribeStatus.ts +5 -0
- package/src/codex-protocol/v2/TokenUsageBreakdown.ts +5 -0
- package/src/codex-protocol/v2/ToolRequestUserInputAnswer.ts +8 -0
- package/src/codex-protocol/v2/ToolRequestUserInputOption.ts +8 -0
- package/src/codex-protocol/v2/ToolRequestUserInputParams.ts +9 -0
- package/src/codex-protocol/v2/ToolRequestUserInputQuestion.ts +9 -0
- package/src/codex-protocol/v2/ToolRequestUserInputResponse.ts +9 -0
- package/src/codex-protocol/v2/ToolsV2.ts +6 -0
- package/src/codex-protocol/v2/Turn.ts +33 -0
- package/src/codex-protocol/v2/TurnCompletedNotification.ts +6 -0
- package/src/codex-protocol/v2/TurnDiffUpdatedNotification.ts +9 -0
- package/src/codex-protocol/v2/TurnEnvironmentParams.ts +6 -0
- package/src/codex-protocol/v2/TurnError.ts +6 -0
- package/src/codex-protocol/v2/TurnInterruptParams.ts +5 -0
- package/src/codex-protocol/v2/TurnInterruptResponse.ts +5 -0
- package/src/codex-protocol/v2/TurnItemsView.ts +5 -0
- package/src/codex-protocol/v2/TurnPlanStep.ts +6 -0
- package/src/codex-protocol/v2/TurnPlanStepStatus.ts +5 -0
- package/src/codex-protocol/v2/TurnPlanUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/TurnStartParams.ts +88 -0
- package/src/codex-protocol/v2/TurnStartResponse.ts +6 -0
- package/src/codex-protocol/v2/TurnStartedNotification.ts +6 -0
- package/src/codex-protocol/v2/TurnStatus.ts +5 -0
- package/src/codex-protocol/v2/TurnSteerParams.ts +15 -0
- package/src/codex-protocol/v2/TurnSteerResponse.ts +5 -0
- package/src/codex-protocol/v2/UserInput.ts +11 -0
- package/src/codex-protocol/v2/WarningNotification.ts +13 -0
- package/src/codex-protocol/v2/WebSearchAction.ts +5 -0
- package/src/codex-protocol/v2/WindowsSandboxReadiness.ts +5 -0
- package/src/codex-protocol/v2/WindowsSandboxReadinessResponse.ts +6 -0
- package/src/codex-protocol/v2/WindowsSandboxSetupCompletedNotification.ts +6 -0
- package/src/codex-protocol/v2/WindowsSandboxSetupMode.ts +5 -0
- package/src/codex-protocol/v2/WindowsSandboxSetupStartParams.ts +7 -0
- package/src/codex-protocol/v2/WindowsSandboxSetupStartResponse.ts +5 -0
- package/src/codex-protocol/v2/WindowsWorldWritableWarningNotification.ts +5 -0
- package/src/codex-protocol/v2/WriteStatus.ts +5 -0
- package/src/codex-protocol/v2/index.ts +503 -0
- package/src/column.ts +44 -0
- package/src/engines/claude/claude-engine.ts +769 -0
- package/src/engines/claude/clock.ts +48 -0
- package/src/engines/claude/compact.ts +107 -0
- package/src/engines/claude/ctx.ts +239 -0
- package/src/engines/claude/doctor.ts +202 -0
- package/src/engines/claude/env.ts +16 -0
- package/src/engines/claude/history.ts +504 -0
- package/src/engines/claude/identifiers.ts +25 -0
- package/src/engines/claude/identity-migration.ts +16 -0
- package/src/engines/claude/idle.ts +91 -0
- package/src/engines/claude/keys.ts +163 -0
- package/src/engines/claude/last.ts +52 -0
- package/src/engines/claude/mem.ts +124 -0
- package/src/engines/claude/persistence.ts +41 -0
- package/src/engines/claude/post-turn.ts +45 -0
- package/src/engines/claude/reload.ts +53 -0
- package/src/engines/claude/repo-fs.ts +63 -0
- package/src/engines/claude/resume.ts +145 -0
- package/src/engines/claude/send.ts +86 -0
- package/src/engines/claude/spawn.ts +435 -0
- package/src/engines/claude/state.ts +124 -0
- package/src/engines/claude/tmux.ts +99 -0
- package/src/engines/claude/wait-signals.ts +128 -0
- package/src/engines/claude/wait.ts +59 -0
- package/src/engines/codex/ask.ts +69 -0
- package/src/engines/codex/engine.ts +1261 -0
- package/src/engines/codex/events.ts +106 -0
- package/src/engines/codex/history.ts +385 -0
- package/src/engines/codex/identity-migration.ts +14 -0
- package/src/engines/codex/ipc-bridge-process.ts +14 -0
- package/src/engines/codex/ipc-bridge.ts +844 -0
- package/src/engines/codex/persistence.ts +236 -0
- package/src/engines/codex/rollout.ts +384 -0
- package/src/engines/codex/rpc.ts +311 -0
- package/src/engines/codex/supervisor.ts +648 -0
- package/src/engines/codex/ui-ipc.ts +374 -0
- package/src/engines/codex/verb-common.ts +34 -0
- package/src/engines/codex/verb-lifecycle.ts +94 -0
- package/src/engines/codex/verb-state.ts +19 -0
- package/src/engines/codex/verb-turns.ts +49 -0
- package/src/engines/codex/verbs.ts +15 -0
- package/src/engines/engine.ts +91 -0
- package/src/engines/git-worktree.ts +137 -0
- package/src/engines/production.ts +19 -0
- package/src/engines/registry.ts +70 -0
- package/src/engines/teammate-record.ts +113 -0
- package/src/engines/types.ts +334 -0
- package/src/env.ts +29 -0
- package/src/grep.ts +39 -0
- package/src/help.ts +433 -0
- package/src/identity/name.ts +58 -0
- package/src/identity/router.ts +80 -0
- package/src/identity/uuid-prefix.ts +40 -0
- package/src/main.ts +39 -0
- package/src/persistence/atomic-file.ts +74 -0
- package/src/persistence/identity-store.ts +294 -0
- package/src/persistence/identity-writer.ts +28 -0
- package/src/persistence/paths.ts +138 -0
- package/src/plugin-root.ts +26 -0
- package/src/proc.ts +66 -0
- package/src/shared/verb-args.ts +331 -0
- package/src/tm.ts +54 -0
- package/src/tmux.ts +57 -0
- package/src/verbs/archive.ts +211 -0
- package/src/verbs/ask.ts +29 -0
- package/src/verbs/compact.ts +25 -0
- package/src/verbs/context.ts +68 -0
- package/src/verbs/ctx.ts +21 -0
- package/src/verbs/format.ts +213 -0
- package/src/verbs/history.ts +190 -0
- package/src/verbs/kill.ts +61 -0
- package/src/verbs/last.ts +34 -0
- package/src/verbs/ls.ts +27 -0
- package/src/verbs/mem.ts +40 -0
- package/src/verbs/poll.ts +61 -0
- package/src/verbs/reload.ts +17 -0
- package/src/verbs/resolve.ts +14 -0
- package/src/verbs/resume.ts +170 -0
- package/src/verbs/send.ts +36 -0
- package/src/verbs/spawn.ts +81 -0
- package/src/verbs/states.ts +74 -0
- package/src/verbs/status.ts +26 -0
- package/src/verbs/wait.ts +40 -0
- package/src/verbs.ts +56 -0
- package/src/ws-types.d.ts +9 -0
- package/third_party/ws/LICENSE +20 -0
- package/third_party/ws/README.md +548 -0
- package/third_party/ws/UPSTREAM.md +55 -0
- package/third_party/ws/browser.js +8 -0
- package/third_party/ws/index.js +22 -0
- package/third_party/ws/lib/buffer-util.js +131 -0
- package/third_party/ws/lib/constants.js +19 -0
- package/third_party/ws/lib/event-target.js +292 -0
- package/third_party/ws/lib/extension.js +203 -0
- package/third_party/ws/lib/limiter.js +55 -0
- package/third_party/ws/lib/permessage-deflate.js +528 -0
- package/third_party/ws/lib/receiver.js +760 -0
- package/third_party/ws/lib/sender.js +607 -0
- package/third_party/ws/lib/stream.js +161 -0
- package/third_party/ws/lib/subprotocol.js +62 -0
- package/third_party/ws/lib/validation.js +152 -0
- package/third_party/ws/lib/websocket-server.js +562 -0
- package/third_party/ws/lib/websocket.js +1407 -0
- package/third_party/ws/package.json +13 -0
- package/third_party/ws/wrapper.mjs +21 -0
|
@@ -0,0 +1,844 @@
|
|
|
1
|
+
import { setTimeout as sleep } from 'node:timers/promises'
|
|
2
|
+
|
|
3
|
+
import type {
|
|
4
|
+
ClientRequest,
|
|
5
|
+
InitializeResponse,
|
|
6
|
+
ServerNotification,
|
|
7
|
+
ServerRequest,
|
|
8
|
+
} from '../../codex-protocol/index.js'
|
|
9
|
+
import type {
|
|
10
|
+
Thread,
|
|
11
|
+
ThreadCompactStartResponse,
|
|
12
|
+
ThreadReadResponse,
|
|
13
|
+
ThreadResumeResponse,
|
|
14
|
+
ThreadSettingsUpdateResponse,
|
|
15
|
+
ThreadStatus,
|
|
16
|
+
Turn,
|
|
17
|
+
TurnInterruptParams,
|
|
18
|
+
TurnInterruptResponse,
|
|
19
|
+
TurnStartParams,
|
|
20
|
+
TurnStartResponse,
|
|
21
|
+
TurnSteerParams,
|
|
22
|
+
TurnSteerResponse,
|
|
23
|
+
} from '../../codex-protocol/v2/index.js'
|
|
24
|
+
import { daemonAlive, readDaemonState } from './supervisor.js'
|
|
25
|
+
import { CodexWsClient } from './rpc.js'
|
|
26
|
+
import {
|
|
27
|
+
CodexUiIpcClient,
|
|
28
|
+
codexUiIpcSocketExists,
|
|
29
|
+
codexUiIpcSocketPath,
|
|
30
|
+
type IpcBroadcastContext,
|
|
31
|
+
type IpcRequestContext,
|
|
32
|
+
} from './ui-ipc.js'
|
|
33
|
+
|
|
34
|
+
// Codex UI's local AppServerManager only consumes stream broadcasts whose hostId matches
|
|
35
|
+
// its own hostId; follower routing is derived from the IPC broadcast sourceClientId.
|
|
36
|
+
const CODEX_UI_HOST_ID = 'local'
|
|
37
|
+
// Matches Codex extension 26.519.x's IPC schema version for thread-stream-state-changed.
|
|
38
|
+
const CODEX_UI_STREAM_VERSION = 6
|
|
39
|
+
const CODEX_IPC_RETRY_MS = 1000
|
|
40
|
+
const CODEX_IPC_POLL_MS = 1000
|
|
41
|
+
const CODEX_IPC_SNAPSHOT_DEBOUNCE_MS = 100
|
|
42
|
+
|
|
43
|
+
const CODEX_CLIENT_INFO = {
|
|
44
|
+
name: 'claudemux',
|
|
45
|
+
title: null,
|
|
46
|
+
version: '1.0.0',
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const FOLLOWER_METHODS = new Set([
|
|
50
|
+
'thread-follower-start-turn',
|
|
51
|
+
'thread-follower-compact-thread',
|
|
52
|
+
'thread-follower-steer-turn',
|
|
53
|
+
'thread-follower-interrupt-turn',
|
|
54
|
+
'thread-follower-set-model-and-reasoning',
|
|
55
|
+
'thread-follower-set-collaboration-mode',
|
|
56
|
+
'thread-follower-command-approval-decision',
|
|
57
|
+
'thread-follower-file-approval-decision',
|
|
58
|
+
'thread-follower-permissions-request-approval-response',
|
|
59
|
+
'thread-follower-submit-user-input',
|
|
60
|
+
'thread-follower-submit-mcp-server-elicitation-response',
|
|
61
|
+
'thread-follower-set-queued-follow-ups-state',
|
|
62
|
+
])
|
|
63
|
+
|
|
64
|
+
const TURN_START_OPTIONAL_KEYS = [
|
|
65
|
+
'responsesapiClientMetadata',
|
|
66
|
+
'environments',
|
|
67
|
+
'cwd',
|
|
68
|
+
'runtimeWorkspaceRoots',
|
|
69
|
+
'approvalPolicy',
|
|
70
|
+
'approvalsReviewer',
|
|
71
|
+
'sandboxPolicy',
|
|
72
|
+
'permissions',
|
|
73
|
+
'model',
|
|
74
|
+
'serviceTier',
|
|
75
|
+
'effort',
|
|
76
|
+
'summary',
|
|
77
|
+
'personality',
|
|
78
|
+
'outputSchema',
|
|
79
|
+
'collaborationMode',
|
|
80
|
+
] as const
|
|
81
|
+
|
|
82
|
+
interface PendingServerRequest {
|
|
83
|
+
readonly id: string
|
|
84
|
+
readonly method: ServerRequest['method']
|
|
85
|
+
readonly params: ServerRequest['params']
|
|
86
|
+
readonly resolve: (value: unknown) => void
|
|
87
|
+
readonly reject: (error: Error) => void
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
interface ConversationTurn {
|
|
91
|
+
readonly params: Record<string, unknown>
|
|
92
|
+
readonly turnId: string
|
|
93
|
+
readonly turnStartedAtMs: number | null
|
|
94
|
+
readonly durationMs: number | null
|
|
95
|
+
readonly finalAssistantStartedAtMs: number | null
|
|
96
|
+
readonly status: Turn['status']
|
|
97
|
+
readonly error: Turn['error']
|
|
98
|
+
readonly diff: null
|
|
99
|
+
readonly items: readonly unknown[]
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
interface ConversationState {
|
|
103
|
+
readonly id: string
|
|
104
|
+
readonly forkedFromId: string | null
|
|
105
|
+
readonly hostId: string
|
|
106
|
+
readonly turns: readonly ConversationTurn[]
|
|
107
|
+
readonly requests: readonly Record<string, unknown>[]
|
|
108
|
+
readonly createdAt: number
|
|
109
|
+
readonly updatedAt: number
|
|
110
|
+
readonly title: string | null
|
|
111
|
+
readonly modelProvider: string
|
|
112
|
+
readonly latestModel: string
|
|
113
|
+
readonly latestReasoningEffort: ThreadResumeResponse['reasoningEffort']
|
|
114
|
+
readonly previousTurnModel: null
|
|
115
|
+
readonly latestCollaborationMode: {
|
|
116
|
+
readonly mode: 'default'
|
|
117
|
+
readonly settings: {
|
|
118
|
+
readonly model: string
|
|
119
|
+
readonly reasoning_effort: ThreadResumeResponse['reasoningEffort']
|
|
120
|
+
readonly developer_instructions: null
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
readonly hasUnreadTurn: false
|
|
124
|
+
readonly rolloutPath: string
|
|
125
|
+
readonly cwd: string
|
|
126
|
+
readonly gitInfo: Thread['gitInfo']
|
|
127
|
+
readonly resumeState: 'resumed'
|
|
128
|
+
readonly latestTokenUsageInfo: null
|
|
129
|
+
readonly threadDetailLevel: null
|
|
130
|
+
readonly threadRuntimeStatus: ThreadStatus
|
|
131
|
+
readonly turnsPagination: {
|
|
132
|
+
readonly olderCursor: null
|
|
133
|
+
readonly isLoadingOlder: false
|
|
134
|
+
readonly hasLoadedOldest: true
|
|
135
|
+
}
|
|
136
|
+
readonly workspaceKind: 'project'
|
|
137
|
+
readonly source: Thread['source']
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
type ClientRequestMethod = ClientRequest['method']
|
|
141
|
+
type FollowerOkResponse = { readonly ok: true }
|
|
142
|
+
type FollowerResultResponse<T> = { readonly result: T }
|
|
143
|
+
|
|
144
|
+
export function isCodexFollowerIpcMethod(method: string): boolean {
|
|
145
|
+
return FOLLOWER_METHODS.has(method)
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export class CodexIpcBridge {
|
|
149
|
+
private ipcClient: CodexUiIpcClient | null = null
|
|
150
|
+
private appClient: CodexWsClient | null = null
|
|
151
|
+
private appThread: ThreadResumeResponse | null = null
|
|
152
|
+
private activeThreadId: string | null = null
|
|
153
|
+
private snapshotTimer: ReturnType<typeof setTimeout> | null = null
|
|
154
|
+
private readonly pendingServerRequests = new Map<string, PendingServerRequest>()
|
|
155
|
+
|
|
156
|
+
constructor(private readonly opts: {
|
|
157
|
+
readonly name: string
|
|
158
|
+
readonly env: NodeJS.ProcessEnv
|
|
159
|
+
}) {}
|
|
160
|
+
|
|
161
|
+
async run(): Promise<void> {
|
|
162
|
+
while (daemonAlive(this.opts.name)) {
|
|
163
|
+
try {
|
|
164
|
+
await this.runOneIpcConnection()
|
|
165
|
+
} catch (e) {
|
|
166
|
+
this.log(`IPC bridge cycle failed: ${errorMessage(e)}`)
|
|
167
|
+
} finally {
|
|
168
|
+
this.ipcClient?.close()
|
|
169
|
+
this.ipcClient = null
|
|
170
|
+
}
|
|
171
|
+
await sleep(CODEX_IPC_RETRY_MS)
|
|
172
|
+
}
|
|
173
|
+
this.closeAppClient()
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
private async runOneIpcConnection(): Promise<void> {
|
|
177
|
+
if (!codexUiIpcSocketExists(this.opts.env)) {
|
|
178
|
+
await sleep(CODEX_IPC_RETRY_MS)
|
|
179
|
+
return
|
|
180
|
+
}
|
|
181
|
+
const socketPath = codexUiIpcSocketPath(this.opts.env)
|
|
182
|
+
const client = new CodexUiIpcClient({
|
|
183
|
+
socketPath,
|
|
184
|
+
clientType: 'claudemux-codex-teammate',
|
|
185
|
+
canHandle: async (ctx) => this.canHandleIpcRequest(ctx.method, ctx.params),
|
|
186
|
+
handleRequest: async (ctx) => this.handleIpcRequest(ctx),
|
|
187
|
+
})
|
|
188
|
+
client.onBroadcast((ctx) => this.handleIpcBroadcast(ctx))
|
|
189
|
+
await client.connect()
|
|
190
|
+
this.ipcClient = client
|
|
191
|
+
this.log(`connected to Codex UI IPC as ${client.id ?? '<unknown>'}`)
|
|
192
|
+
await this.reconcileThread()
|
|
193
|
+
await this.broadcastSnapshot()
|
|
194
|
+
|
|
195
|
+
const poll = setInterval(() => {
|
|
196
|
+
this.poll().catch((e) => this.log(`poll failed: ${errorMessage(e)}`))
|
|
197
|
+
}, CODEX_IPC_POLL_MS)
|
|
198
|
+
try {
|
|
199
|
+
await client.closed()
|
|
200
|
+
} finally {
|
|
201
|
+
clearInterval(poll)
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
private async poll(): Promise<void> {
|
|
206
|
+
if (!daemonAlive(this.opts.name)) {
|
|
207
|
+
this.ipcClient?.close()
|
|
208
|
+
this.closeAppClient()
|
|
209
|
+
return
|
|
210
|
+
}
|
|
211
|
+
const previousThreadId = this.activeThreadId
|
|
212
|
+
await this.reconcileThread()
|
|
213
|
+
if (this.activeThreadId !== null && this.activeThreadId !== previousThreadId) {
|
|
214
|
+
await this.broadcastSnapshot()
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
private async reconcileThread(): Promise<string | null> {
|
|
219
|
+
const state = readDaemonState(this.opts.name)
|
|
220
|
+
if (state === null || !daemonAlive(this.opts.name)) return null
|
|
221
|
+
if (state.threadId === null) return null
|
|
222
|
+
if (this.appClient === null || this.activeThreadId !== state.threadId) {
|
|
223
|
+
await this.openAppClient(state.socketPath, state.threadId)
|
|
224
|
+
}
|
|
225
|
+
return state.threadId
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
private async openAppClient(socketPath: string, threadId: string): Promise<void> {
|
|
229
|
+
this.closeAppClient()
|
|
230
|
+
const client = new CodexWsClient({ socketPath })
|
|
231
|
+
await client.ready()
|
|
232
|
+
await client.request<'initialize', InitializeResponse>('initialize', {
|
|
233
|
+
clientInfo: CODEX_CLIENT_INFO,
|
|
234
|
+
capabilities: {
|
|
235
|
+
experimentalApi: true,
|
|
236
|
+
requestAttestation: false,
|
|
237
|
+
},
|
|
238
|
+
})
|
|
239
|
+
client.onClose((reason) => this.handleAppClientClosed(client, reason))
|
|
240
|
+
client.setServerRequestHandler(async (req) => this.handleCodexServerRequest(req))
|
|
241
|
+
client.onNotification((notif) => this.handleCodexNotification(notif))
|
|
242
|
+
this.appClient = client
|
|
243
|
+
this.appThread = await client.request<'thread/resume', ThreadResumeResponse>('thread/resume', {
|
|
244
|
+
threadId,
|
|
245
|
+
persistExtendedHistory: false,
|
|
246
|
+
})
|
|
247
|
+
this.activeThreadId = threadId
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
private closeAppClient(): void {
|
|
251
|
+
const client = this.appClient
|
|
252
|
+
this.appClient = null
|
|
253
|
+
this.appThread = null
|
|
254
|
+
this.activeThreadId = null
|
|
255
|
+
if (client !== null) client.close()
|
|
256
|
+
for (const pending of this.pendingServerRequests.values()) {
|
|
257
|
+
pending.reject(new Error('codex IPC bridge app-server connection closed'))
|
|
258
|
+
}
|
|
259
|
+
this.pendingServerRequests.clear()
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
private handleAppClientClosed(client: CodexWsClient, reason: Error): void {
|
|
263
|
+
if (this.appClient !== client) return
|
|
264
|
+
this.appClient = null
|
|
265
|
+
this.appThread = null
|
|
266
|
+
this.activeThreadId = null
|
|
267
|
+
for (const pending of this.pendingServerRequests.values()) pending.reject(reason)
|
|
268
|
+
this.pendingServerRequests.clear()
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
private handleCodexNotification(notif: ServerNotification): void {
|
|
272
|
+
if (!notificationMatchesThread(notif, this.activeThreadId)) return
|
|
273
|
+
this.scheduleSnapshot()
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
private async handleCodexServerRequest(req: ServerRequest): Promise<unknown> {
|
|
277
|
+
if (!serverRequestMatchesThread(req, this.activeThreadId)) {
|
|
278
|
+
throw new Error(`server request ${req.method} does not target the active thread`)
|
|
279
|
+
}
|
|
280
|
+
const id = String(req.id)
|
|
281
|
+
return new Promise((resolve, reject) => {
|
|
282
|
+
this.pendingServerRequests.set(id, {
|
|
283
|
+
id,
|
|
284
|
+
method: req.method,
|
|
285
|
+
params: req.params,
|
|
286
|
+
resolve,
|
|
287
|
+
reject,
|
|
288
|
+
})
|
|
289
|
+
this.scheduleSnapshot()
|
|
290
|
+
})
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
private handleIpcBroadcast(ctx: IpcBroadcastContext): void {
|
|
294
|
+
if (ctx.method !== 'client-status-changed') return
|
|
295
|
+
const params = asRecord(ctx.params)
|
|
296
|
+
if (params?.['status'] === 'connected' && params['clientId'] !== this.ipcClient?.id) {
|
|
297
|
+
this.scheduleSnapshot()
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
private async canHandleIpcRequest(method: string, params: unknown): Promise<boolean> {
|
|
302
|
+
if (!isCodexFollowerIpcMethod(method)) return false
|
|
303
|
+
await this.reconcileThread()
|
|
304
|
+
if (this.activeThreadId === null) return false
|
|
305
|
+
return conversationId(params) === this.activeThreadId
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
private async handleIpcRequest(ctx: IpcRequestContext): Promise<unknown> {
|
|
309
|
+
if (!(await this.canHandleIpcRequest(ctx.method, ctx.params))) {
|
|
310
|
+
throw new Error(`claudemux codex teammate cannot handle ${ctx.method}`)
|
|
311
|
+
}
|
|
312
|
+
switch (ctx.method) {
|
|
313
|
+
case 'thread-follower-start-turn':
|
|
314
|
+
return this.handleStartTurn(ctx.params)
|
|
315
|
+
case 'thread-follower-compact-thread':
|
|
316
|
+
return this.handleCompactThread()
|
|
317
|
+
case 'thread-follower-steer-turn':
|
|
318
|
+
return this.handleSteerTurn(ctx.params)
|
|
319
|
+
case 'thread-follower-interrupt-turn':
|
|
320
|
+
return this.handleInterruptTurn(ctx.params)
|
|
321
|
+
case 'thread-follower-set-model-and-reasoning':
|
|
322
|
+
return this.handleThreadSettings(ctx.params, 'model')
|
|
323
|
+
case 'thread-follower-set-collaboration-mode':
|
|
324
|
+
return this.handleThreadSettings(ctx.params, 'collaboration')
|
|
325
|
+
case 'thread-follower-command-approval-decision':
|
|
326
|
+
return this.resolvePendingServerRequest(ctx.params, 'item/commandExecution/requestApproval')
|
|
327
|
+
case 'thread-follower-file-approval-decision':
|
|
328
|
+
return this.resolvePendingServerRequest(ctx.params, 'item/fileChange/requestApproval')
|
|
329
|
+
case 'thread-follower-permissions-request-approval-response':
|
|
330
|
+
return this.resolvePendingServerRequest(ctx.params, 'item/permissions/requestApproval')
|
|
331
|
+
case 'thread-follower-submit-user-input':
|
|
332
|
+
return this.resolvePendingServerRequest(ctx.params, 'item/tool/requestUserInput')
|
|
333
|
+
case 'thread-follower-submit-mcp-server-elicitation-response':
|
|
334
|
+
return this.resolvePendingServerRequest(ctx.params, 'mcpServer/elicitation/request')
|
|
335
|
+
case 'thread-follower-set-queued-follow-ups-state':
|
|
336
|
+
return this.handleSetQueuedFollowUpsState(ctx.params)
|
|
337
|
+
default:
|
|
338
|
+
throw new Error(`unsupported codex follower IPC method: ${ctx.method}`)
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
private async handleStartTurn(params: unknown): Promise<FollowerResultResponse<TurnStartResponse>> {
|
|
343
|
+
const client = await this.requireAppClient()
|
|
344
|
+
const threadId = this.requireThreadId()
|
|
345
|
+
const startParams = turnStartParamsFromFollower(params, threadId)
|
|
346
|
+
const response = await client.request<'turn/start', TurnStartResponse>('turn/start', startParams)
|
|
347
|
+
this.scheduleSnapshot()
|
|
348
|
+
return { result: response }
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
private async handleCompactThread(): Promise<FollowerOkResponse> {
|
|
352
|
+
const client = await this.requireAppClient()
|
|
353
|
+
const threadId = this.requireThreadId()
|
|
354
|
+
await client.request<'thread/compact/start', ThreadCompactStartResponse>(
|
|
355
|
+
'thread/compact/start',
|
|
356
|
+
{ threadId },
|
|
357
|
+
)
|
|
358
|
+
this.scheduleSnapshot()
|
|
359
|
+
return { ok: true }
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
private async handleSteerTurn(params: unknown): Promise<FollowerResultResponse<TurnSteerResponse>> {
|
|
363
|
+
const client = await this.requireAppClient()
|
|
364
|
+
const threadId = this.requireThreadId()
|
|
365
|
+
const steerParams = turnSteerParamsFromFollower(
|
|
366
|
+
params,
|
|
367
|
+
threadId,
|
|
368
|
+
await this.readActiveTurnId(client, threadId),
|
|
369
|
+
)
|
|
370
|
+
let response: TurnSteerResponse
|
|
371
|
+
try {
|
|
372
|
+
response = await client.request<'turn/steer', TurnSteerResponse>('turn/steer', steerParams)
|
|
373
|
+
} catch (e) {
|
|
374
|
+
const actualTurnId = expectedActiveTurnIdFromError(e)
|
|
375
|
+
if (actualTurnId === null) throw e
|
|
376
|
+
response = await client.request<'turn/steer', TurnSteerResponse>('turn/steer', {
|
|
377
|
+
...steerParams,
|
|
378
|
+
expectedTurnId: actualTurnId,
|
|
379
|
+
})
|
|
380
|
+
}
|
|
381
|
+
this.scheduleSnapshot()
|
|
382
|
+
return { result: response }
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
private async handleInterruptTurn(params: unknown): Promise<FollowerOkResponse> {
|
|
386
|
+
const client = await this.requireAppClient()
|
|
387
|
+
const threadId = this.requireThreadId()
|
|
388
|
+
this.resolvePendingServerRequestsForInterrupt()
|
|
389
|
+
const activeTurnId = await this.readActiveTurnId(client, threadId)
|
|
390
|
+
if (activeTurnId === null) {
|
|
391
|
+
this.scheduleSnapshot()
|
|
392
|
+
return { ok: true }
|
|
393
|
+
}
|
|
394
|
+
const interruptParams = turnInterruptParamsFromFollower(
|
|
395
|
+
params,
|
|
396
|
+
threadId,
|
|
397
|
+
activeTurnId,
|
|
398
|
+
)
|
|
399
|
+
await client.request<'turn/interrupt', TurnInterruptResponse>('turn/interrupt', interruptParams)
|
|
400
|
+
this.scheduleSnapshot()
|
|
401
|
+
return { ok: true }
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
private async handleThreadSettings(
|
|
405
|
+
params: unknown,
|
|
406
|
+
mode: 'model' | 'collaboration',
|
|
407
|
+
): Promise<FollowerOkResponse> {
|
|
408
|
+
const client = await this.requireAppClient()
|
|
409
|
+
const values = asRecord(params)
|
|
410
|
+
if (values === null) throw new Error(`thread-follower-set-${mode} params must be an object`)
|
|
411
|
+
const settings: Record<string, unknown> = { threadId: this.requireThreadId() }
|
|
412
|
+
if (mode === 'model') {
|
|
413
|
+
copyIfPresent(values, settings, 'model')
|
|
414
|
+
if ('reasoningEffort' in values) settings['effort'] = values['reasoningEffort']
|
|
415
|
+
copyIfPresent(values, settings, 'effort')
|
|
416
|
+
copyIfPresent(values, settings, 'summary')
|
|
417
|
+
copyIfPresent(values, settings, 'serviceTier')
|
|
418
|
+
copyIfPresent(values, settings, 'personality')
|
|
419
|
+
} else {
|
|
420
|
+
copyIfPresent(values, settings, 'collaborationMode')
|
|
421
|
+
}
|
|
422
|
+
await client.request<'thread/settings/update', ThreadSettingsUpdateResponse>(
|
|
423
|
+
'thread/settings/update',
|
|
424
|
+
settings as ParametersFor<'thread/settings/update'>,
|
|
425
|
+
)
|
|
426
|
+
this.scheduleSnapshot()
|
|
427
|
+
return { ok: true }
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
private async handleSetQueuedFollowUpsState(params: unknown): Promise<FollowerOkResponse> {
|
|
431
|
+
const values = asRecord(params)
|
|
432
|
+
if (values === null) throw new Error('thread-follower-set-queued-follow-ups-state params must be an object')
|
|
433
|
+
const threadId = this.requireThreadId()
|
|
434
|
+
const state = asRecord(values['state'])
|
|
435
|
+
const messages = state === null || !Array.isArray(state[threadId]) ? [] : state[threadId]
|
|
436
|
+
this.ipcClient?.broadcast('thread-queued-followups-changed', {
|
|
437
|
+
conversationId: threadId,
|
|
438
|
+
messages,
|
|
439
|
+
})
|
|
440
|
+
return { ok: true }
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
private async resolvePendingServerRequest(
|
|
444
|
+
params: unknown,
|
|
445
|
+
expectedMethod: ServerRequest['method'],
|
|
446
|
+
): Promise<Record<string, unknown>> {
|
|
447
|
+
const values = asRecord(params)
|
|
448
|
+
if (values === null) throw new Error(`params must be an object for ${expectedMethod}`)
|
|
449
|
+
const requestId = values?.['requestId']
|
|
450
|
+
if (typeof requestId !== 'string' || requestId.length === 0) {
|
|
451
|
+
throw new Error(`missing requestId for ${expectedMethod}`)
|
|
452
|
+
}
|
|
453
|
+
const pending = this.pendingServerRequests.get(requestId)
|
|
454
|
+
if (pending === undefined) throw new Error(`unknown pending server request ${requestId}`)
|
|
455
|
+
if (pending.method !== expectedMethod) {
|
|
456
|
+
throw new Error(`server request ${requestId} is ${pending.method}, not ${expectedMethod}`)
|
|
457
|
+
}
|
|
458
|
+
const result = serverRequestResult(expectedMethod, values)
|
|
459
|
+
this.pendingServerRequests.delete(requestId)
|
|
460
|
+
pending.resolve(result)
|
|
461
|
+
this.scheduleSnapshot()
|
|
462
|
+
return { ok: true }
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
private resolvePendingServerRequestsForInterrupt(): number {
|
|
466
|
+
let resolved = 0
|
|
467
|
+
for (const pending of Array.from(this.pendingServerRequests.values())) {
|
|
468
|
+
const result = interruptServerRequestResult(pending.method)
|
|
469
|
+
if (result === null) continue
|
|
470
|
+
this.pendingServerRequests.delete(pending.id)
|
|
471
|
+
pending.resolve(result)
|
|
472
|
+
resolved += 1
|
|
473
|
+
}
|
|
474
|
+
return resolved
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
private async requireAppClient(): Promise<CodexWsClient> {
|
|
478
|
+
await this.reconcileThread()
|
|
479
|
+
if (this.appClient === null) throw new Error('codex app-server client is not connected')
|
|
480
|
+
return this.appClient
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
private requireThreadId(): string {
|
|
484
|
+
if (this.activeThreadId === null) throw new Error('codex teammate has no active thread')
|
|
485
|
+
return this.activeThreadId
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
private async readActiveTurnId(client: CodexWsClient, threadId: string): Promise<string | null> {
|
|
489
|
+
const read = await client.request<'thread/read', ThreadReadResponse>('thread/read', {
|
|
490
|
+
threadId,
|
|
491
|
+
includeTurns: true,
|
|
492
|
+
})
|
|
493
|
+
return activeTurnIdFromThread(read.thread)
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
private scheduleSnapshot(): void {
|
|
497
|
+
if (this.ipcClient === null) return
|
|
498
|
+
if (this.snapshotTimer !== null) clearTimeout(this.snapshotTimer)
|
|
499
|
+
this.snapshotTimer = setTimeout(() => {
|
|
500
|
+
this.snapshotTimer = null
|
|
501
|
+
this.broadcastSnapshot().catch((e) => this.log(`snapshot broadcast failed: ${errorMessage(e)}`))
|
|
502
|
+
}, CODEX_IPC_SNAPSHOT_DEBOUNCE_MS)
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
private async broadcastSnapshot(): Promise<void> {
|
|
506
|
+
const ipc = this.ipcClient
|
|
507
|
+
if (ipc === null) return
|
|
508
|
+
const threadId = await this.reconcileThread()
|
|
509
|
+
if (threadId === null || this.appClient === null || this.appThread === null) return
|
|
510
|
+
let read: ThreadReadResponse
|
|
511
|
+
try {
|
|
512
|
+
read = await this.appClient.request<'thread/read', ThreadReadResponse>('thread/read', {
|
|
513
|
+
threadId,
|
|
514
|
+
includeTurns: true,
|
|
515
|
+
})
|
|
516
|
+
} catch (e) {
|
|
517
|
+
this.closeAppClient()
|
|
518
|
+
throw e
|
|
519
|
+
}
|
|
520
|
+
const state = conversationStateFromThread(this.appThread, read.thread, [
|
|
521
|
+
...this.pendingServerRequests.values(),
|
|
522
|
+
])
|
|
523
|
+
ipc.broadcast('thread-stream-state-changed', {
|
|
524
|
+
conversationId: threadId,
|
|
525
|
+
hostId: CODEX_UI_HOST_ID,
|
|
526
|
+
change: {
|
|
527
|
+
type: 'snapshot',
|
|
528
|
+
conversationState: state,
|
|
529
|
+
},
|
|
530
|
+
version: CODEX_UI_STREAM_VERSION,
|
|
531
|
+
})
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
private log(message: string): void {
|
|
535
|
+
console.error(`[codex-ipc-bridge:${this.opts.name}] ${message}`)
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
export function conversationStateFromThread(
|
|
540
|
+
resume: ThreadResumeResponse,
|
|
541
|
+
thread: Thread,
|
|
542
|
+
pendingRequests: readonly Pick<PendingServerRequest, 'id' | 'method' | 'params'>[] = [],
|
|
543
|
+
): ConversationState {
|
|
544
|
+
const cwd = resume.cwd || thread.cwd || '/'
|
|
545
|
+
const createdAt = secondsToMillis(thread.createdAt)
|
|
546
|
+
const updatedAt = secondsToMillis(thread.updatedAt)
|
|
547
|
+
return {
|
|
548
|
+
id: thread.id,
|
|
549
|
+
forkedFromId: thread.forkedFromId,
|
|
550
|
+
hostId: CODEX_UI_HOST_ID,
|
|
551
|
+
turns: turnsFromThread(thread.id, thread.turns, resume, cwd),
|
|
552
|
+
requests: pendingRequests.map((request) => ({
|
|
553
|
+
id: request.id,
|
|
554
|
+
method: request.method,
|
|
555
|
+
params: request.params,
|
|
556
|
+
})),
|
|
557
|
+
createdAt,
|
|
558
|
+
updatedAt,
|
|
559
|
+
title: thread.name,
|
|
560
|
+
modelProvider: resume.modelProvider || thread.modelProvider,
|
|
561
|
+
latestModel: resume.model,
|
|
562
|
+
latestReasoningEffort: resume.reasoningEffort,
|
|
563
|
+
previousTurnModel: null,
|
|
564
|
+
latestCollaborationMode: {
|
|
565
|
+
mode: 'default',
|
|
566
|
+
settings: {
|
|
567
|
+
model: resume.model,
|
|
568
|
+
reasoning_effort: resume.reasoningEffort,
|
|
569
|
+
developer_instructions: null,
|
|
570
|
+
},
|
|
571
|
+
},
|
|
572
|
+
hasUnreadTurn: false,
|
|
573
|
+
rolloutPath: thread.path ?? '',
|
|
574
|
+
cwd,
|
|
575
|
+
gitInfo: thread.gitInfo,
|
|
576
|
+
resumeState: 'resumed',
|
|
577
|
+
latestTokenUsageInfo: null,
|
|
578
|
+
threadDetailLevel: null,
|
|
579
|
+
threadRuntimeStatus: thread.status,
|
|
580
|
+
turnsPagination: {
|
|
581
|
+
olderCursor: null,
|
|
582
|
+
isLoadingOlder: false,
|
|
583
|
+
hasLoadedOldest: true,
|
|
584
|
+
},
|
|
585
|
+
workspaceKind: 'project',
|
|
586
|
+
source: thread.source,
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
function turnsFromThread(
|
|
591
|
+
threadId: string,
|
|
592
|
+
turns: readonly Turn[],
|
|
593
|
+
resume: ThreadResumeResponse,
|
|
594
|
+
cwd: string,
|
|
595
|
+
): readonly ConversationTurn[] {
|
|
596
|
+
return turns.map((turn) => {
|
|
597
|
+
const first = turn.items[0]
|
|
598
|
+
const input = isUserMessageItem(first) ? first.content : []
|
|
599
|
+
return {
|
|
600
|
+
params: {
|
|
601
|
+
threadId,
|
|
602
|
+
input,
|
|
603
|
+
approvalPolicy: resume.approvalPolicy,
|
|
604
|
+
approvalsReviewer: resume.approvalsReviewer,
|
|
605
|
+
sandboxPolicy: resume.sandbox,
|
|
606
|
+
model: resume.model,
|
|
607
|
+
cwd,
|
|
608
|
+
attachments: [],
|
|
609
|
+
effort: resume.reasoningEffort,
|
|
610
|
+
summary: 'none',
|
|
611
|
+
personality: null,
|
|
612
|
+
outputSchema: null,
|
|
613
|
+
collaborationMode: null,
|
|
614
|
+
},
|
|
615
|
+
turnId: turn.id,
|
|
616
|
+
turnStartedAtMs: nullableSecondsToMillis(turn.startedAt),
|
|
617
|
+
durationMs: turn.durationMs,
|
|
618
|
+
finalAssistantStartedAtMs: nullableSecondsToMillis(turn.completedAt),
|
|
619
|
+
status: turn.status,
|
|
620
|
+
error: turn.error,
|
|
621
|
+
diff: null,
|
|
622
|
+
items: turn.items.map((item) => normalizeThreadItemForUi(item)),
|
|
623
|
+
}
|
|
624
|
+
})
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
function normalizeThreadItemForUi(item: unknown): unknown {
|
|
628
|
+
if (
|
|
629
|
+
typeof item === 'object' &&
|
|
630
|
+
item !== null &&
|
|
631
|
+
(item as { type?: unknown }).type === 'collabAgentToolCall' &&
|
|
632
|
+
Array.isArray((item as { receiverThreadIds?: unknown }).receiverThreadIds)
|
|
633
|
+
) {
|
|
634
|
+
const ids = (item as { receiverThreadIds: readonly unknown[] }).receiverThreadIds
|
|
635
|
+
return {
|
|
636
|
+
...item,
|
|
637
|
+
receiverThreads: ids
|
|
638
|
+
.filter((id): id is string => typeof id === 'string')
|
|
639
|
+
.map((threadId) => ({ threadId, thread: null })),
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
return item
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
export function turnStartParamsFromFollower(params: unknown, threadId: string): TurnStartParams {
|
|
646
|
+
const outer = asRecord(params)
|
|
647
|
+
if (outer === null) throw new Error('thread-follower-start-turn params must be an object')
|
|
648
|
+
const inner = asRecord(outer['turnStartParams']) ?? outer
|
|
649
|
+
const input = inner['input']
|
|
650
|
+
if (!Array.isArray(input)) throw new Error('thread-follower-start-turn missing input array')
|
|
651
|
+
const result: Record<string, unknown> = {
|
|
652
|
+
threadId,
|
|
653
|
+
input,
|
|
654
|
+
}
|
|
655
|
+
for (const key of TURN_START_OPTIONAL_KEYS) copyIfPresent(inner, result, key)
|
|
656
|
+
return result as TurnStartParams
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
export function turnSteerParamsFromFollower(
|
|
660
|
+
params: unknown,
|
|
661
|
+
threadId: string,
|
|
662
|
+
activeTurnId: string | null = null,
|
|
663
|
+
): TurnSteerParams {
|
|
664
|
+
const outer = asRecord(params)
|
|
665
|
+
if (outer === null) throw new Error('thread-follower-steer-turn params must be an object')
|
|
666
|
+
const inner = asRecord(outer['turnSteerParams']) ?? outer
|
|
667
|
+
const input = inner['input']
|
|
668
|
+
if (!Array.isArray(input)) throw new Error('thread-follower-steer-turn missing input array')
|
|
669
|
+
const expectedTurnId = firstString(
|
|
670
|
+
inner['expectedTurnId'],
|
|
671
|
+
inner['turnId'],
|
|
672
|
+
outer['expectedTurnId'],
|
|
673
|
+
outer['turnId'],
|
|
674
|
+
activeTurnId,
|
|
675
|
+
)
|
|
676
|
+
if (expectedTurnId === null) {
|
|
677
|
+
throw new Error('thread-follower-steer-turn missing active turn id')
|
|
678
|
+
}
|
|
679
|
+
const result: TurnSteerParams = {
|
|
680
|
+
threadId,
|
|
681
|
+
input: input as TurnSteerParams['input'],
|
|
682
|
+
expectedTurnId,
|
|
683
|
+
}
|
|
684
|
+
const metadata = followerResponsesapiMetadata(inner)
|
|
685
|
+
const outerMetadata = inner === outer ? { present: false as const } : followerResponsesapiMetadata(outer)
|
|
686
|
+
const selectedMetadata = metadata.present ? metadata : outerMetadata
|
|
687
|
+
if (selectedMetadata.present) {
|
|
688
|
+
result.responsesapiClientMetadata = selectedMetadata.value as TurnSteerParams['responsesapiClientMetadata']
|
|
689
|
+
}
|
|
690
|
+
return result
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
export function turnInterruptParamsFromFollower(
|
|
694
|
+
params: unknown,
|
|
695
|
+
threadId: string,
|
|
696
|
+
activeTurnId: string | null = null,
|
|
697
|
+
): TurnInterruptParams {
|
|
698
|
+
const outer = asRecord(params)
|
|
699
|
+
if (outer === null) throw new Error('thread-follower-interrupt-turn params must be an object')
|
|
700
|
+
const inner = asRecord(outer['turnInterruptParams']) ?? asRecord(outer['interruptTurnParams']) ?? outer
|
|
701
|
+
const turnId = firstString(
|
|
702
|
+
inner['turnId'],
|
|
703
|
+
inner['expectedTurnId'],
|
|
704
|
+
outer['turnId'],
|
|
705
|
+
outer['expectedTurnId'],
|
|
706
|
+
activeTurnId,
|
|
707
|
+
)
|
|
708
|
+
if (turnId === null) throw new Error('thread-follower-interrupt-turn missing active turn id')
|
|
709
|
+
return { threadId, turnId }
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
function serverRequestResult(
|
|
713
|
+
method: ServerRequest['method'],
|
|
714
|
+
values: Record<string, unknown>,
|
|
715
|
+
): unknown {
|
|
716
|
+
switch (method) {
|
|
717
|
+
case 'item/commandExecution/requestApproval':
|
|
718
|
+
case 'item/fileChange/requestApproval':
|
|
719
|
+
if (!('decision' in values)) throw new Error(`missing decision for ${method}`)
|
|
720
|
+
return { decision: values['decision'] }
|
|
721
|
+
case 'item/permissions/requestApproval':
|
|
722
|
+
case 'item/tool/requestUserInput':
|
|
723
|
+
case 'mcpServer/elicitation/request': {
|
|
724
|
+
if (!('response' in values)) throw new Error(`missing response for ${method}`)
|
|
725
|
+
return values['response']
|
|
726
|
+
}
|
|
727
|
+
case 'item/tool/call':
|
|
728
|
+
case 'account/chatgptAuthTokens/refresh':
|
|
729
|
+
case 'attestation/generate':
|
|
730
|
+
case 'applyPatchApproval':
|
|
731
|
+
case 'execCommandApproval':
|
|
732
|
+
throw new Error(`unsupported server request response method: ${method}`)
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
function interruptServerRequestResult(method: ServerRequest['method']): unknown | null {
|
|
737
|
+
switch (method) {
|
|
738
|
+
case 'item/commandExecution/requestApproval':
|
|
739
|
+
case 'item/fileChange/requestApproval':
|
|
740
|
+
return { decision: 'decline' }
|
|
741
|
+
case 'item/permissions/requestApproval':
|
|
742
|
+
return { permissions: {}, scope: 'turn' }
|
|
743
|
+
case 'item/tool/requestUserInput':
|
|
744
|
+
return { answers: {} }
|
|
745
|
+
case 'mcpServer/elicitation/request':
|
|
746
|
+
return { action: 'decline', content: null, _meta: null }
|
|
747
|
+
case 'item/tool/call':
|
|
748
|
+
case 'account/chatgptAuthTokens/refresh':
|
|
749
|
+
case 'attestation/generate':
|
|
750
|
+
case 'applyPatchApproval':
|
|
751
|
+
case 'execCommandApproval':
|
|
752
|
+
return null
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
function activeTurnIdFromThread(thread: Thread): string | null {
|
|
757
|
+
for (let i = thread.turns.length - 1; i >= 0; i -= 1) {
|
|
758
|
+
const turn = thread.turns[i]
|
|
759
|
+
if (turn?.status === 'inProgress') return turn.id
|
|
760
|
+
}
|
|
761
|
+
return null
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
function notificationMatchesThread(notif: ServerNotification, threadId: string | null): boolean {
|
|
765
|
+
if (threadId === null) return false
|
|
766
|
+
const params = asRecord(notif.params)
|
|
767
|
+
if (params === null) return false
|
|
768
|
+
if (params['threadId'] === threadId) return true
|
|
769
|
+
const thread = asRecord(params['thread'])
|
|
770
|
+
return thread?.['id'] === threadId
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
function serverRequestMatchesThread(req: ServerRequest, threadId: string | null): boolean {
|
|
774
|
+
if (threadId === null) return false
|
|
775
|
+
const params = asRecord(req.params)
|
|
776
|
+
return params?.['threadId'] === threadId
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
function conversationId(params: unknown): string | null {
|
|
780
|
+
const record = asRecord(params)
|
|
781
|
+
const id = record?.['conversationId']
|
|
782
|
+
return typeof id === 'string' && id.length > 0 ? id : null
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
function isUserMessageItem(item: unknown): item is { readonly content: readonly unknown[] } {
|
|
786
|
+
return (
|
|
787
|
+
typeof item === 'object' &&
|
|
788
|
+
item !== null &&
|
|
789
|
+
(item as { type?: unknown }).type === 'userMessage' &&
|
|
790
|
+
Array.isArray((item as { content?: unknown }).content)
|
|
791
|
+
)
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
function asRecord(value: unknown): Record<string, unknown> | null {
|
|
795
|
+
return typeof value === 'object' && value !== null && !Array.isArray(value)
|
|
796
|
+
? value as Record<string, unknown>
|
|
797
|
+
: null
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
function copyIfPresent(
|
|
801
|
+
from: Record<string, unknown>,
|
|
802
|
+
to: Record<string, unknown>,
|
|
803
|
+
key: string,
|
|
804
|
+
): void {
|
|
805
|
+
if (key in from) to[key] = from[key]
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
function firstString(...values: readonly unknown[]): string | null {
|
|
809
|
+
for (const value of values) {
|
|
810
|
+
if (typeof value === 'string' && value.length > 0) return value
|
|
811
|
+
}
|
|
812
|
+
return null
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
function followerResponsesapiMetadata(
|
|
816
|
+
values: Record<string, unknown>,
|
|
817
|
+
): { readonly present: true; readonly value: unknown } | { readonly present: false } {
|
|
818
|
+
if ('responsesapiClientMetadata' in values) {
|
|
819
|
+
return { present: true, value: values['responsesapiClientMetadata'] }
|
|
820
|
+
}
|
|
821
|
+
const restoreMessage = asRecord(values['restoreMessage'])
|
|
822
|
+
return restoreMessage === null || !('responsesapiClientMetadata' in restoreMessage)
|
|
823
|
+
? { present: false }
|
|
824
|
+
: { present: true, value: restoreMessage['responsesapiClientMetadata'] }
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
function expectedActiveTurnIdFromError(error: unknown): string | null {
|
|
828
|
+
const match = errorMessage(error).match(/expected active turn id `[^`]+` but found `([^`]+)`/)
|
|
829
|
+
return match?.[1] ?? null
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
function secondsToMillis(value: number): number {
|
|
833
|
+
return Number.isFinite(value) ? value * 1000 : Date.now()
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
function nullableSecondsToMillis(value: number | null): number | null {
|
|
837
|
+
return value === null || !Number.isFinite(value) ? null : value * 1000
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
function errorMessage(value: unknown): string {
|
|
841
|
+
return value instanceof Error ? value.message : String(value)
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
type ParametersFor<M extends ClientRequestMethod> = Extract<ClientRequest, { method: M }>['params']
|