@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,503 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
export type { Account } from "./Account";
|
|
4
|
+
export type { AccountLoginCompletedNotification } from "./AccountLoginCompletedNotification";
|
|
5
|
+
export type { AccountRateLimitsUpdatedNotification } from "./AccountRateLimitsUpdatedNotification";
|
|
6
|
+
export type { AccountUpdatedNotification } from "./AccountUpdatedNotification";
|
|
7
|
+
export type { ActivePermissionProfile } from "./ActivePermissionProfile";
|
|
8
|
+
export type { AddCreditsNudgeCreditType } from "./AddCreditsNudgeCreditType";
|
|
9
|
+
export type { AddCreditsNudgeEmailStatus } from "./AddCreditsNudgeEmailStatus";
|
|
10
|
+
export type { AdditionalFileSystemPermissions } from "./AdditionalFileSystemPermissions";
|
|
11
|
+
export type { AdditionalNetworkPermissions } from "./AdditionalNetworkPermissions";
|
|
12
|
+
export type { AdditionalPermissionProfile } from "./AdditionalPermissionProfile";
|
|
13
|
+
export type { AgentMessageDeltaNotification } from "./AgentMessageDeltaNotification";
|
|
14
|
+
export type { AnalyticsConfig } from "./AnalyticsConfig";
|
|
15
|
+
export type { AppBranding } from "./AppBranding";
|
|
16
|
+
export type { AppInfo } from "./AppInfo";
|
|
17
|
+
export type { AppListUpdatedNotification } from "./AppListUpdatedNotification";
|
|
18
|
+
export type { AppMetadata } from "./AppMetadata";
|
|
19
|
+
export type { AppReview } from "./AppReview";
|
|
20
|
+
export type { AppScreenshot } from "./AppScreenshot";
|
|
21
|
+
export type { AppSummary } from "./AppSummary";
|
|
22
|
+
export type { AppToolApproval } from "./AppToolApproval";
|
|
23
|
+
export type { AppToolsConfig } from "./AppToolsConfig";
|
|
24
|
+
export type { ApprovalsReviewer } from "./ApprovalsReviewer";
|
|
25
|
+
export type { AppsConfig } from "./AppsConfig";
|
|
26
|
+
export type { AppsDefaultConfig } from "./AppsDefaultConfig";
|
|
27
|
+
export type { AppsListParams } from "./AppsListParams";
|
|
28
|
+
export type { AppsListResponse } from "./AppsListResponse";
|
|
29
|
+
export type { AskForApproval } from "./AskForApproval";
|
|
30
|
+
export type { AttestationGenerateParams } from "./AttestationGenerateParams";
|
|
31
|
+
export type { AttestationGenerateResponse } from "./AttestationGenerateResponse";
|
|
32
|
+
export type { AutoReviewDecisionSource } from "./AutoReviewDecisionSource";
|
|
33
|
+
export type { ByteRange } from "./ByteRange";
|
|
34
|
+
export type { CancelLoginAccountParams } from "./CancelLoginAccountParams";
|
|
35
|
+
export type { CancelLoginAccountResponse } from "./CancelLoginAccountResponse";
|
|
36
|
+
export type { CancelLoginAccountStatus } from "./CancelLoginAccountStatus";
|
|
37
|
+
export type { ChatgptAuthTokensRefreshParams } from "./ChatgptAuthTokensRefreshParams";
|
|
38
|
+
export type { ChatgptAuthTokensRefreshReason } from "./ChatgptAuthTokensRefreshReason";
|
|
39
|
+
export type { ChatgptAuthTokensRefreshResponse } from "./ChatgptAuthTokensRefreshResponse";
|
|
40
|
+
export type { CodexErrorInfo } from "./CodexErrorInfo";
|
|
41
|
+
export type { CollabAgentState } from "./CollabAgentState";
|
|
42
|
+
export type { CollabAgentStatus } from "./CollabAgentStatus";
|
|
43
|
+
export type { CollabAgentTool } from "./CollabAgentTool";
|
|
44
|
+
export type { CollabAgentToolCallStatus } from "./CollabAgentToolCallStatus";
|
|
45
|
+
export type { CollaborationModeListParams } from "./CollaborationModeListParams";
|
|
46
|
+
export type { CollaborationModeListResponse } from "./CollaborationModeListResponse";
|
|
47
|
+
export type { CollaborationModeMask } from "./CollaborationModeMask";
|
|
48
|
+
export type { CommandAction } from "./CommandAction";
|
|
49
|
+
export type { CommandExecOutputDeltaNotification } from "./CommandExecOutputDeltaNotification";
|
|
50
|
+
export type { CommandExecOutputStream } from "./CommandExecOutputStream";
|
|
51
|
+
export type { CommandExecParams } from "./CommandExecParams";
|
|
52
|
+
export type { CommandExecResizeParams } from "./CommandExecResizeParams";
|
|
53
|
+
export type { CommandExecResizeResponse } from "./CommandExecResizeResponse";
|
|
54
|
+
export type { CommandExecResponse } from "./CommandExecResponse";
|
|
55
|
+
export type { CommandExecTerminalSize } from "./CommandExecTerminalSize";
|
|
56
|
+
export type { CommandExecTerminateParams } from "./CommandExecTerminateParams";
|
|
57
|
+
export type { CommandExecTerminateResponse } from "./CommandExecTerminateResponse";
|
|
58
|
+
export type { CommandExecWriteParams } from "./CommandExecWriteParams";
|
|
59
|
+
export type { CommandExecWriteResponse } from "./CommandExecWriteResponse";
|
|
60
|
+
export type { CommandExecutionApprovalDecision } from "./CommandExecutionApprovalDecision";
|
|
61
|
+
export type { CommandExecutionOutputDeltaNotification } from "./CommandExecutionOutputDeltaNotification";
|
|
62
|
+
export type { CommandExecutionRequestApprovalParams } from "./CommandExecutionRequestApprovalParams";
|
|
63
|
+
export type { CommandExecutionRequestApprovalResponse } from "./CommandExecutionRequestApprovalResponse";
|
|
64
|
+
export type { CommandExecutionSource } from "./CommandExecutionSource";
|
|
65
|
+
export type { CommandExecutionStatus } from "./CommandExecutionStatus";
|
|
66
|
+
export type { CommandMigration } from "./CommandMigration";
|
|
67
|
+
export type { ComputerUseRequirements } from "./ComputerUseRequirements";
|
|
68
|
+
export type { Config } from "./Config";
|
|
69
|
+
export type { ConfigBatchWriteParams } from "./ConfigBatchWriteParams";
|
|
70
|
+
export type { ConfigEdit } from "./ConfigEdit";
|
|
71
|
+
export type { ConfigLayer } from "./ConfigLayer";
|
|
72
|
+
export type { ConfigLayerMetadata } from "./ConfigLayerMetadata";
|
|
73
|
+
export type { ConfigLayerSource } from "./ConfigLayerSource";
|
|
74
|
+
export type { ConfigReadParams } from "./ConfigReadParams";
|
|
75
|
+
export type { ConfigReadResponse } from "./ConfigReadResponse";
|
|
76
|
+
export type { ConfigRequirements } from "./ConfigRequirements";
|
|
77
|
+
export type { ConfigRequirementsReadResponse } from "./ConfigRequirementsReadResponse";
|
|
78
|
+
export type { ConfigValueWriteParams } from "./ConfigValueWriteParams";
|
|
79
|
+
export type { ConfigWarningNotification } from "./ConfigWarningNotification";
|
|
80
|
+
export type { ConfigWriteResponse } from "./ConfigWriteResponse";
|
|
81
|
+
export type { ConfiguredHookHandler } from "./ConfiguredHookHandler";
|
|
82
|
+
export type { ConfiguredHookMatcherGroup } from "./ConfiguredHookMatcherGroup";
|
|
83
|
+
export type { ContextCompactedNotification } from "./ContextCompactedNotification";
|
|
84
|
+
export type { CreditsSnapshot } from "./CreditsSnapshot";
|
|
85
|
+
export type { DeprecationNoticeNotification } from "./DeprecationNoticeNotification";
|
|
86
|
+
export type { DynamicToolCallOutputContentItem } from "./DynamicToolCallOutputContentItem";
|
|
87
|
+
export type { DynamicToolCallParams } from "./DynamicToolCallParams";
|
|
88
|
+
export type { DynamicToolCallResponse } from "./DynamicToolCallResponse";
|
|
89
|
+
export type { DynamicToolCallStatus } from "./DynamicToolCallStatus";
|
|
90
|
+
export type { DynamicToolSpec } from "./DynamicToolSpec";
|
|
91
|
+
export type { EnvironmentAddParams } from "./EnvironmentAddParams";
|
|
92
|
+
export type { EnvironmentAddResponse } from "./EnvironmentAddResponse";
|
|
93
|
+
export type { ErrorNotification } from "./ErrorNotification";
|
|
94
|
+
export type { ExecPolicyAmendment } from "./ExecPolicyAmendment";
|
|
95
|
+
export type { ExperimentalFeature } from "./ExperimentalFeature";
|
|
96
|
+
export type { ExperimentalFeatureEnablementSetParams } from "./ExperimentalFeatureEnablementSetParams";
|
|
97
|
+
export type { ExperimentalFeatureEnablementSetResponse } from "./ExperimentalFeatureEnablementSetResponse";
|
|
98
|
+
export type { ExperimentalFeatureListParams } from "./ExperimentalFeatureListParams";
|
|
99
|
+
export type { ExperimentalFeatureListResponse } from "./ExperimentalFeatureListResponse";
|
|
100
|
+
export type { ExperimentalFeatureStage } from "./ExperimentalFeatureStage";
|
|
101
|
+
export type { ExternalAgentConfigDetectParams } from "./ExternalAgentConfigDetectParams";
|
|
102
|
+
export type { ExternalAgentConfigDetectResponse } from "./ExternalAgentConfigDetectResponse";
|
|
103
|
+
export type { ExternalAgentConfigImportCompletedNotification } from "./ExternalAgentConfigImportCompletedNotification";
|
|
104
|
+
export type { ExternalAgentConfigImportParams } from "./ExternalAgentConfigImportParams";
|
|
105
|
+
export type { ExternalAgentConfigImportResponse } from "./ExternalAgentConfigImportResponse";
|
|
106
|
+
export type { ExternalAgentConfigMigrationItem } from "./ExternalAgentConfigMigrationItem";
|
|
107
|
+
export type { ExternalAgentConfigMigrationItemType } from "./ExternalAgentConfigMigrationItemType";
|
|
108
|
+
export type { FeedbackUploadParams } from "./FeedbackUploadParams";
|
|
109
|
+
export type { FeedbackUploadResponse } from "./FeedbackUploadResponse";
|
|
110
|
+
export type { FileChangeApprovalDecision } from "./FileChangeApprovalDecision";
|
|
111
|
+
export type { FileChangeOutputDeltaNotification } from "./FileChangeOutputDeltaNotification";
|
|
112
|
+
export type { FileChangePatchUpdatedNotification } from "./FileChangePatchUpdatedNotification";
|
|
113
|
+
export type { FileChangeRequestApprovalParams } from "./FileChangeRequestApprovalParams";
|
|
114
|
+
export type { FileChangeRequestApprovalResponse } from "./FileChangeRequestApprovalResponse";
|
|
115
|
+
export type { FileSystemAccessMode } from "./FileSystemAccessMode";
|
|
116
|
+
export type { FileSystemPath } from "./FileSystemPath";
|
|
117
|
+
export type { FileSystemSandboxEntry } from "./FileSystemSandboxEntry";
|
|
118
|
+
export type { FileSystemSpecialPath } from "./FileSystemSpecialPath";
|
|
119
|
+
export type { FileUpdateChange } from "./FileUpdateChange";
|
|
120
|
+
export type { ForcedChatgptWorkspaceIds } from "./ForcedChatgptWorkspaceIds";
|
|
121
|
+
export type { FsChangedNotification } from "./FsChangedNotification";
|
|
122
|
+
export type { FsCopyParams } from "./FsCopyParams";
|
|
123
|
+
export type { FsCopyResponse } from "./FsCopyResponse";
|
|
124
|
+
export type { FsCreateDirectoryParams } from "./FsCreateDirectoryParams";
|
|
125
|
+
export type { FsCreateDirectoryResponse } from "./FsCreateDirectoryResponse";
|
|
126
|
+
export type { FsGetMetadataParams } from "./FsGetMetadataParams";
|
|
127
|
+
export type { FsGetMetadataResponse } from "./FsGetMetadataResponse";
|
|
128
|
+
export type { FsReadDirectoryEntry } from "./FsReadDirectoryEntry";
|
|
129
|
+
export type { FsReadDirectoryParams } from "./FsReadDirectoryParams";
|
|
130
|
+
export type { FsReadDirectoryResponse } from "./FsReadDirectoryResponse";
|
|
131
|
+
export type { FsReadFileParams } from "./FsReadFileParams";
|
|
132
|
+
export type { FsReadFileResponse } from "./FsReadFileResponse";
|
|
133
|
+
export type { FsRemoveParams } from "./FsRemoveParams";
|
|
134
|
+
export type { FsRemoveResponse } from "./FsRemoveResponse";
|
|
135
|
+
export type { FsUnwatchParams } from "./FsUnwatchParams";
|
|
136
|
+
export type { FsUnwatchResponse } from "./FsUnwatchResponse";
|
|
137
|
+
export type { FsWatchParams } from "./FsWatchParams";
|
|
138
|
+
export type { FsWatchResponse } from "./FsWatchResponse";
|
|
139
|
+
export type { FsWriteFileParams } from "./FsWriteFileParams";
|
|
140
|
+
export type { FsWriteFileResponse } from "./FsWriteFileResponse";
|
|
141
|
+
export type { GetAccountParams } from "./GetAccountParams";
|
|
142
|
+
export type { GetAccountRateLimitsResponse } from "./GetAccountRateLimitsResponse";
|
|
143
|
+
export type { GetAccountResponse } from "./GetAccountResponse";
|
|
144
|
+
export type { GitInfo } from "./GitInfo";
|
|
145
|
+
export type { GrantedPermissionProfile } from "./GrantedPermissionProfile";
|
|
146
|
+
export type { GuardianApprovalReview } from "./GuardianApprovalReview";
|
|
147
|
+
export type { GuardianApprovalReviewAction } from "./GuardianApprovalReviewAction";
|
|
148
|
+
export type { GuardianApprovalReviewStatus } from "./GuardianApprovalReviewStatus";
|
|
149
|
+
export type { GuardianCommandSource } from "./GuardianCommandSource";
|
|
150
|
+
export type { GuardianRiskLevel } from "./GuardianRiskLevel";
|
|
151
|
+
export type { GuardianUserAuthorization } from "./GuardianUserAuthorization";
|
|
152
|
+
export type { GuardianWarningNotification } from "./GuardianWarningNotification";
|
|
153
|
+
export type { HookCompletedNotification } from "./HookCompletedNotification";
|
|
154
|
+
export type { HookErrorInfo } from "./HookErrorInfo";
|
|
155
|
+
export type { HookEventName } from "./HookEventName";
|
|
156
|
+
export type { HookExecutionMode } from "./HookExecutionMode";
|
|
157
|
+
export type { HookHandlerType } from "./HookHandlerType";
|
|
158
|
+
export type { HookMetadata } from "./HookMetadata";
|
|
159
|
+
export type { HookMigration } from "./HookMigration";
|
|
160
|
+
export type { HookOutputEntry } from "./HookOutputEntry";
|
|
161
|
+
export type { HookOutputEntryKind } from "./HookOutputEntryKind";
|
|
162
|
+
export type { HookPromptFragment } from "./HookPromptFragment";
|
|
163
|
+
export type { HookRunStatus } from "./HookRunStatus";
|
|
164
|
+
export type { HookRunSummary } from "./HookRunSummary";
|
|
165
|
+
export type { HookScope } from "./HookScope";
|
|
166
|
+
export type { HookSource } from "./HookSource";
|
|
167
|
+
export type { HookStartedNotification } from "./HookStartedNotification";
|
|
168
|
+
export type { HookTrustStatus } from "./HookTrustStatus";
|
|
169
|
+
export type { HooksListEntry } from "./HooksListEntry";
|
|
170
|
+
export type { HooksListParams } from "./HooksListParams";
|
|
171
|
+
export type { HooksListResponse } from "./HooksListResponse";
|
|
172
|
+
export type { ItemCompletedNotification } from "./ItemCompletedNotification";
|
|
173
|
+
export type { ItemGuardianApprovalReviewCompletedNotification } from "./ItemGuardianApprovalReviewCompletedNotification";
|
|
174
|
+
export type { ItemGuardianApprovalReviewStartedNotification } from "./ItemGuardianApprovalReviewStartedNotification";
|
|
175
|
+
export type { ItemStartedNotification } from "./ItemStartedNotification";
|
|
176
|
+
export type { ListMcpServerStatusParams } from "./ListMcpServerStatusParams";
|
|
177
|
+
export type { ListMcpServerStatusResponse } from "./ListMcpServerStatusResponse";
|
|
178
|
+
export type { LoginAccountParams } from "./LoginAccountParams";
|
|
179
|
+
export type { LoginAccountResponse } from "./LoginAccountResponse";
|
|
180
|
+
export type { LogoutAccountResponse } from "./LogoutAccountResponse";
|
|
181
|
+
export type { ManagedHooksRequirements } from "./ManagedHooksRequirements";
|
|
182
|
+
export type { MarketplaceAddParams } from "./MarketplaceAddParams";
|
|
183
|
+
export type { MarketplaceAddResponse } from "./MarketplaceAddResponse";
|
|
184
|
+
export type { MarketplaceInterface } from "./MarketplaceInterface";
|
|
185
|
+
export type { MarketplaceLoadErrorInfo } from "./MarketplaceLoadErrorInfo";
|
|
186
|
+
export type { MarketplaceRemoveParams } from "./MarketplaceRemoveParams";
|
|
187
|
+
export type { MarketplaceRemoveResponse } from "./MarketplaceRemoveResponse";
|
|
188
|
+
export type { MarketplaceUpgradeErrorInfo } from "./MarketplaceUpgradeErrorInfo";
|
|
189
|
+
export type { MarketplaceUpgradeParams } from "./MarketplaceUpgradeParams";
|
|
190
|
+
export type { MarketplaceUpgradeResponse } from "./MarketplaceUpgradeResponse";
|
|
191
|
+
export type { McpAuthStatus } from "./McpAuthStatus";
|
|
192
|
+
export type { McpElicitationArrayType } from "./McpElicitationArrayType";
|
|
193
|
+
export type { McpElicitationBooleanSchema } from "./McpElicitationBooleanSchema";
|
|
194
|
+
export type { McpElicitationBooleanType } from "./McpElicitationBooleanType";
|
|
195
|
+
export type { McpElicitationConstOption } from "./McpElicitationConstOption";
|
|
196
|
+
export type { McpElicitationEnumSchema } from "./McpElicitationEnumSchema";
|
|
197
|
+
export type { McpElicitationLegacyTitledEnumSchema } from "./McpElicitationLegacyTitledEnumSchema";
|
|
198
|
+
export type { McpElicitationMultiSelectEnumSchema } from "./McpElicitationMultiSelectEnumSchema";
|
|
199
|
+
export type { McpElicitationNumberSchema } from "./McpElicitationNumberSchema";
|
|
200
|
+
export type { McpElicitationNumberType } from "./McpElicitationNumberType";
|
|
201
|
+
export type { McpElicitationObjectType } from "./McpElicitationObjectType";
|
|
202
|
+
export type { McpElicitationPrimitiveSchema } from "./McpElicitationPrimitiveSchema";
|
|
203
|
+
export type { McpElicitationSchema } from "./McpElicitationSchema";
|
|
204
|
+
export type { McpElicitationSingleSelectEnumSchema } from "./McpElicitationSingleSelectEnumSchema";
|
|
205
|
+
export type { McpElicitationStringFormat } from "./McpElicitationStringFormat";
|
|
206
|
+
export type { McpElicitationStringSchema } from "./McpElicitationStringSchema";
|
|
207
|
+
export type { McpElicitationStringType } from "./McpElicitationStringType";
|
|
208
|
+
export type { McpElicitationTitledEnumItems } from "./McpElicitationTitledEnumItems";
|
|
209
|
+
export type { McpElicitationTitledMultiSelectEnumSchema } from "./McpElicitationTitledMultiSelectEnumSchema";
|
|
210
|
+
export type { McpElicitationTitledSingleSelectEnumSchema } from "./McpElicitationTitledSingleSelectEnumSchema";
|
|
211
|
+
export type { McpElicitationUntitledEnumItems } from "./McpElicitationUntitledEnumItems";
|
|
212
|
+
export type { McpElicitationUntitledMultiSelectEnumSchema } from "./McpElicitationUntitledMultiSelectEnumSchema";
|
|
213
|
+
export type { McpElicitationUntitledSingleSelectEnumSchema } from "./McpElicitationUntitledSingleSelectEnumSchema";
|
|
214
|
+
export type { McpResourceReadParams } from "./McpResourceReadParams";
|
|
215
|
+
export type { McpResourceReadResponse } from "./McpResourceReadResponse";
|
|
216
|
+
export type { McpServerElicitationAction } from "./McpServerElicitationAction";
|
|
217
|
+
export type { McpServerElicitationRequestParams } from "./McpServerElicitationRequestParams";
|
|
218
|
+
export type { McpServerElicitationRequestResponse } from "./McpServerElicitationRequestResponse";
|
|
219
|
+
export type { McpServerMigration } from "./McpServerMigration";
|
|
220
|
+
export type { McpServerOauthLoginCompletedNotification } from "./McpServerOauthLoginCompletedNotification";
|
|
221
|
+
export type { McpServerOauthLoginParams } from "./McpServerOauthLoginParams";
|
|
222
|
+
export type { McpServerOauthLoginResponse } from "./McpServerOauthLoginResponse";
|
|
223
|
+
export type { McpServerRefreshResponse } from "./McpServerRefreshResponse";
|
|
224
|
+
export type { McpServerStartupState } from "./McpServerStartupState";
|
|
225
|
+
export type { McpServerStatus } from "./McpServerStatus";
|
|
226
|
+
export type { McpServerStatusDetail } from "./McpServerStatusDetail";
|
|
227
|
+
export type { McpServerStatusUpdatedNotification } from "./McpServerStatusUpdatedNotification";
|
|
228
|
+
export type { McpServerToolCallParams } from "./McpServerToolCallParams";
|
|
229
|
+
export type { McpServerToolCallResponse } from "./McpServerToolCallResponse";
|
|
230
|
+
export type { McpToolCallError } from "./McpToolCallError";
|
|
231
|
+
export type { McpToolCallProgressNotification } from "./McpToolCallProgressNotification";
|
|
232
|
+
export type { McpToolCallResult } from "./McpToolCallResult";
|
|
233
|
+
export type { McpToolCallStatus } from "./McpToolCallStatus";
|
|
234
|
+
export type { MemoryCitation } from "./MemoryCitation";
|
|
235
|
+
export type { MemoryCitationEntry } from "./MemoryCitationEntry";
|
|
236
|
+
export type { MemoryResetResponse } from "./MemoryResetResponse";
|
|
237
|
+
export type { MergeStrategy } from "./MergeStrategy";
|
|
238
|
+
export type { MigrationDetails } from "./MigrationDetails";
|
|
239
|
+
export type { MockExperimentalMethodParams } from "./MockExperimentalMethodParams";
|
|
240
|
+
export type { MockExperimentalMethodResponse } from "./MockExperimentalMethodResponse";
|
|
241
|
+
export type { Model } from "./Model";
|
|
242
|
+
export type { ModelAvailabilityNux } from "./ModelAvailabilityNux";
|
|
243
|
+
export type { ModelListParams } from "./ModelListParams";
|
|
244
|
+
export type { ModelListResponse } from "./ModelListResponse";
|
|
245
|
+
export type { ModelProviderCapabilitiesReadParams } from "./ModelProviderCapabilitiesReadParams";
|
|
246
|
+
export type { ModelProviderCapabilitiesReadResponse } from "./ModelProviderCapabilitiesReadResponse";
|
|
247
|
+
export type { ModelRerouteReason } from "./ModelRerouteReason";
|
|
248
|
+
export type { ModelReroutedNotification } from "./ModelReroutedNotification";
|
|
249
|
+
export type { ModelServiceTier } from "./ModelServiceTier";
|
|
250
|
+
export type { ModelUpgradeInfo } from "./ModelUpgradeInfo";
|
|
251
|
+
export type { ModelVerification } from "./ModelVerification";
|
|
252
|
+
export type { ModelVerificationNotification } from "./ModelVerificationNotification";
|
|
253
|
+
export type { NetworkAccess } from "./NetworkAccess";
|
|
254
|
+
export type { NetworkApprovalContext } from "./NetworkApprovalContext";
|
|
255
|
+
export type { NetworkApprovalProtocol } from "./NetworkApprovalProtocol";
|
|
256
|
+
export type { NetworkDomainPermission } from "./NetworkDomainPermission";
|
|
257
|
+
export type { NetworkPolicyAmendment } from "./NetworkPolicyAmendment";
|
|
258
|
+
export type { NetworkPolicyRuleAction } from "./NetworkPolicyRuleAction";
|
|
259
|
+
export type { NetworkRequirements } from "./NetworkRequirements";
|
|
260
|
+
export type { NetworkUnixSocketPermission } from "./NetworkUnixSocketPermission";
|
|
261
|
+
export type { NonSteerableTurnKind } from "./NonSteerableTurnKind";
|
|
262
|
+
export type { OverriddenMetadata } from "./OverriddenMetadata";
|
|
263
|
+
export type { PatchApplyStatus } from "./PatchApplyStatus";
|
|
264
|
+
export type { PatchChangeKind } from "./PatchChangeKind";
|
|
265
|
+
export type { PermissionGrantScope } from "./PermissionGrantScope";
|
|
266
|
+
export type { PermissionProfileListParams } from "./PermissionProfileListParams";
|
|
267
|
+
export type { PermissionProfileListResponse } from "./PermissionProfileListResponse";
|
|
268
|
+
export type { PermissionProfileSummary } from "./PermissionProfileSummary";
|
|
269
|
+
export type { PermissionsRequestApprovalParams } from "./PermissionsRequestApprovalParams";
|
|
270
|
+
export type { PermissionsRequestApprovalResponse } from "./PermissionsRequestApprovalResponse";
|
|
271
|
+
export type { PlanDeltaNotification } from "./PlanDeltaNotification";
|
|
272
|
+
export type { PluginAuthPolicy } from "./PluginAuthPolicy";
|
|
273
|
+
export type { PluginAvailability } from "./PluginAvailability";
|
|
274
|
+
export type { PluginDetail } from "./PluginDetail";
|
|
275
|
+
export type { PluginHookSummary } from "./PluginHookSummary";
|
|
276
|
+
export type { PluginInstallParams } from "./PluginInstallParams";
|
|
277
|
+
export type { PluginInstallPolicy } from "./PluginInstallPolicy";
|
|
278
|
+
export type { PluginInstallResponse } from "./PluginInstallResponse";
|
|
279
|
+
export type { PluginInstalledParams } from "./PluginInstalledParams";
|
|
280
|
+
export type { PluginInstalledResponse } from "./PluginInstalledResponse";
|
|
281
|
+
export type { PluginInterface } from "./PluginInterface";
|
|
282
|
+
export type { PluginListMarketplaceKind } from "./PluginListMarketplaceKind";
|
|
283
|
+
export type { PluginListParams } from "./PluginListParams";
|
|
284
|
+
export type { PluginListResponse } from "./PluginListResponse";
|
|
285
|
+
export type { PluginMarketplaceEntry } from "./PluginMarketplaceEntry";
|
|
286
|
+
export type { PluginReadParams } from "./PluginReadParams";
|
|
287
|
+
export type { PluginReadResponse } from "./PluginReadResponse";
|
|
288
|
+
export type { PluginShareCheckoutParams } from "./PluginShareCheckoutParams";
|
|
289
|
+
export type { PluginShareCheckoutResponse } from "./PluginShareCheckoutResponse";
|
|
290
|
+
export type { PluginShareContext } from "./PluginShareContext";
|
|
291
|
+
export type { PluginShareDeleteParams } from "./PluginShareDeleteParams";
|
|
292
|
+
export type { PluginShareDeleteResponse } from "./PluginShareDeleteResponse";
|
|
293
|
+
export type { PluginShareDiscoverability } from "./PluginShareDiscoverability";
|
|
294
|
+
export type { PluginShareListItem } from "./PluginShareListItem";
|
|
295
|
+
export type { PluginShareListParams } from "./PluginShareListParams";
|
|
296
|
+
export type { PluginShareListResponse } from "./PluginShareListResponse";
|
|
297
|
+
export type { PluginSharePrincipal } from "./PluginSharePrincipal";
|
|
298
|
+
export type { PluginSharePrincipalRole } from "./PluginSharePrincipalRole";
|
|
299
|
+
export type { PluginSharePrincipalType } from "./PluginSharePrincipalType";
|
|
300
|
+
export type { PluginShareSaveParams } from "./PluginShareSaveParams";
|
|
301
|
+
export type { PluginShareSaveResponse } from "./PluginShareSaveResponse";
|
|
302
|
+
export type { PluginShareTarget } from "./PluginShareTarget";
|
|
303
|
+
export type { PluginShareTargetRole } from "./PluginShareTargetRole";
|
|
304
|
+
export type { PluginShareUpdateDiscoverability } from "./PluginShareUpdateDiscoverability";
|
|
305
|
+
export type { PluginShareUpdateTargetsParams } from "./PluginShareUpdateTargetsParams";
|
|
306
|
+
export type { PluginShareUpdateTargetsResponse } from "./PluginShareUpdateTargetsResponse";
|
|
307
|
+
export type { PluginSkillReadParams } from "./PluginSkillReadParams";
|
|
308
|
+
export type { PluginSkillReadResponse } from "./PluginSkillReadResponse";
|
|
309
|
+
export type { PluginSource } from "./PluginSource";
|
|
310
|
+
export type { PluginSummary } from "./PluginSummary";
|
|
311
|
+
export type { PluginUninstallParams } from "./PluginUninstallParams";
|
|
312
|
+
export type { PluginUninstallResponse } from "./PluginUninstallResponse";
|
|
313
|
+
export type { PluginsMigration } from "./PluginsMigration";
|
|
314
|
+
export type { ProcessExitedNotification } from "./ProcessExitedNotification";
|
|
315
|
+
export type { ProcessKillParams } from "./ProcessKillParams";
|
|
316
|
+
export type { ProcessKillResponse } from "./ProcessKillResponse";
|
|
317
|
+
export type { ProcessOutputDeltaNotification } from "./ProcessOutputDeltaNotification";
|
|
318
|
+
export type { ProcessOutputStream } from "./ProcessOutputStream";
|
|
319
|
+
export type { ProcessResizePtyParams } from "./ProcessResizePtyParams";
|
|
320
|
+
export type { ProcessResizePtyResponse } from "./ProcessResizePtyResponse";
|
|
321
|
+
export type { ProcessSpawnParams } from "./ProcessSpawnParams";
|
|
322
|
+
export type { ProcessSpawnResponse } from "./ProcessSpawnResponse";
|
|
323
|
+
export type { ProcessTerminalSize } from "./ProcessTerminalSize";
|
|
324
|
+
export type { ProcessWriteStdinParams } from "./ProcessWriteStdinParams";
|
|
325
|
+
export type { ProcessWriteStdinResponse } from "./ProcessWriteStdinResponse";
|
|
326
|
+
export type { ProfileV2 } from "./ProfileV2";
|
|
327
|
+
export type { RateLimitReachedType } from "./RateLimitReachedType";
|
|
328
|
+
export type { RateLimitSnapshot } from "./RateLimitSnapshot";
|
|
329
|
+
export type { RateLimitWindow } from "./RateLimitWindow";
|
|
330
|
+
export type { RawResponseItemCompletedNotification } from "./RawResponseItemCompletedNotification";
|
|
331
|
+
export type { ReasoningEffortOption } from "./ReasoningEffortOption";
|
|
332
|
+
export type { ReasoningSummaryPartAddedNotification } from "./ReasoningSummaryPartAddedNotification";
|
|
333
|
+
export type { ReasoningSummaryTextDeltaNotification } from "./ReasoningSummaryTextDeltaNotification";
|
|
334
|
+
export type { ReasoningTextDeltaNotification } from "./ReasoningTextDeltaNotification";
|
|
335
|
+
export type { RemoteControlConnectionStatus } from "./RemoteControlConnectionStatus";
|
|
336
|
+
export type { RemoteControlDisableResponse } from "./RemoteControlDisableResponse";
|
|
337
|
+
export type { RemoteControlEnableResponse } from "./RemoteControlEnableResponse";
|
|
338
|
+
export type { RemoteControlStatusChangedNotification } from "./RemoteControlStatusChangedNotification";
|
|
339
|
+
export type { RemoteControlStatusReadResponse } from "./RemoteControlStatusReadResponse";
|
|
340
|
+
export type { RequestPermissionProfile } from "./RequestPermissionProfile";
|
|
341
|
+
export type { ResidencyRequirement } from "./ResidencyRequirement";
|
|
342
|
+
export type { ReviewDelivery } from "./ReviewDelivery";
|
|
343
|
+
export type { ReviewStartParams } from "./ReviewStartParams";
|
|
344
|
+
export type { ReviewStartResponse } from "./ReviewStartResponse";
|
|
345
|
+
export type { ReviewTarget } from "./ReviewTarget";
|
|
346
|
+
export type { SandboxMode } from "./SandboxMode";
|
|
347
|
+
export type { SandboxPolicy } from "./SandboxPolicy";
|
|
348
|
+
export type { SandboxWorkspaceWrite } from "./SandboxWorkspaceWrite";
|
|
349
|
+
export type { SendAddCreditsNudgeEmailParams } from "./SendAddCreditsNudgeEmailParams";
|
|
350
|
+
export type { SendAddCreditsNudgeEmailResponse } from "./SendAddCreditsNudgeEmailResponse";
|
|
351
|
+
export type { ServerRequestResolvedNotification } from "./ServerRequestResolvedNotification";
|
|
352
|
+
export type { SessionMigration } from "./SessionMigration";
|
|
353
|
+
export type { SessionSource } from "./SessionSource";
|
|
354
|
+
export type { SkillDependencies } from "./SkillDependencies";
|
|
355
|
+
export type { SkillErrorInfo } from "./SkillErrorInfo";
|
|
356
|
+
export type { SkillInterface } from "./SkillInterface";
|
|
357
|
+
export type { SkillMetadata } from "./SkillMetadata";
|
|
358
|
+
export type { SkillScope } from "./SkillScope";
|
|
359
|
+
export type { SkillSummary } from "./SkillSummary";
|
|
360
|
+
export type { SkillToolDependency } from "./SkillToolDependency";
|
|
361
|
+
export type { SkillsChangedNotification } from "./SkillsChangedNotification";
|
|
362
|
+
export type { SkillsConfigWriteParams } from "./SkillsConfigWriteParams";
|
|
363
|
+
export type { SkillsConfigWriteResponse } from "./SkillsConfigWriteResponse";
|
|
364
|
+
export type { SkillsListEntry } from "./SkillsListEntry";
|
|
365
|
+
export type { SkillsListParams } from "./SkillsListParams";
|
|
366
|
+
export type { SkillsListResponse } from "./SkillsListResponse";
|
|
367
|
+
export type { SortDirection } from "./SortDirection";
|
|
368
|
+
export type { SubagentMigration } from "./SubagentMigration";
|
|
369
|
+
export type { TerminalInteractionNotification } from "./TerminalInteractionNotification";
|
|
370
|
+
export type { TextElement } from "./TextElement";
|
|
371
|
+
export type { TextPosition } from "./TextPosition";
|
|
372
|
+
export type { TextRange } from "./TextRange";
|
|
373
|
+
export type { Thread } from "./Thread";
|
|
374
|
+
export type { ThreadActiveFlag } from "./ThreadActiveFlag";
|
|
375
|
+
export type { ThreadApproveGuardianDeniedActionParams } from "./ThreadApproveGuardianDeniedActionParams";
|
|
376
|
+
export type { ThreadApproveGuardianDeniedActionResponse } from "./ThreadApproveGuardianDeniedActionResponse";
|
|
377
|
+
export type { ThreadArchiveParams } from "./ThreadArchiveParams";
|
|
378
|
+
export type { ThreadArchiveResponse } from "./ThreadArchiveResponse";
|
|
379
|
+
export type { ThreadArchivedNotification } from "./ThreadArchivedNotification";
|
|
380
|
+
export type { ThreadBackgroundTerminalsCleanParams } from "./ThreadBackgroundTerminalsCleanParams";
|
|
381
|
+
export type { ThreadBackgroundTerminalsCleanResponse } from "./ThreadBackgroundTerminalsCleanResponse";
|
|
382
|
+
export type { ThreadClosedNotification } from "./ThreadClosedNotification";
|
|
383
|
+
export type { ThreadCompactStartParams } from "./ThreadCompactStartParams";
|
|
384
|
+
export type { ThreadCompactStartResponse } from "./ThreadCompactStartResponse";
|
|
385
|
+
export type { ThreadDecrementElicitationParams } from "./ThreadDecrementElicitationParams";
|
|
386
|
+
export type { ThreadDecrementElicitationResponse } from "./ThreadDecrementElicitationResponse";
|
|
387
|
+
export type { ThreadForkParams } from "./ThreadForkParams";
|
|
388
|
+
export type { ThreadForkResponse } from "./ThreadForkResponse";
|
|
389
|
+
export type { ThreadGoal } from "./ThreadGoal";
|
|
390
|
+
export type { ThreadGoalClearParams } from "./ThreadGoalClearParams";
|
|
391
|
+
export type { ThreadGoalClearResponse } from "./ThreadGoalClearResponse";
|
|
392
|
+
export type { ThreadGoalClearedNotification } from "./ThreadGoalClearedNotification";
|
|
393
|
+
export type { ThreadGoalGetParams } from "./ThreadGoalGetParams";
|
|
394
|
+
export type { ThreadGoalGetResponse } from "./ThreadGoalGetResponse";
|
|
395
|
+
export type { ThreadGoalSetParams } from "./ThreadGoalSetParams";
|
|
396
|
+
export type { ThreadGoalSetResponse } from "./ThreadGoalSetResponse";
|
|
397
|
+
export type { ThreadGoalStatus } from "./ThreadGoalStatus";
|
|
398
|
+
export type { ThreadGoalUpdatedNotification } from "./ThreadGoalUpdatedNotification";
|
|
399
|
+
export type { ThreadIncrementElicitationParams } from "./ThreadIncrementElicitationParams";
|
|
400
|
+
export type { ThreadIncrementElicitationResponse } from "./ThreadIncrementElicitationResponse";
|
|
401
|
+
export type { ThreadInjectItemsParams } from "./ThreadInjectItemsParams";
|
|
402
|
+
export type { ThreadInjectItemsResponse } from "./ThreadInjectItemsResponse";
|
|
403
|
+
export type { ThreadItem } from "./ThreadItem";
|
|
404
|
+
export type { ThreadListParams } from "./ThreadListParams";
|
|
405
|
+
export type { ThreadListResponse } from "./ThreadListResponse";
|
|
406
|
+
export type { ThreadLoadedListParams } from "./ThreadLoadedListParams";
|
|
407
|
+
export type { ThreadLoadedListResponse } from "./ThreadLoadedListResponse";
|
|
408
|
+
export type { ThreadMemoryModeSetParams } from "./ThreadMemoryModeSetParams";
|
|
409
|
+
export type { ThreadMemoryModeSetResponse } from "./ThreadMemoryModeSetResponse";
|
|
410
|
+
export type { ThreadMetadataGitInfoUpdateParams } from "./ThreadMetadataGitInfoUpdateParams";
|
|
411
|
+
export type { ThreadMetadataUpdateParams } from "./ThreadMetadataUpdateParams";
|
|
412
|
+
export type { ThreadMetadataUpdateResponse } from "./ThreadMetadataUpdateResponse";
|
|
413
|
+
export type { ThreadNameUpdatedNotification } from "./ThreadNameUpdatedNotification";
|
|
414
|
+
export type { ThreadReadParams } from "./ThreadReadParams";
|
|
415
|
+
export type { ThreadReadResponse } from "./ThreadReadResponse";
|
|
416
|
+
export type { ThreadRealtimeAppendAudioParams } from "./ThreadRealtimeAppendAudioParams";
|
|
417
|
+
export type { ThreadRealtimeAppendAudioResponse } from "./ThreadRealtimeAppendAudioResponse";
|
|
418
|
+
export type { ThreadRealtimeAppendTextParams } from "./ThreadRealtimeAppendTextParams";
|
|
419
|
+
export type { ThreadRealtimeAppendTextResponse } from "./ThreadRealtimeAppendTextResponse";
|
|
420
|
+
export type { ThreadRealtimeAudioChunk } from "./ThreadRealtimeAudioChunk";
|
|
421
|
+
export type { ThreadRealtimeClosedNotification } from "./ThreadRealtimeClosedNotification";
|
|
422
|
+
export type { ThreadRealtimeErrorNotification } from "./ThreadRealtimeErrorNotification";
|
|
423
|
+
export type { ThreadRealtimeItemAddedNotification } from "./ThreadRealtimeItemAddedNotification";
|
|
424
|
+
export type { ThreadRealtimeListVoicesParams } from "./ThreadRealtimeListVoicesParams";
|
|
425
|
+
export type { ThreadRealtimeListVoicesResponse } from "./ThreadRealtimeListVoicesResponse";
|
|
426
|
+
export type { ThreadRealtimeOutputAudioDeltaNotification } from "./ThreadRealtimeOutputAudioDeltaNotification";
|
|
427
|
+
export type { ThreadRealtimeSdpNotification } from "./ThreadRealtimeSdpNotification";
|
|
428
|
+
export type { ThreadRealtimeStartParams } from "./ThreadRealtimeStartParams";
|
|
429
|
+
export type { ThreadRealtimeStartResponse } from "./ThreadRealtimeStartResponse";
|
|
430
|
+
export type { ThreadRealtimeStartTransport } from "./ThreadRealtimeStartTransport";
|
|
431
|
+
export type { ThreadRealtimeStartedNotification } from "./ThreadRealtimeStartedNotification";
|
|
432
|
+
export type { ThreadRealtimeStopParams } from "./ThreadRealtimeStopParams";
|
|
433
|
+
export type { ThreadRealtimeStopResponse } from "./ThreadRealtimeStopResponse";
|
|
434
|
+
export type { ThreadRealtimeTranscriptDeltaNotification } from "./ThreadRealtimeTranscriptDeltaNotification";
|
|
435
|
+
export type { ThreadRealtimeTranscriptDoneNotification } from "./ThreadRealtimeTranscriptDoneNotification";
|
|
436
|
+
export type { ThreadResumeParams } from "./ThreadResumeParams";
|
|
437
|
+
export type { ThreadResumeResponse } from "./ThreadResumeResponse";
|
|
438
|
+
export type { ThreadRollbackParams } from "./ThreadRollbackParams";
|
|
439
|
+
export type { ThreadRollbackResponse } from "./ThreadRollbackResponse";
|
|
440
|
+
export type { ThreadSetNameParams } from "./ThreadSetNameParams";
|
|
441
|
+
export type { ThreadSetNameResponse } from "./ThreadSetNameResponse";
|
|
442
|
+
export type { ThreadSettings } from "./ThreadSettings";
|
|
443
|
+
export type { ThreadSettingsUpdateParams } from "./ThreadSettingsUpdateParams";
|
|
444
|
+
export type { ThreadSettingsUpdateResponse } from "./ThreadSettingsUpdateResponse";
|
|
445
|
+
export type { ThreadSettingsUpdatedNotification } from "./ThreadSettingsUpdatedNotification";
|
|
446
|
+
export type { ThreadShellCommandParams } from "./ThreadShellCommandParams";
|
|
447
|
+
export type { ThreadShellCommandResponse } from "./ThreadShellCommandResponse";
|
|
448
|
+
export type { ThreadSortKey } from "./ThreadSortKey";
|
|
449
|
+
export type { ThreadSource } from "./ThreadSource";
|
|
450
|
+
export type { ThreadSourceKind } from "./ThreadSourceKind";
|
|
451
|
+
export type { ThreadStartParams } from "./ThreadStartParams";
|
|
452
|
+
export type { ThreadStartResponse } from "./ThreadStartResponse";
|
|
453
|
+
export type { ThreadStartSource } from "./ThreadStartSource";
|
|
454
|
+
export type { ThreadStartedNotification } from "./ThreadStartedNotification";
|
|
455
|
+
export type { ThreadStatus } from "./ThreadStatus";
|
|
456
|
+
export type { ThreadStatusChangedNotification } from "./ThreadStatusChangedNotification";
|
|
457
|
+
export type { ThreadTokenUsage } from "./ThreadTokenUsage";
|
|
458
|
+
export type { ThreadTokenUsageUpdatedNotification } from "./ThreadTokenUsageUpdatedNotification";
|
|
459
|
+
export type { ThreadTurnsItemsListParams } from "./ThreadTurnsItemsListParams";
|
|
460
|
+
export type { ThreadTurnsItemsListResponse } from "./ThreadTurnsItemsListResponse";
|
|
461
|
+
export type { ThreadTurnsListParams } from "./ThreadTurnsListParams";
|
|
462
|
+
export type { ThreadTurnsListResponse } from "./ThreadTurnsListResponse";
|
|
463
|
+
export type { ThreadUnarchiveParams } from "./ThreadUnarchiveParams";
|
|
464
|
+
export type { ThreadUnarchiveResponse } from "./ThreadUnarchiveResponse";
|
|
465
|
+
export type { ThreadUnarchivedNotification } from "./ThreadUnarchivedNotification";
|
|
466
|
+
export type { ThreadUnsubscribeParams } from "./ThreadUnsubscribeParams";
|
|
467
|
+
export type { ThreadUnsubscribeResponse } from "./ThreadUnsubscribeResponse";
|
|
468
|
+
export type { ThreadUnsubscribeStatus } from "./ThreadUnsubscribeStatus";
|
|
469
|
+
export type { TokenUsageBreakdown } from "./TokenUsageBreakdown";
|
|
470
|
+
export type { ToolRequestUserInputAnswer } from "./ToolRequestUserInputAnswer";
|
|
471
|
+
export type { ToolRequestUserInputOption } from "./ToolRequestUserInputOption";
|
|
472
|
+
export type { ToolRequestUserInputParams } from "./ToolRequestUserInputParams";
|
|
473
|
+
export type { ToolRequestUserInputQuestion } from "./ToolRequestUserInputQuestion";
|
|
474
|
+
export type { ToolRequestUserInputResponse } from "./ToolRequestUserInputResponse";
|
|
475
|
+
export type { ToolsV2 } from "./ToolsV2";
|
|
476
|
+
export type { Turn } from "./Turn";
|
|
477
|
+
export type { TurnCompletedNotification } from "./TurnCompletedNotification";
|
|
478
|
+
export type { TurnDiffUpdatedNotification } from "./TurnDiffUpdatedNotification";
|
|
479
|
+
export type { TurnEnvironmentParams } from "./TurnEnvironmentParams";
|
|
480
|
+
export type { TurnError } from "./TurnError";
|
|
481
|
+
export type { TurnInterruptParams } from "./TurnInterruptParams";
|
|
482
|
+
export type { TurnInterruptResponse } from "./TurnInterruptResponse";
|
|
483
|
+
export type { TurnItemsView } from "./TurnItemsView";
|
|
484
|
+
export type { TurnPlanStep } from "./TurnPlanStep";
|
|
485
|
+
export type { TurnPlanStepStatus } from "./TurnPlanStepStatus";
|
|
486
|
+
export type { TurnPlanUpdatedNotification } from "./TurnPlanUpdatedNotification";
|
|
487
|
+
export type { TurnStartParams } from "./TurnStartParams";
|
|
488
|
+
export type { TurnStartResponse } from "./TurnStartResponse";
|
|
489
|
+
export type { TurnStartedNotification } from "./TurnStartedNotification";
|
|
490
|
+
export type { TurnStatus } from "./TurnStatus";
|
|
491
|
+
export type { TurnSteerParams } from "./TurnSteerParams";
|
|
492
|
+
export type { TurnSteerResponse } from "./TurnSteerResponse";
|
|
493
|
+
export type { UserInput } from "./UserInput";
|
|
494
|
+
export type { WarningNotification } from "./WarningNotification";
|
|
495
|
+
export type { WebSearchAction } from "./WebSearchAction";
|
|
496
|
+
export type { WindowsSandboxReadiness } from "./WindowsSandboxReadiness";
|
|
497
|
+
export type { WindowsSandboxReadinessResponse } from "./WindowsSandboxReadinessResponse";
|
|
498
|
+
export type { WindowsSandboxSetupCompletedNotification } from "./WindowsSandboxSetupCompletedNotification";
|
|
499
|
+
export type { WindowsSandboxSetupMode } from "./WindowsSandboxSetupMode";
|
|
500
|
+
export type { WindowsSandboxSetupStartParams } from "./WindowsSandboxSetupStartParams";
|
|
501
|
+
export type { WindowsSandboxSetupStartResponse } from "./WindowsSandboxSetupStartResponse";
|
|
502
|
+
export type { WindowsWorldWritableWarningNotification } from "./WindowsWorldWritableWarningNotification";
|
|
503
|
+
export type { WriteStatus } from "./WriteStatus";
|
package/src/column.ts
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The `column` shell-out layer.
|
|
3
|
+
*
|
|
4
|
+
* `tm states` (and, later, `tm history`) render their tables by piping
|
|
5
|
+
* tab-separated rows through `column -t`. The native verbs keep the row
|
|
6
|
+
* *logic* in the core but delegate the final alignment to the real `column`
|
|
7
|
+
* binary, the way `ls` delegates the session query to `tmux`.
|
|
8
|
+
*
|
|
9
|
+
* `column` is not reimplemented in TypeScript on purpose: how it measures a
|
|
10
|
+
* field's width — bytes, characters, or display columns — is implementation-
|
|
11
|
+
* and locale-dependent and differs between the BSD (macOS) and GNU (Linux)
|
|
12
|
+
* builds, and `column`'s exact output *is* the behavior Phase B must preserve.
|
|
13
|
+
* A hand-written aligner counting code units could not stay faithful to it;
|
|
14
|
+
* the installed binary, whichever build it is, is faithful to itself.
|
|
15
|
+
* `column` is a presentation backend here, the way `tmux` is the session
|
|
16
|
+
* backend.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
import { spawnCapture } from './proc'
|
|
20
|
+
|
|
21
|
+
/** The outcome of one `column` invocation — the same shape `runTmux` returns. */
|
|
22
|
+
export interface ColumnResult {
|
|
23
|
+
/** Process exit code. */
|
|
24
|
+
code: number
|
|
25
|
+
/** Captured standard output — the aligned table. */
|
|
26
|
+
stdout: string
|
|
27
|
+
/** Captured standard error. */
|
|
28
|
+
stderr: string
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Aligns tab-separated rows. Injectable: native verbs depend on this type,
|
|
33
|
+
* not the concrete function, so a unit test can supply a stub.
|
|
34
|
+
*/
|
|
35
|
+
export type ColumnRunner = (input: string) => Promise<ColumnResult>
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* The production `ColumnRunner`: pipe `input` through `column -t -s <TAB>` —
|
|
39
|
+
* the exact invocation `tm` uses — and capture its exit code, stdout, and
|
|
40
|
+
* stderr. The caller propagates a non-zero exit; `tm`'s `cmd_states` does the
|
|
41
|
+
* same, its `column` pipeline running under `set -o pipefail`.
|
|
42
|
+
*/
|
|
43
|
+
export const runColumn: ColumnRunner = (input) =>
|
|
44
|
+
spawnCapture(['column', '-t', '-s', '\t'], { stdin: input })
|