@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,131 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { EMPTY_BUFFER } = require('./constants');
|
|
4
|
+
|
|
5
|
+
const FastBuffer = Buffer[Symbol.species];
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Merges an array of buffers into a new buffer.
|
|
9
|
+
*
|
|
10
|
+
* @param {Buffer[]} list The array of buffers to concat
|
|
11
|
+
* @param {Number} totalLength The total length of buffers in the list
|
|
12
|
+
* @return {Buffer} The resulting buffer
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
function concat(list, totalLength) {
|
|
16
|
+
if (list.length === 0) return EMPTY_BUFFER;
|
|
17
|
+
if (list.length === 1) return list[0];
|
|
18
|
+
|
|
19
|
+
const target = Buffer.allocUnsafe(totalLength);
|
|
20
|
+
let offset = 0;
|
|
21
|
+
|
|
22
|
+
for (let i = 0; i < list.length; i++) {
|
|
23
|
+
const buf = list[i];
|
|
24
|
+
target.set(buf, offset);
|
|
25
|
+
offset += buf.length;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
if (offset < totalLength) {
|
|
29
|
+
return new FastBuffer(target.buffer, target.byteOffset, offset);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return target;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Masks a buffer using the given mask.
|
|
37
|
+
*
|
|
38
|
+
* @param {Buffer} source The buffer to mask
|
|
39
|
+
* @param {Buffer} mask The mask to use
|
|
40
|
+
* @param {Buffer} output The buffer where to store the result
|
|
41
|
+
* @param {Number} offset The offset at which to start writing
|
|
42
|
+
* @param {Number} length The number of bytes to mask.
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
function _mask(source, mask, output, offset, length) {
|
|
46
|
+
for (let i = 0; i < length; i++) {
|
|
47
|
+
output[offset + i] = source[i] ^ mask[i & 3];
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Unmasks a buffer using the given mask.
|
|
53
|
+
*
|
|
54
|
+
* @param {Buffer} buffer The buffer to unmask
|
|
55
|
+
* @param {Buffer} mask The mask to use
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
function _unmask(buffer, mask) {
|
|
59
|
+
for (let i = 0; i < buffer.length; i++) {
|
|
60
|
+
buffer[i] ^= mask[i & 3];
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Converts a buffer to an `ArrayBuffer`.
|
|
66
|
+
*
|
|
67
|
+
* @param {Buffer} buf The buffer to convert
|
|
68
|
+
* @return {ArrayBuffer} Converted buffer
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
function toArrayBuffer(buf) {
|
|
72
|
+
if (buf.length === buf.buffer.byteLength) {
|
|
73
|
+
return buf.buffer;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.length);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Converts `data` to a `Buffer`.
|
|
81
|
+
*
|
|
82
|
+
* @param {*} data The data to convert
|
|
83
|
+
* @return {Buffer} The buffer
|
|
84
|
+
* @throws {TypeError}
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
function toBuffer(data) {
|
|
88
|
+
toBuffer.readOnly = true;
|
|
89
|
+
|
|
90
|
+
if (Buffer.isBuffer(data)) return data;
|
|
91
|
+
|
|
92
|
+
let buf;
|
|
93
|
+
|
|
94
|
+
if (data instanceof ArrayBuffer) {
|
|
95
|
+
buf = new FastBuffer(data);
|
|
96
|
+
} else if (ArrayBuffer.isView(data)) {
|
|
97
|
+
buf = new FastBuffer(data.buffer, data.byteOffset, data.byteLength);
|
|
98
|
+
} else {
|
|
99
|
+
buf = Buffer.from(data);
|
|
100
|
+
toBuffer.readOnly = false;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return buf;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
module.exports = {
|
|
107
|
+
concat,
|
|
108
|
+
mask: _mask,
|
|
109
|
+
toArrayBuffer,
|
|
110
|
+
toBuffer,
|
|
111
|
+
unmask: _unmask
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
/* istanbul ignore else */
|
|
115
|
+
if (!process.env.WS_NO_BUFFER_UTIL) {
|
|
116
|
+
try {
|
|
117
|
+
const bufferUtil = require('bufferutil');
|
|
118
|
+
|
|
119
|
+
module.exports.mask = function (source, mask, output, offset, length) {
|
|
120
|
+
if (length < 48) _mask(source, mask, output, offset, length);
|
|
121
|
+
else bufferUtil.mask(source, mask, output, offset, length);
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
module.exports.unmask = function (buffer, mask) {
|
|
125
|
+
if (buffer.length < 32) _unmask(buffer, mask);
|
|
126
|
+
else bufferUtil.unmask(buffer, mask);
|
|
127
|
+
};
|
|
128
|
+
} catch (e) {
|
|
129
|
+
// Continue regardless of the error.
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const BINARY_TYPES = ['nodebuffer', 'arraybuffer', 'fragments'];
|
|
4
|
+
const hasBlob = typeof Blob !== 'undefined';
|
|
5
|
+
|
|
6
|
+
if (hasBlob) BINARY_TYPES.push('blob');
|
|
7
|
+
|
|
8
|
+
module.exports = {
|
|
9
|
+
BINARY_TYPES,
|
|
10
|
+
CLOSE_TIMEOUT: 30000,
|
|
11
|
+
EMPTY_BUFFER: Buffer.alloc(0),
|
|
12
|
+
GUID: '258EAFA5-E914-47DA-95CA-C5AB0DC85B11',
|
|
13
|
+
hasBlob,
|
|
14
|
+
kForOnEventAttribute: Symbol('kIsForOnEventAttribute'),
|
|
15
|
+
kListener: Symbol('kListener'),
|
|
16
|
+
kStatusCode: Symbol('status-code'),
|
|
17
|
+
kWebSocket: Symbol('websocket'),
|
|
18
|
+
NOOP: () => {}
|
|
19
|
+
};
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { kForOnEventAttribute, kListener } = require('./constants');
|
|
4
|
+
|
|
5
|
+
const kCode = Symbol('kCode');
|
|
6
|
+
const kData = Symbol('kData');
|
|
7
|
+
const kError = Symbol('kError');
|
|
8
|
+
const kMessage = Symbol('kMessage');
|
|
9
|
+
const kReason = Symbol('kReason');
|
|
10
|
+
const kTarget = Symbol('kTarget');
|
|
11
|
+
const kType = Symbol('kType');
|
|
12
|
+
const kWasClean = Symbol('kWasClean');
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Class representing an event.
|
|
16
|
+
*/
|
|
17
|
+
class Event {
|
|
18
|
+
/**
|
|
19
|
+
* Create a new `Event`.
|
|
20
|
+
*
|
|
21
|
+
* @param {String} type The name of the event
|
|
22
|
+
* @throws {TypeError} If the `type` argument is not specified
|
|
23
|
+
*/
|
|
24
|
+
constructor(type) {
|
|
25
|
+
this[kTarget] = null;
|
|
26
|
+
this[kType] = type;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {*}
|
|
31
|
+
*/
|
|
32
|
+
get target() {
|
|
33
|
+
return this[kTarget];
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @type {String}
|
|
38
|
+
*/
|
|
39
|
+
get type() {
|
|
40
|
+
return this[kType];
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
Object.defineProperty(Event.prototype, 'target', { enumerable: true });
|
|
45
|
+
Object.defineProperty(Event.prototype, 'type', { enumerable: true });
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Class representing a close event.
|
|
49
|
+
*
|
|
50
|
+
* @extends Event
|
|
51
|
+
*/
|
|
52
|
+
class CloseEvent extends Event {
|
|
53
|
+
/**
|
|
54
|
+
* Create a new `CloseEvent`.
|
|
55
|
+
*
|
|
56
|
+
* @param {String} type The name of the event
|
|
57
|
+
* @param {Object} [options] A dictionary object that allows for setting
|
|
58
|
+
* attributes via object members of the same name
|
|
59
|
+
* @param {Number} [options.code=0] The status code explaining why the
|
|
60
|
+
* connection was closed
|
|
61
|
+
* @param {String} [options.reason=''] A human-readable string explaining why
|
|
62
|
+
* the connection was closed
|
|
63
|
+
* @param {Boolean} [options.wasClean=false] Indicates whether or not the
|
|
64
|
+
* connection was cleanly closed
|
|
65
|
+
*/
|
|
66
|
+
constructor(type, options = {}) {
|
|
67
|
+
super(type);
|
|
68
|
+
|
|
69
|
+
this[kCode] = options.code === undefined ? 0 : options.code;
|
|
70
|
+
this[kReason] = options.reason === undefined ? '' : options.reason;
|
|
71
|
+
this[kWasClean] = options.wasClean === undefined ? false : options.wasClean;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @type {Number}
|
|
76
|
+
*/
|
|
77
|
+
get code() {
|
|
78
|
+
return this[kCode];
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* @type {String}
|
|
83
|
+
*/
|
|
84
|
+
get reason() {
|
|
85
|
+
return this[kReason];
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* @type {Boolean}
|
|
90
|
+
*/
|
|
91
|
+
get wasClean() {
|
|
92
|
+
return this[kWasClean];
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
Object.defineProperty(CloseEvent.prototype, 'code', { enumerable: true });
|
|
97
|
+
Object.defineProperty(CloseEvent.prototype, 'reason', { enumerable: true });
|
|
98
|
+
Object.defineProperty(CloseEvent.prototype, 'wasClean', { enumerable: true });
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Class representing an error event.
|
|
102
|
+
*
|
|
103
|
+
* @extends Event
|
|
104
|
+
*/
|
|
105
|
+
class ErrorEvent extends Event {
|
|
106
|
+
/**
|
|
107
|
+
* Create a new `ErrorEvent`.
|
|
108
|
+
*
|
|
109
|
+
* @param {String} type The name of the event
|
|
110
|
+
* @param {Object} [options] A dictionary object that allows for setting
|
|
111
|
+
* attributes via object members of the same name
|
|
112
|
+
* @param {*} [options.error=null] The error that generated this event
|
|
113
|
+
* @param {String} [options.message=''] The error message
|
|
114
|
+
*/
|
|
115
|
+
constructor(type, options = {}) {
|
|
116
|
+
super(type);
|
|
117
|
+
|
|
118
|
+
this[kError] = options.error === undefined ? null : options.error;
|
|
119
|
+
this[kMessage] = options.message === undefined ? '' : options.message;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* @type {*}
|
|
124
|
+
*/
|
|
125
|
+
get error() {
|
|
126
|
+
return this[kError];
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* @type {String}
|
|
131
|
+
*/
|
|
132
|
+
get message() {
|
|
133
|
+
return this[kMessage];
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
Object.defineProperty(ErrorEvent.prototype, 'error', { enumerable: true });
|
|
138
|
+
Object.defineProperty(ErrorEvent.prototype, 'message', { enumerable: true });
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Class representing a message event.
|
|
142
|
+
*
|
|
143
|
+
* @extends Event
|
|
144
|
+
*/
|
|
145
|
+
class MessageEvent extends Event {
|
|
146
|
+
/**
|
|
147
|
+
* Create a new `MessageEvent`.
|
|
148
|
+
*
|
|
149
|
+
* @param {String} type The name of the event
|
|
150
|
+
* @param {Object} [options] A dictionary object that allows for setting
|
|
151
|
+
* attributes via object members of the same name
|
|
152
|
+
* @param {*} [options.data=null] The message content
|
|
153
|
+
*/
|
|
154
|
+
constructor(type, options = {}) {
|
|
155
|
+
super(type);
|
|
156
|
+
|
|
157
|
+
this[kData] = options.data === undefined ? null : options.data;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @type {*}
|
|
162
|
+
*/
|
|
163
|
+
get data() {
|
|
164
|
+
return this[kData];
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
Object.defineProperty(MessageEvent.prototype, 'data', { enumerable: true });
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* This provides methods for emulating the `EventTarget` interface. It's not
|
|
172
|
+
* meant to be used directly.
|
|
173
|
+
*
|
|
174
|
+
* @mixin
|
|
175
|
+
*/
|
|
176
|
+
const EventTarget = {
|
|
177
|
+
/**
|
|
178
|
+
* Register an event listener.
|
|
179
|
+
*
|
|
180
|
+
* @param {String} type A string representing the event type to listen for
|
|
181
|
+
* @param {(Function|Object)} handler The listener to add
|
|
182
|
+
* @param {Object} [options] An options object specifies characteristics about
|
|
183
|
+
* the event listener
|
|
184
|
+
* @param {Boolean} [options.once=false] A `Boolean` indicating that the
|
|
185
|
+
* listener should be invoked at most once after being added. If `true`,
|
|
186
|
+
* the listener would be automatically removed when invoked.
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
addEventListener(type, handler, options = {}) {
|
|
190
|
+
for (const listener of this.listeners(type)) {
|
|
191
|
+
if (
|
|
192
|
+
!options[kForOnEventAttribute] &&
|
|
193
|
+
listener[kListener] === handler &&
|
|
194
|
+
!listener[kForOnEventAttribute]
|
|
195
|
+
) {
|
|
196
|
+
return;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
let wrapper;
|
|
201
|
+
|
|
202
|
+
if (type === 'message') {
|
|
203
|
+
wrapper = function onMessage(data, isBinary) {
|
|
204
|
+
const event = new MessageEvent('message', {
|
|
205
|
+
data: isBinary ? data : data.toString()
|
|
206
|
+
});
|
|
207
|
+
|
|
208
|
+
event[kTarget] = this;
|
|
209
|
+
callListener(handler, this, event);
|
|
210
|
+
};
|
|
211
|
+
} else if (type === 'close') {
|
|
212
|
+
wrapper = function onClose(code, message) {
|
|
213
|
+
const event = new CloseEvent('close', {
|
|
214
|
+
code,
|
|
215
|
+
reason: message.toString(),
|
|
216
|
+
wasClean: this._closeFrameReceived && this._closeFrameSent
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
event[kTarget] = this;
|
|
220
|
+
callListener(handler, this, event);
|
|
221
|
+
};
|
|
222
|
+
} else if (type === 'error') {
|
|
223
|
+
wrapper = function onError(error) {
|
|
224
|
+
const event = new ErrorEvent('error', {
|
|
225
|
+
error,
|
|
226
|
+
message: error.message
|
|
227
|
+
});
|
|
228
|
+
|
|
229
|
+
event[kTarget] = this;
|
|
230
|
+
callListener(handler, this, event);
|
|
231
|
+
};
|
|
232
|
+
} else if (type === 'open') {
|
|
233
|
+
wrapper = function onOpen() {
|
|
234
|
+
const event = new Event('open');
|
|
235
|
+
|
|
236
|
+
event[kTarget] = this;
|
|
237
|
+
callListener(handler, this, event);
|
|
238
|
+
};
|
|
239
|
+
} else {
|
|
240
|
+
return;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
wrapper[kForOnEventAttribute] = !!options[kForOnEventAttribute];
|
|
244
|
+
wrapper[kListener] = handler;
|
|
245
|
+
|
|
246
|
+
if (options.once) {
|
|
247
|
+
this.once(type, wrapper);
|
|
248
|
+
} else {
|
|
249
|
+
this.on(type, wrapper);
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Remove an event listener.
|
|
255
|
+
*
|
|
256
|
+
* @param {String} type A string representing the event type to remove
|
|
257
|
+
* @param {(Function|Object)} handler The listener to remove
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
removeEventListener(type, handler) {
|
|
261
|
+
for (const listener of this.listeners(type)) {
|
|
262
|
+
if (listener[kListener] === handler && !listener[kForOnEventAttribute]) {
|
|
263
|
+
this.removeListener(type, listener);
|
|
264
|
+
break;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
};
|
|
269
|
+
|
|
270
|
+
module.exports = {
|
|
271
|
+
CloseEvent,
|
|
272
|
+
ErrorEvent,
|
|
273
|
+
Event,
|
|
274
|
+
EventTarget,
|
|
275
|
+
MessageEvent
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Call an event listener
|
|
280
|
+
*
|
|
281
|
+
* @param {(Function|Object)} listener The listener to call
|
|
282
|
+
* @param {*} thisArg The value to use as `this`` when calling the listener
|
|
283
|
+
* @param {Event} event The event to pass to the listener
|
|
284
|
+
* @private
|
|
285
|
+
*/
|
|
286
|
+
function callListener(listener, thisArg, event) {
|
|
287
|
+
if (typeof listener === 'object' && listener.handleEvent) {
|
|
288
|
+
listener.handleEvent.call(listener, event);
|
|
289
|
+
} else {
|
|
290
|
+
listener.call(thisArg, event);
|
|
291
|
+
}
|
|
292
|
+
}
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { tokenChars } = require('./validation');
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Adds an offer to the map of extension offers or a parameter to the map of
|
|
7
|
+
* parameters.
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} dest The map of extension offers or parameters
|
|
10
|
+
* @param {String} name The extension or parameter name
|
|
11
|
+
* @param {(Object|Boolean|String)} elem The extension parameters or the
|
|
12
|
+
* parameter value
|
|
13
|
+
* @private
|
|
14
|
+
*/
|
|
15
|
+
function push(dest, name, elem) {
|
|
16
|
+
if (dest[name] === undefined) dest[name] = [elem];
|
|
17
|
+
else dest[name].push(elem);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Parses the `Sec-WebSocket-Extensions` header into an object.
|
|
22
|
+
*
|
|
23
|
+
* @param {String} header The field value of the header
|
|
24
|
+
* @return {Object} The parsed object
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
function parse(header) {
|
|
28
|
+
const offers = Object.create(null);
|
|
29
|
+
let params = Object.create(null);
|
|
30
|
+
let mustUnescape = false;
|
|
31
|
+
let isEscaping = false;
|
|
32
|
+
let inQuotes = false;
|
|
33
|
+
let extensionName;
|
|
34
|
+
let paramName;
|
|
35
|
+
let start = -1;
|
|
36
|
+
let code = -1;
|
|
37
|
+
let end = -1;
|
|
38
|
+
let i = 0;
|
|
39
|
+
|
|
40
|
+
for (; i < header.length; i++) {
|
|
41
|
+
code = header.charCodeAt(i);
|
|
42
|
+
|
|
43
|
+
if (extensionName === undefined) {
|
|
44
|
+
if (end === -1 && tokenChars[code] === 1) {
|
|
45
|
+
if (start === -1) start = i;
|
|
46
|
+
} else if (
|
|
47
|
+
i !== 0 &&
|
|
48
|
+
(code === 0x20 /* ' ' */ || code === 0x09) /* '\t' */
|
|
49
|
+
) {
|
|
50
|
+
if (end === -1 && start !== -1) end = i;
|
|
51
|
+
} else if (code === 0x3b /* ';' */ || code === 0x2c /* ',' */) {
|
|
52
|
+
if (start === -1) {
|
|
53
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (end === -1) end = i;
|
|
57
|
+
const name = header.slice(start, end);
|
|
58
|
+
if (code === 0x2c) {
|
|
59
|
+
push(offers, name, params);
|
|
60
|
+
params = Object.create(null);
|
|
61
|
+
} else {
|
|
62
|
+
extensionName = name;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
start = end = -1;
|
|
66
|
+
} else {
|
|
67
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
68
|
+
}
|
|
69
|
+
} else if (paramName === undefined) {
|
|
70
|
+
if (end === -1 && tokenChars[code] === 1) {
|
|
71
|
+
if (start === -1) start = i;
|
|
72
|
+
} else if (code === 0x20 || code === 0x09) {
|
|
73
|
+
if (end === -1 && start !== -1) end = i;
|
|
74
|
+
} else if (code === 0x3b || code === 0x2c) {
|
|
75
|
+
if (start === -1) {
|
|
76
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (end === -1) end = i;
|
|
80
|
+
push(params, header.slice(start, end), true);
|
|
81
|
+
if (code === 0x2c) {
|
|
82
|
+
push(offers, extensionName, params);
|
|
83
|
+
params = Object.create(null);
|
|
84
|
+
extensionName = undefined;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
start = end = -1;
|
|
88
|
+
} else if (code === 0x3d /* '=' */ && start !== -1 && end === -1) {
|
|
89
|
+
paramName = header.slice(start, i);
|
|
90
|
+
start = end = -1;
|
|
91
|
+
} else {
|
|
92
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
93
|
+
}
|
|
94
|
+
} else {
|
|
95
|
+
//
|
|
96
|
+
// The value of a quoted-string after unescaping must conform to the
|
|
97
|
+
// token ABNF, so only token characters are valid.
|
|
98
|
+
// Ref: https://tools.ietf.org/html/rfc6455#section-9.1
|
|
99
|
+
//
|
|
100
|
+
if (isEscaping) {
|
|
101
|
+
if (tokenChars[code] !== 1) {
|
|
102
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
103
|
+
}
|
|
104
|
+
if (start === -1) start = i;
|
|
105
|
+
else if (!mustUnescape) mustUnescape = true;
|
|
106
|
+
isEscaping = false;
|
|
107
|
+
} else if (inQuotes) {
|
|
108
|
+
if (tokenChars[code] === 1) {
|
|
109
|
+
if (start === -1) start = i;
|
|
110
|
+
} else if (code === 0x22 /* '"' */ && start !== -1) {
|
|
111
|
+
inQuotes = false;
|
|
112
|
+
end = i;
|
|
113
|
+
} else if (code === 0x5c /* '\' */) {
|
|
114
|
+
isEscaping = true;
|
|
115
|
+
} else {
|
|
116
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
117
|
+
}
|
|
118
|
+
} else if (code === 0x22 && header.charCodeAt(i - 1) === 0x3d) {
|
|
119
|
+
inQuotes = true;
|
|
120
|
+
} else if (end === -1 && tokenChars[code] === 1) {
|
|
121
|
+
if (start === -1) start = i;
|
|
122
|
+
} else if (start !== -1 && (code === 0x20 || code === 0x09)) {
|
|
123
|
+
if (end === -1) end = i;
|
|
124
|
+
} else if (code === 0x3b || code === 0x2c) {
|
|
125
|
+
if (start === -1) {
|
|
126
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
if (end === -1) end = i;
|
|
130
|
+
let value = header.slice(start, end);
|
|
131
|
+
if (mustUnescape) {
|
|
132
|
+
value = value.replace(/\\/g, '');
|
|
133
|
+
mustUnescape = false;
|
|
134
|
+
}
|
|
135
|
+
push(params, paramName, value);
|
|
136
|
+
if (code === 0x2c) {
|
|
137
|
+
push(offers, extensionName, params);
|
|
138
|
+
params = Object.create(null);
|
|
139
|
+
extensionName = undefined;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
paramName = undefined;
|
|
143
|
+
start = end = -1;
|
|
144
|
+
} else {
|
|
145
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
if (start === -1 || inQuotes || code === 0x20 || code === 0x09) {
|
|
151
|
+
throw new SyntaxError('Unexpected end of input');
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
if (end === -1) end = i;
|
|
155
|
+
const token = header.slice(start, end);
|
|
156
|
+
if (extensionName === undefined) {
|
|
157
|
+
push(offers, token, params);
|
|
158
|
+
} else {
|
|
159
|
+
if (paramName === undefined) {
|
|
160
|
+
push(params, token, true);
|
|
161
|
+
} else if (mustUnescape) {
|
|
162
|
+
push(params, paramName, token.replace(/\\/g, ''));
|
|
163
|
+
} else {
|
|
164
|
+
push(params, paramName, token);
|
|
165
|
+
}
|
|
166
|
+
push(offers, extensionName, params);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
return offers;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Builds the `Sec-WebSocket-Extensions` header field value.
|
|
174
|
+
*
|
|
175
|
+
* @param {Object} extensions The map of extensions and parameters to format
|
|
176
|
+
* @return {String} A string representing the given object
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
function format(extensions) {
|
|
180
|
+
return Object.keys(extensions)
|
|
181
|
+
.map((extension) => {
|
|
182
|
+
let configurations = extensions[extension];
|
|
183
|
+
if (!Array.isArray(configurations)) configurations = [configurations];
|
|
184
|
+
return configurations
|
|
185
|
+
.map((params) => {
|
|
186
|
+
return [extension]
|
|
187
|
+
.concat(
|
|
188
|
+
Object.keys(params).map((k) => {
|
|
189
|
+
let values = params[k];
|
|
190
|
+
if (!Array.isArray(values)) values = [values];
|
|
191
|
+
return values
|
|
192
|
+
.map((v) => (v === true ? k : `${k}=${v}`))
|
|
193
|
+
.join('; ');
|
|
194
|
+
})
|
|
195
|
+
)
|
|
196
|
+
.join('; ');
|
|
197
|
+
})
|
|
198
|
+
.join(', ');
|
|
199
|
+
})
|
|
200
|
+
.join(', ');
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
module.exports = { format, parse };
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const kDone = Symbol('kDone');
|
|
4
|
+
const kRun = Symbol('kRun');
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* A very simple job queue with adjustable concurrency. Adapted from
|
|
8
|
+
* https://github.com/STRML/async-limiter
|
|
9
|
+
*/
|
|
10
|
+
class Limiter {
|
|
11
|
+
/**
|
|
12
|
+
* Creates a new `Limiter`.
|
|
13
|
+
*
|
|
14
|
+
* @param {Number} [concurrency=Infinity] The maximum number of jobs allowed
|
|
15
|
+
* to run concurrently
|
|
16
|
+
*/
|
|
17
|
+
constructor(concurrency) {
|
|
18
|
+
this[kDone] = () => {
|
|
19
|
+
this.pending--;
|
|
20
|
+
this[kRun]();
|
|
21
|
+
};
|
|
22
|
+
this.concurrency = concurrency || Infinity;
|
|
23
|
+
this.jobs = [];
|
|
24
|
+
this.pending = 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Adds a job to the queue.
|
|
29
|
+
*
|
|
30
|
+
* @param {Function} job The job to run
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
add(job) {
|
|
34
|
+
this.jobs.push(job);
|
|
35
|
+
this[kRun]();
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Removes a job from the queue and runs it if possible.
|
|
40
|
+
*
|
|
41
|
+
* @private
|
|
42
|
+
*/
|
|
43
|
+
[kRun]() {
|
|
44
|
+
if (this.pending === this.concurrency) return;
|
|
45
|
+
|
|
46
|
+
if (this.jobs.length) {
|
|
47
|
+
const job = this.jobs.shift();
|
|
48
|
+
|
|
49
|
+
this.pending++;
|
|
50
|
+
job(this[kDone]);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
module.exports = Limiter;
|