@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,236 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Codex teammate persistence.
|
|
3
|
+
*
|
|
4
|
+
* Decision multi-engine-tui-architecture splits teammate state into the base JSON
|
|
5
|
+
* `/tmp/teammate-<name>.json` and engine-private extension files. Codex owns
|
|
6
|
+
* the daemon registry directory under `/tmp/teammate-codex/<name>/`; hooks do
|
|
7
|
+
* not write any of these files.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
import { mkdirSync, readFileSync, renameSync, writeFileSync } from 'node:fs'
|
|
11
|
+
import { dirname, join } from 'node:path'
|
|
12
|
+
|
|
13
|
+
import { TeammateRecord } from '../teammate-record'
|
|
14
|
+
import type { EngineKind, TeammateName } from '../types'
|
|
15
|
+
import type { TeammateRecordJson } from '../teammate-record'
|
|
16
|
+
import { validateTeammateName } from '../../identity/name'
|
|
17
|
+
import {
|
|
18
|
+
read as readIdentity,
|
|
19
|
+
remove as removeIdentity,
|
|
20
|
+
reserve as reserveIdentity,
|
|
21
|
+
write as writeIdentity,
|
|
22
|
+
type ReserveResult,
|
|
23
|
+
} from '../../persistence/identity-store'
|
|
24
|
+
|
|
25
|
+
export interface CodexTeammateExtension {
|
|
26
|
+
root: string
|
|
27
|
+
pid: string
|
|
28
|
+
socket: string
|
|
29
|
+
thread: string
|
|
30
|
+
startedAt: string
|
|
31
|
+
lastSeen: string
|
|
32
|
+
stdoutLog: string
|
|
33
|
+
stderrLog: string
|
|
34
|
+
ipcBridgePid: string
|
|
35
|
+
ipcBridgeStdoutLog: string
|
|
36
|
+
ipcBridgeStderrLog: string
|
|
37
|
+
meta: string
|
|
38
|
+
lock: string
|
|
39
|
+
lastTurn: string
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface CodexMeta {
|
|
43
|
+
readonly schema: 1
|
|
44
|
+
readonly name: TeammateName
|
|
45
|
+
readonly cwd: string
|
|
46
|
+
readonly displayName: string | null
|
|
47
|
+
readonly spawnedAt: number
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export function codexRegistryRoot(): string {
|
|
51
|
+
return process.env['CLAUDEMUX_CODEX_REGISTRY_ROOT'] || '/tmp/teammate-codex'
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function assertValidCodexName(name: TeammateName): void {
|
|
55
|
+
const validation = validateTeammateName(name)
|
|
56
|
+
if (validation.kind !== 'ok') {
|
|
57
|
+
throw new Error(`invalid codex teammate name '${name}': ${validation.reason}`)
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function codexTeammateDir(name: TeammateName): string {
|
|
62
|
+
assertValidCodexName(name)
|
|
63
|
+
return join(codexRegistryRoot(), name)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function codexSocketPath(name: TeammateName): string {
|
|
67
|
+
return join(codexTeammateDir(name), 'socket')
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function codexPidFile(name: TeammateName): string {
|
|
71
|
+
return join(codexTeammateDir(name), 'pid')
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export function codexStartedAtFile(name: TeammateName): string {
|
|
75
|
+
return join(codexTeammateDir(name), 'started-at')
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export function codexThreadFile(name: TeammateName): string {
|
|
79
|
+
return join(codexTeammateDir(name), 'thread')
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export function codexLastSeenFile(name: TeammateName): string {
|
|
83
|
+
return join(codexTeammateDir(name), 'last-seen')
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export function codexStdoutLogFile(name: TeammateName): string {
|
|
87
|
+
return join(codexTeammateDir(name), 'stdout.log')
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export function codexStderrLogFile(name: TeammateName): string {
|
|
91
|
+
return join(codexTeammateDir(name), 'stderr.log')
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export function codexIpcBridgePidFile(name: TeammateName): string {
|
|
95
|
+
return join(codexTeammateDir(name), 'ipc-bridge.pid')
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export function codexIpcBridgeStdoutLogFile(name: TeammateName): string {
|
|
99
|
+
return join(codexTeammateDir(name), 'ipc-bridge.stdout.log')
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export function codexIpcBridgeStderrLogFile(name: TeammateName): string {
|
|
103
|
+
return join(codexTeammateDir(name), 'ipc-bridge.stderr.log')
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export function codexMetaFile(name: TeammateName): string {
|
|
107
|
+
return join(codexTeammateDir(name), 'meta.json')
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export function codexBorrowLockFile(name: TeammateName): string {
|
|
111
|
+
return join(codexTeammateDir(name), 'lock')
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export function codexLastTurnFile(name: TeammateName): string {
|
|
115
|
+
return join(codexTeammateDir(name), 'last-turn.json')
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export function writeCodexLastTurn(name: TeammateName, json: string): void {
|
|
119
|
+
const path = codexLastTurnFile(name)
|
|
120
|
+
mkdirSync(dirname(path), { recursive: true })
|
|
121
|
+
const tmp = `${path}.tmp-${process.pid}-${Date.now()}`
|
|
122
|
+
writeFileSync(tmp, json)
|
|
123
|
+
renameSync(tmp, path)
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export function readCodexLastTurn(name: TeammateName): string | null {
|
|
127
|
+
try {
|
|
128
|
+
return readFileSync(codexLastTurnFile(name), 'utf8')
|
|
129
|
+
} catch {
|
|
130
|
+
return null
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export function codexExtension(name: TeammateName): CodexTeammateExtension {
|
|
135
|
+
const root = codexTeammateDir(name)
|
|
136
|
+
return {
|
|
137
|
+
root,
|
|
138
|
+
pid: codexPidFile(name),
|
|
139
|
+
socket: codexSocketPath(name),
|
|
140
|
+
thread: codexThreadFile(name),
|
|
141
|
+
startedAt: codexStartedAtFile(name),
|
|
142
|
+
lastSeen: codexLastSeenFile(name),
|
|
143
|
+
stdoutLog: codexStdoutLogFile(name),
|
|
144
|
+
stderrLog: codexStderrLogFile(name),
|
|
145
|
+
ipcBridgePid: codexIpcBridgePidFile(name),
|
|
146
|
+
ipcBridgeStdoutLog: codexIpcBridgeStdoutLogFile(name),
|
|
147
|
+
ipcBridgeStderrLog: codexIpcBridgeStderrLogFile(name),
|
|
148
|
+
meta: codexMetaFile(name),
|
|
149
|
+
lock: codexBorrowLockFile(name),
|
|
150
|
+
lastTurn: codexLastTurnFile(name),
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export function readBaseRecord(name: TeammateName): TeammateRecordJson | null {
|
|
155
|
+
if (validateTeammateName(name).kind !== 'ok') return null
|
|
156
|
+
return readIdentity(name)
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export function reserveBaseRecord(record: TeammateRecord): ReserveResult {
|
|
160
|
+
assertValidCodexName(record.name)
|
|
161
|
+
return reserveIdentity(record.toJson())
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export function writeBaseRecord(record: TeammateRecord): void {
|
|
165
|
+
assertValidCodexName(record.name)
|
|
166
|
+
writeIdentity(record.toJson())
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export function removeBaseRecord(name: TeammateName): void {
|
|
170
|
+
if (validateTeammateName(name).kind !== 'ok') return
|
|
171
|
+
removeIdentity(name)
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export function readCodexMeta(name: TeammateName): CodexMeta | null {
|
|
175
|
+
try {
|
|
176
|
+
const parsed = JSON.parse(readFileSync(codexMetaFile(name), 'utf8')) as unknown
|
|
177
|
+
if (
|
|
178
|
+
typeof parsed === 'object' &&
|
|
179
|
+
parsed !== null &&
|
|
180
|
+
(parsed as { schema?: unknown }).schema === 1 &&
|
|
181
|
+
typeof (parsed as { name?: unknown }).name === 'string' &&
|
|
182
|
+
typeof (parsed as { cwd?: unknown }).cwd === 'string' &&
|
|
183
|
+
typeof (parsed as { spawnedAt?: unknown }).spawnedAt === 'number'
|
|
184
|
+
) {
|
|
185
|
+
const displayName = (parsed as { displayName?: unknown }).displayName
|
|
186
|
+
return {
|
|
187
|
+
schema: 1,
|
|
188
|
+
name: (parsed as { name: TeammateName }).name,
|
|
189
|
+
cwd: (parsed as { cwd: string }).cwd,
|
|
190
|
+
displayName: typeof displayName === 'string' ? displayName : null,
|
|
191
|
+
spawnedAt: (parsed as { spawnedAt: number }).spawnedAt,
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
return null
|
|
195
|
+
} catch {
|
|
196
|
+
return null
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
export class CodexTeammateRecord extends TeammateRecord {
|
|
201
|
+
readonly engine: EngineKind = 'codex'
|
|
202
|
+
|
|
203
|
+
constructor(args: {
|
|
204
|
+
name: TeammateName
|
|
205
|
+
repo: string
|
|
206
|
+
cwd: string
|
|
207
|
+
worktreeSlug: string | null
|
|
208
|
+
createdAt: number
|
|
209
|
+
displayName: string | null
|
|
210
|
+
}) {
|
|
211
|
+
super(args)
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
extension(): CodexTeammateExtension {
|
|
215
|
+
return codexExtension(this.name)
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
override engineExtensionFiles(): readonly string[] {
|
|
219
|
+
const ext = this.extension()
|
|
220
|
+
return [
|
|
221
|
+
ext.pid,
|
|
222
|
+
ext.socket,
|
|
223
|
+
ext.thread,
|
|
224
|
+
ext.startedAt,
|
|
225
|
+
ext.lastSeen,
|
|
226
|
+
ext.stdoutLog,
|
|
227
|
+
ext.stderrLog,
|
|
228
|
+
ext.ipcBridgePid,
|
|
229
|
+
ext.ipcBridgeStdoutLog,
|
|
230
|
+
ext.ipcBridgeStderrLog,
|
|
231
|
+
ext.meta,
|
|
232
|
+
ext.lock,
|
|
233
|
+
ext.lastTurn,
|
|
234
|
+
]
|
|
235
|
+
}
|
|
236
|
+
}
|
|
@@ -0,0 +1,384 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Codex rollout JSONL readers.
|
|
3
|
+
*
|
|
4
|
+
* Codex persists a thread under `$CODEX_HOME/sessions/YYYY/MM/DD/` as an
|
|
5
|
+
* append-only `rollout-<timestamp>-<thread-id>.jsonl` file. The app-server
|
|
6
|
+
* protocol still owns live turns; these helpers are read-only fallbacks for
|
|
7
|
+
* status surfaces that need durable last-reply and token-usage data.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
import { homedir } from 'node:os'
|
|
11
|
+
import { join } from 'node:path'
|
|
12
|
+
import { readdirSync, readFileSync, statSync } from 'node:fs'
|
|
13
|
+
|
|
14
|
+
// Layer-3 BUSY fallback bridges short gaps between rollout writes and live
|
|
15
|
+
// thread status. Long turns without rollout writes should be covered by
|
|
16
|
+
// `thread/read` active; if that signal is unavailable, the fallback ages out
|
|
17
|
+
// quickly instead of leaving stale busy rows around for a full minute.
|
|
18
|
+
export const CODEX_ROLLOUT_BUSY_WINDOW_MS = 20_000
|
|
19
|
+
|
|
20
|
+
export interface RolloutTokenUsage {
|
|
21
|
+
readonly tokensUsed: number
|
|
22
|
+
readonly tokensTotal: number
|
|
23
|
+
readonly pct: number
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface CodexRolloutSnapshot {
|
|
27
|
+
readonly path: string
|
|
28
|
+
readonly mtimeMs: number
|
|
29
|
+
readonly lastAssistantText: string | null
|
|
30
|
+
readonly lastAssistantAtMs: number | null
|
|
31
|
+
readonly tokenUsage: RolloutTokenUsage | null
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface CodexRolloutFile {
|
|
35
|
+
readonly path: string
|
|
36
|
+
readonly mtimeMs: number
|
|
37
|
+
readonly threadId: string
|
|
38
|
+
readonly createdAt: string | null
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function isPlainObject(value: unknown): value is Record<string, unknown> {
|
|
42
|
+
return typeof value === 'object' && value !== null && !Array.isArray(value)
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function stringProp(obj: Record<string, unknown>, key: string): string | null {
|
|
46
|
+
const value = obj[key]
|
|
47
|
+
return typeof value === 'string' ? value : null
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function numberProp(obj: Record<string, unknown>, key: string): number | null {
|
|
51
|
+
const value = obj[key]
|
|
52
|
+
return typeof value === 'number' && Number.isFinite(value) ? value : null
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
function codexHome(env: NodeJS.ProcessEnv): string {
|
|
56
|
+
return env['CLAUDEMUX_CODEX_HOME'] || env['CODEX_HOME'] || join(homedir(), '.codex')
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export function codexSessionsRoot(env: NodeJS.ProcessEnv): string {
|
|
60
|
+
return env['CLAUDEMUX_CODEX_SESSIONS_ROOT'] || join(codexHome(env), 'sessions')
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function sortedNumericDirs(root: string): string[] {
|
|
64
|
+
let entries
|
|
65
|
+
try {
|
|
66
|
+
entries = readdirSync(root, { withFileTypes: true })
|
|
67
|
+
} catch {
|
|
68
|
+
return []
|
|
69
|
+
}
|
|
70
|
+
return entries
|
|
71
|
+
.filter((entry) => entry.isDirectory() && /^\d+$/.test(entry.name))
|
|
72
|
+
.map((entry) => entry.name)
|
|
73
|
+
.sort((a, b) => Number(b) - Number(a))
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
const ROLLOUT_THREAD_RE =
|
|
77
|
+
/-([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})\.jsonl$/i
|
|
78
|
+
const ROLLOUT_CREATED_RE = /^rollout-(\d{4}-\d{2}-\d{2}T\d{2}-\d{2}-\d{2}(?:\.[0-9]+)?Z?)-/
|
|
79
|
+
|
|
80
|
+
function rolloutCreatedAt(name: string): string | null {
|
|
81
|
+
const match = ROLLOUT_CREATED_RE.exec(name)
|
|
82
|
+
if (match === null) return null
|
|
83
|
+
return match[1]!
|
|
84
|
+
.replace('T', ' ')
|
|
85
|
+
.replace(/^(.+ )(\d{2})-(\d{2})-(\d{2})/, '$1$2:$3:$4')
|
|
86
|
+
.replace(/\.[0-9]+Z?$/, '')
|
|
87
|
+
.replace(/Z$/, '')
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
function rolloutThreadId(name: string): string | null {
|
|
91
|
+
const match = ROLLOUT_THREAD_RE.exec(name)
|
|
92
|
+
return match === null ? null : match[1]!
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
function findInDay(
|
|
96
|
+
dayDir: string,
|
|
97
|
+
suffix: string,
|
|
98
|
+
exactThreadId: string,
|
|
99
|
+
): CodexRolloutFile | null {
|
|
100
|
+
let entries
|
|
101
|
+
try {
|
|
102
|
+
entries = readdirSync(dayDir, { withFileTypes: true })
|
|
103
|
+
} catch {
|
|
104
|
+
return null
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
let newest: CodexRolloutFile | null = null
|
|
108
|
+
for (const entry of entries) {
|
|
109
|
+
if (!entry.isFile()) continue
|
|
110
|
+
const name = entry.name
|
|
111
|
+
if (!name.startsWith('rollout-') || !name.endsWith(suffix)) continue
|
|
112
|
+
const path = join(dayDir, name)
|
|
113
|
+
let mtimeMs: number
|
|
114
|
+
try {
|
|
115
|
+
mtimeMs = statSync(path).mtimeMs
|
|
116
|
+
} catch {
|
|
117
|
+
continue
|
|
118
|
+
}
|
|
119
|
+
if (newest === null || mtimeMs > newest.mtimeMs) {
|
|
120
|
+
newest = {
|
|
121
|
+
path,
|
|
122
|
+
mtimeMs,
|
|
123
|
+
threadId: exactThreadId,
|
|
124
|
+
createdAt: rolloutCreatedAt(name),
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
return newest
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export function findCodexRolloutFile(
|
|
132
|
+
threadId: string,
|
|
133
|
+
env: NodeJS.ProcessEnv,
|
|
134
|
+
): CodexRolloutFile | null {
|
|
135
|
+
const suffix = `-${threadId}.jsonl`
|
|
136
|
+
const root = codexSessionsRoot(env)
|
|
137
|
+
for (const year of sortedNumericDirs(root)) {
|
|
138
|
+
const yearDir = join(root, year)
|
|
139
|
+
for (const month of sortedNumericDirs(yearDir)) {
|
|
140
|
+
const monthDir = join(yearDir, month)
|
|
141
|
+
for (const day of sortedNumericDirs(monthDir)) {
|
|
142
|
+
const found = findInDay(join(monthDir, day), suffix, threadId)
|
|
143
|
+
if (found !== null) return found
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
return null
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Pull the `session_meta.cwd` field from a Codex rollout file's
|
|
152
|
+
* header. Codex writes one `type:"session_meta"` line at the top of
|
|
153
|
+
* every rollout with `payload.cwd` set to the daemon's launch cwd —
|
|
154
|
+
* that is the original repo or worktree path, even after `tm kill`
|
|
155
|
+
* has removed the live identity/meta records. Used by `tm resume`
|
|
156
|
+
* to recover the right cwd when the dispatcher would otherwise fall
|
|
157
|
+
* back to the dispatcher dir.
|
|
158
|
+
*
|
|
159
|
+
* Scans up to `lineBudget` lines so a malformed rollout cannot lock
|
|
160
|
+
* the resume path on a giant first chunk; the meta line is normally
|
|
161
|
+
* the first non-empty entry, so the budget is effectively a
|
|
162
|
+
* safety bound.
|
|
163
|
+
*/
|
|
164
|
+
export function readRolloutSessionCwd(path: string, lineBudget = 16): string | null {
|
|
165
|
+
let raw: string
|
|
166
|
+
try {
|
|
167
|
+
raw = readFileSync(path, 'utf8')
|
|
168
|
+
} catch {
|
|
169
|
+
return null
|
|
170
|
+
}
|
|
171
|
+
const lines = raw.split('\n')
|
|
172
|
+
const limit = Math.min(lineBudget, lines.length)
|
|
173
|
+
for (let i = 0; i < limit; i++) {
|
|
174
|
+
const line = lines[i]
|
|
175
|
+
if (line === undefined || line.length === 0) continue
|
|
176
|
+
let parsed: unknown
|
|
177
|
+
try {
|
|
178
|
+
parsed = JSON.parse(line)
|
|
179
|
+
} catch {
|
|
180
|
+
continue
|
|
181
|
+
}
|
|
182
|
+
if (!isPlainObject(parsed)) continue
|
|
183
|
+
if (parsed['type'] !== 'session_meta') continue
|
|
184
|
+
const payload = parsed['payload']
|
|
185
|
+
if (!isPlainObject(payload)) continue
|
|
186
|
+
return stringProp(payload, 'cwd')
|
|
187
|
+
}
|
|
188
|
+
return null
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
function listInDay(dayDir: string): CodexRolloutFile[] {
|
|
192
|
+
let entries
|
|
193
|
+
try {
|
|
194
|
+
entries = readdirSync(dayDir, { withFileTypes: true })
|
|
195
|
+
} catch {
|
|
196
|
+
return []
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
const files: CodexRolloutFile[] = []
|
|
200
|
+
for (const entry of entries) {
|
|
201
|
+
if (!entry.isFile()) continue
|
|
202
|
+
const threadId = rolloutThreadId(entry.name)
|
|
203
|
+
if (threadId === null || !entry.name.startsWith('rollout-')) continue
|
|
204
|
+
const path = join(dayDir, entry.name)
|
|
205
|
+
try {
|
|
206
|
+
files.push({
|
|
207
|
+
path,
|
|
208
|
+
mtimeMs: statSync(path).mtimeMs,
|
|
209
|
+
threadId,
|
|
210
|
+
createdAt: rolloutCreatedAt(entry.name),
|
|
211
|
+
})
|
|
212
|
+
} catch {
|
|
213
|
+
continue
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
return files
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export function listCodexRolloutFiles(env: NodeJS.ProcessEnv): readonly CodexRolloutFile[] {
|
|
220
|
+
const root = codexSessionsRoot(env)
|
|
221
|
+
const files: CodexRolloutFile[] = []
|
|
222
|
+
for (const year of sortedNumericDirs(root)) {
|
|
223
|
+
const yearDir = join(root, year)
|
|
224
|
+
for (const month of sortedNumericDirs(yearDir)) {
|
|
225
|
+
const monthDir = join(yearDir, month)
|
|
226
|
+
for (const day of sortedNumericDirs(monthDir)) {
|
|
227
|
+
files.push(...listInDay(join(monthDir, day)))
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
files.sort((a, b) => b.mtimeMs - a.mtimeMs || (a.path < b.path ? -1 : a.path > b.path ? 1 : 0))
|
|
232
|
+
return files
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
function phaseAllowed(phase: unknown): boolean {
|
|
236
|
+
// Codex writes commentary before a final answer. Keeping it here lets
|
|
237
|
+
// `tm last` show the latest assistant-visible text during an in-flight
|
|
238
|
+
// turn; a later `final_answer` line wins because the parser keeps the
|
|
239
|
+
// newest matching JSONL entry.
|
|
240
|
+
return phase === 'final_answer' || phase === 'commentary'
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
function textFromContent(content: unknown): string | null {
|
|
244
|
+
if (!Array.isArray(content)) return null
|
|
245
|
+
const parts: string[] = []
|
|
246
|
+
for (const item of content) {
|
|
247
|
+
if (!isPlainObject(item)) continue
|
|
248
|
+
if (item['type'] !== 'output_text') continue
|
|
249
|
+
const text = stringProp(item, 'text')
|
|
250
|
+
if (text !== null) parts.push(text)
|
|
251
|
+
}
|
|
252
|
+
return parts.length === 0 ? null : parts.join('')
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
function assistantTextFromEntry(entry: unknown): string | null {
|
|
256
|
+
if (!isPlainObject(entry)) return null
|
|
257
|
+
const payload = entry['payload']
|
|
258
|
+
if (!isPlainObject(payload)) return null
|
|
259
|
+
|
|
260
|
+
if (payload['type'] === 'agent_message' && phaseAllowed(payload['phase'])) {
|
|
261
|
+
return stringProp(payload, 'message')
|
|
262
|
+
}
|
|
263
|
+
if (payload['type'] === 'agentMessage' && phaseAllowed(payload['phase'])) {
|
|
264
|
+
return stringProp(payload, 'text')
|
|
265
|
+
}
|
|
266
|
+
if (
|
|
267
|
+
payload['type'] === 'message' &&
|
|
268
|
+
payload['role'] === 'assistant' &&
|
|
269
|
+
phaseAllowed(payload['phase'])
|
|
270
|
+
) {
|
|
271
|
+
return textFromContent(payload['content'])
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
const item = payload['item']
|
|
275
|
+
if (isPlainObject(item) && item['type'] === 'agentMessage' && phaseAllowed(item['phase'])) {
|
|
276
|
+
return stringProp(item, 'text')
|
|
277
|
+
}
|
|
278
|
+
return null
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
function timestampMsFromEntry(entry: unknown): number | null {
|
|
282
|
+
if (!isPlainObject(entry)) return null
|
|
283
|
+
const timestamp = stringProp(entry, 'timestamp')
|
|
284
|
+
if (timestamp === null) return null
|
|
285
|
+
const parsed = Date.parse(timestamp)
|
|
286
|
+
return Number.isFinite(parsed) ? parsed : null
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
function tokenCountFromSnake(info: Record<string, unknown>): RolloutTokenUsage | null {
|
|
290
|
+
const last = info['last_token_usage']
|
|
291
|
+
if (!isPlainObject(last)) return null
|
|
292
|
+
const window = numberProp(info, 'model_context_window')
|
|
293
|
+
if (window === null || window <= 0) return null
|
|
294
|
+
const input = numberProp(last, 'input_tokens')
|
|
295
|
+
const total = numberProp(last, 'total_tokens')
|
|
296
|
+
// `total_tokens` includes generated assistant output, which becomes
|
|
297
|
+
// conversation history for the next prompt. It therefore approximates
|
|
298
|
+
// post-turn context fill better than `input_tokens`; keep input as a
|
|
299
|
+
// compatibility fallback for older or partial rollout records.
|
|
300
|
+
const used = total ?? input
|
|
301
|
+
if (used === null) return null
|
|
302
|
+
return { tokensUsed: used, tokensTotal: window, pct: Math.floor((used * 100) / window) }
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
function tokenCountFromCamel(tokenUsage: Record<string, unknown>): RolloutTokenUsage | null {
|
|
306
|
+
const last = tokenUsage['last']
|
|
307
|
+
if (!isPlainObject(last)) return null
|
|
308
|
+
const window = numberProp(tokenUsage, 'modelContextWindow')
|
|
309
|
+
if (window === null || window <= 0) return null
|
|
310
|
+
const input = numberProp(last, 'inputTokens')
|
|
311
|
+
const total = numberProp(last, 'totalTokens')
|
|
312
|
+
const used = total ?? input
|
|
313
|
+
if (used === null) return null
|
|
314
|
+
return { tokensUsed: used, tokensTotal: window, pct: Math.floor((used * 100) / window) }
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
function tokenUsageFromEntry(entry: unknown): RolloutTokenUsage | null {
|
|
318
|
+
if (!isPlainObject(entry)) return null
|
|
319
|
+
const payload = entry['payload']
|
|
320
|
+
if (isPlainObject(payload)) {
|
|
321
|
+
if (payload['type'] === 'token_count' && isPlainObject(payload['info'])) {
|
|
322
|
+
return tokenCountFromSnake(payload['info'])
|
|
323
|
+
}
|
|
324
|
+
if (
|
|
325
|
+
payload['method'] === 'thread/tokenUsage/updated' &&
|
|
326
|
+
isPlainObject(payload['params']) &&
|
|
327
|
+
isPlainObject(payload['params']['tokenUsage'])
|
|
328
|
+
) {
|
|
329
|
+
return tokenCountFromCamel(payload['params']['tokenUsage'])
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
if (
|
|
333
|
+
entry['type'] === 'thread/tokenUsage/updated' &&
|
|
334
|
+
isPlainObject(entry['params']) &&
|
|
335
|
+
isPlainObject(entry['params']['tokenUsage'])
|
|
336
|
+
) {
|
|
337
|
+
return tokenCountFromCamel(entry['params']['tokenUsage'])
|
|
338
|
+
}
|
|
339
|
+
return null
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export function readCodexRolloutSnapshot(
|
|
343
|
+
threadId: string,
|
|
344
|
+
env: NodeJS.ProcessEnv,
|
|
345
|
+
): CodexRolloutSnapshot | null {
|
|
346
|
+
const rollout = findCodexRolloutFile(threadId, env)
|
|
347
|
+
if (rollout === null) return null
|
|
348
|
+
|
|
349
|
+
let content: string
|
|
350
|
+
try {
|
|
351
|
+
content = readFileSync(rollout.path, 'utf8')
|
|
352
|
+
} catch {
|
|
353
|
+
return null
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
let lastAssistantText: string | null = null
|
|
357
|
+
let lastAssistantAtMs: number | null = null
|
|
358
|
+
let tokenUsage: RolloutTokenUsage | null = null
|
|
359
|
+
for (const line of content.split('\n')) {
|
|
360
|
+
if (line.trim() === '') continue
|
|
361
|
+
let entry: unknown
|
|
362
|
+
try {
|
|
363
|
+
entry = JSON.parse(line)
|
|
364
|
+
} catch {
|
|
365
|
+
continue
|
|
366
|
+
}
|
|
367
|
+
const assistantText = assistantTextFromEntry(entry)
|
|
368
|
+
if (assistantText !== null) {
|
|
369
|
+
lastAssistantText = assistantText
|
|
370
|
+
lastAssistantAtMs = timestampMsFromEntry(entry)
|
|
371
|
+
}
|
|
372
|
+
tokenUsage = tokenUsageFromEntry(entry) ?? tokenUsage
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
return { ...rollout, lastAssistantText, lastAssistantAtMs, tokenUsage }
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
export function rolloutRecentlyActive(
|
|
379
|
+
snapshot: CodexRolloutSnapshot | null,
|
|
380
|
+
nowMs: number,
|
|
381
|
+
): boolean {
|
|
382
|
+
if (snapshot === null) return false
|
|
383
|
+
return nowMs - snapshot.mtimeMs <= CODEX_ROLLOUT_BUSY_WINDOW_MS
|
|
384
|
+
}
|