@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,211 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `tm archive <id>` — move a finished task from the dispatcher's active
|
|
3
|
+
* ledger to its archive. Decision multi-engine-tui-architecture §"Target shape" puts `archive`
|
|
4
|
+
* in `verbs/` because it touches no teammate process; it edits two
|
|
5
|
+
* dispatcher-local markdown files under
|
|
6
|
+
* `~/.claude/projects/<encoded-dispatcher-dir>/memory/`. No engine is
|
|
7
|
+
* consulted.
|
|
8
|
+
*
|
|
9
|
+
* The verb cuts the `### <id>` block out of `active-dispatcher-tasks.md`,
|
|
10
|
+
* carries `repo / branch / intent` lines from the cut block, stamps the
|
|
11
|
+
* close date and the outcome read from stdin, and prepends a compressed
|
|
12
|
+
* entry to `dispatcher-tasks-archive.md` (seeded from `ARCHIVE_TEMPLATE`
|
|
13
|
+
* when absent). The behavior is byte-identical to the legacy
|
|
14
|
+
* `NATIVE_VERBS.archive` it replaces.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import { readFileSync, statSync, writeFileSync } from 'node:fs'
|
|
18
|
+
import { join } from 'node:path'
|
|
19
|
+
|
|
20
|
+
import { encodeProjectDir } from '../persistence/paths'
|
|
21
|
+
import type { TmResult } from '../tm'
|
|
22
|
+
|
|
23
|
+
/** The seed `dispatcher-tasks-archive.md` written when the archive file does not exist yet. */
|
|
24
|
+
const ARCHIVE_TEMPLATE = `${[
|
|
25
|
+
'---',
|
|
26
|
+
'name: dispatcher-tasks-archive',
|
|
27
|
+
'description: "On-demand archive of closed dispatcher tasks, compressed to outcome + artifacts. NOT a boot read — only consult when looking up past task history. Live in-flight tasks live in active-dispatcher-tasks.md."',
|
|
28
|
+
'metadata:',
|
|
29
|
+
' node_type: memory',
|
|
30
|
+
' type: project',
|
|
31
|
+
'---',
|
|
32
|
+
'',
|
|
33
|
+
'# Dispatcher task archive',
|
|
34
|
+
'',
|
|
35
|
+
'Closed tasks moved here from `active-dispatcher-tasks.md`, compressed to a',
|
|
36
|
+
'pointer + conclusion (not a knowledge base). Newest on top. Reusable analysis',
|
|
37
|
+
'that outlives a task should be promoted to its own memory file, not kept here.',
|
|
38
|
+
'',
|
|
39
|
+
'<!-- split by month (dispatcher-tasks-archive-YYYY-MM.md) if this file grows past a few hundred entries -->',
|
|
40
|
+
].join('\n')}\n`
|
|
41
|
+
|
|
42
|
+
/** `tm`'s `die`: one `tm: <message>` line on stderr, exit 1. */
|
|
43
|
+
function die(message: string): TmResult {
|
|
44
|
+
return { code: 1, stdout: '', stderr: `tm: ${message}\n` }
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/** Whether a path exists and is a regular file. */
|
|
48
|
+
function isRegularFile(path: string): boolean {
|
|
49
|
+
try {
|
|
50
|
+
return statSync(path).isFile()
|
|
51
|
+
} catch {
|
|
52
|
+
return false
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/** The current date as `YYYY-MM-DD` in local time. */
|
|
57
|
+
function fmtLocalDate(): string {
|
|
58
|
+
const d = new Date()
|
|
59
|
+
const p = (n: number): string => String(n).padStart(2, '0')
|
|
60
|
+
return `${d.getFullYear()}-${p(d.getMonth() + 1)}-${p(d.getDate())}`
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/** Split a ledger file into lines; a trailing newline does not add an empty final line. */
|
|
64
|
+
function ledgerLines(content: string): string[] {
|
|
65
|
+
const lines = content.split('\n')
|
|
66
|
+
if (lines.length > 0 && lines[lines.length - 1] === '') lines.pop()
|
|
67
|
+
return lines
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
type ArchiveArgs = { id: string; status: string } | { error: TmResult }
|
|
71
|
+
|
|
72
|
+
function parseArchiveArgs(args: readonly string[]): ArchiveArgs {
|
|
73
|
+
let id = ''
|
|
74
|
+
let status = ''
|
|
75
|
+
for (let i = 0; i < args.length; i++) {
|
|
76
|
+
const arg = args[i]!
|
|
77
|
+
if (arg === '--status') {
|
|
78
|
+
if (i + 1 >= args.length) return { error: { code: 1, stdout: '', stderr: '' } }
|
|
79
|
+
status = args[i + 1]!
|
|
80
|
+
i++
|
|
81
|
+
} else if (arg.startsWith('--status=')) {
|
|
82
|
+
status = arg.slice('--status='.length)
|
|
83
|
+
} else if (arg.startsWith('-')) {
|
|
84
|
+
return { error: die(`tm archive: unknown flag: ${arg}`) }
|
|
85
|
+
} else if (id === '') {
|
|
86
|
+
id = arg
|
|
87
|
+
} else {
|
|
88
|
+
return { error: die(`tm archive: unexpected arg: ${arg}`) }
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
return { id, status }
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export interface ArchiveEnv {
|
|
95
|
+
/** The dispatcher directory — `~/.claude/projects/<encoded(this)>` holds the ledger. */
|
|
96
|
+
readonly dispatcherDir: string
|
|
97
|
+
/** The Claude Code projects root. */
|
|
98
|
+
readonly projectsDir: string
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/** `tm archive` body. The stdin outcome is required; see the usage line for the form. */
|
|
102
|
+
export async function archiveVerb(
|
|
103
|
+
args: readonly string[],
|
|
104
|
+
stdin: string | undefined,
|
|
105
|
+
env: ArchiveEnv,
|
|
106
|
+
): Promise<TmResult> {
|
|
107
|
+
const parsed = parseArchiveArgs(args)
|
|
108
|
+
if ('error' in parsed) return parsed.error
|
|
109
|
+
const { id } = parsed
|
|
110
|
+
if (id === '') {
|
|
111
|
+
return die("usage: tm archive <id> [--status '<tag>'] (outcome text on stdin)")
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
const memoryDir = join(env.projectsDir, encodeProjectDir(env.dispatcherDir), 'memory')
|
|
115
|
+
const activePath = join(memoryDir, 'active-dispatcher-tasks.md')
|
|
116
|
+
const archivePath = join(memoryDir, 'dispatcher-tasks-archive.md')
|
|
117
|
+
if (!isRegularFile(activePath)) return die(`no active ledger at ${activePath}`)
|
|
118
|
+
|
|
119
|
+
const outcome = (stdin ?? '').replace(/\n+$/, '')
|
|
120
|
+
if (outcome.replace(/\s/g, '') === '') {
|
|
121
|
+
return die(`outcome text required on stdin, e.g.: echo '...' | tm archive ${id}`)
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
const activeContent = readFileSync(activePath, 'utf8')
|
|
125
|
+
const activeLines = ledgerLines(activeContent)
|
|
126
|
+
|
|
127
|
+
let headerRe: RegExp
|
|
128
|
+
try {
|
|
129
|
+
headerRe = new RegExp(`^### ${id}(\\s|$)`)
|
|
130
|
+
} catch {
|
|
131
|
+
headerRe = /(?!)/
|
|
132
|
+
}
|
|
133
|
+
const headerLines = activeLines
|
|
134
|
+
.map((line, index) => (headerRe.test(line) ? index + 1 : 0))
|
|
135
|
+
.filter((lineNo) => lineNo > 0)
|
|
136
|
+
if (headerLines.length === 0) {
|
|
137
|
+
const available = activeLines
|
|
138
|
+
.map((line) => /^### [^ ]+/.exec(line)?.[0])
|
|
139
|
+
.filter((match): match is string => match != null)
|
|
140
|
+
.map((match) => match.slice('### '.length))
|
|
141
|
+
.join(' ')
|
|
142
|
+
return die(`id not found in active ledger: ${id}\n available: ${available}`)
|
|
143
|
+
}
|
|
144
|
+
if (headerLines.length !== 1) {
|
|
145
|
+
return die(`id matches ${headerLines.length} entries in active ledger: ${id}`)
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
const start = headerLines[0]!
|
|
149
|
+
const total = (activeContent.match(/\n/g) ?? []).length
|
|
150
|
+
let end = total
|
|
151
|
+
for (let index = start; index < activeLines.length; index++) {
|
|
152
|
+
if (/^(### |## )/.test(activeLines[index]!)) {
|
|
153
|
+
end = index
|
|
154
|
+
break
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
const blockLines = activeLines.slice(start - 1, end)
|
|
158
|
+
|
|
159
|
+
let status = parsed.status
|
|
160
|
+
if (status === '') {
|
|
161
|
+
const tag = /\[(.+)\]\s*$/.exec(blockLines[0] ?? '')
|
|
162
|
+
status = tag ? tag[1]! : 'done'
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
const field = (name: string): string => {
|
|
166
|
+
const line = blockLines.find((candidate) => candidate.startsWith(`- ${name}:`))
|
|
167
|
+
if (line === undefined) return '(unknown)'
|
|
168
|
+
const value = line.slice(`- ${name}:`.length).replace(/^\s*/, '')
|
|
169
|
+
return value === '' ? '(unknown)' : value
|
|
170
|
+
}
|
|
171
|
+
const entry =
|
|
172
|
+
`### ${id} [${status}]\n` +
|
|
173
|
+
`- repo/branch: ${field('repo')} / ${field('branch')}\n` +
|
|
174
|
+
`- intent: ${field('intent')}\n` +
|
|
175
|
+
`- outcome: ${outcome}\n` +
|
|
176
|
+
`- closed: ${fmtLocalDate()}`
|
|
177
|
+
|
|
178
|
+
const archiveContent = isRegularFile(archivePath)
|
|
179
|
+
? readFileSync(archivePath, 'utf8')
|
|
180
|
+
: ARCHIVE_TEMPLATE
|
|
181
|
+
const archiveLines = ledgerLines(archiveContent)
|
|
182
|
+
let firstEntry = 0
|
|
183
|
+
for (let index = 0; index < archiveLines.length; index++) {
|
|
184
|
+
if (archiveLines[index]!.startsWith('### ')) {
|
|
185
|
+
firstEntry = index + 1
|
|
186
|
+
break
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
let newArchive: string
|
|
190
|
+
if (firstEntry > 0) {
|
|
191
|
+
const head =
|
|
192
|
+
firstEntry > 1 ? `${archiveLines.slice(0, firstEntry - 1).join('\n')}\n` : ''
|
|
193
|
+
const tail = `${archiveLines.slice(firstEntry - 1).join('\n')}\n`
|
|
194
|
+
newArchive = `${head}${entry}\n\n${tail}`
|
|
195
|
+
} else {
|
|
196
|
+
newArchive = `${archiveContent}\n${entry}\n`
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
const remaining = [...activeLines.slice(0, start - 1), ...activeLines.slice(end)]
|
|
200
|
+
const newActive = remaining.length > 0 ? `${remaining.join('\n')}\n` : ''
|
|
201
|
+
|
|
202
|
+
writeFileSync(archivePath, newArchive)
|
|
203
|
+
writeFileSync(activePath, newActive)
|
|
204
|
+
return {
|
|
205
|
+
code: 0,
|
|
206
|
+
stdout:
|
|
207
|
+
`archived ${id} [${status}] -> dispatcher-tasks-archive.md ` +
|
|
208
|
+
'(removed from active ledger)\n',
|
|
209
|
+
stderr: '',
|
|
210
|
+
}
|
|
211
|
+
}
|
package/src/verbs/ask.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `tm ask "<prompt>"` — borrow an idle named codex teammate, run one
|
|
3
|
+
* turn on a fresh thread, return the teammate. The "pool" is the
|
|
4
|
+
* spawned Codex-engine set; this verb does not name a teammate. Always
|
|
5
|
+
* routes into the codex driver, never into the tmux path.
|
|
6
|
+
*
|
|
7
|
+
* Codex-only by definition (decision multi-engine-tui-architecture): a claude teammate is named,
|
|
8
|
+
* so a "borrow from the pool" verb belongs to the engine whose
|
|
9
|
+
* teammates are pool-shaped.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import { codexAsk } from '../engines/codex/verbs'
|
|
13
|
+
import type { TmResult } from '../tm'
|
|
14
|
+
|
|
15
|
+
export async function askVerb(args: readonly string[]): Promise<TmResult> {
|
|
16
|
+
if (args.length === 0) {
|
|
17
|
+
return { code: 1, stdout: '', stderr: 'tm: usage: tm ask "<prompt>"\n' }
|
|
18
|
+
}
|
|
19
|
+
if (args.length > 1) {
|
|
20
|
+
return {
|
|
21
|
+
code: 1,
|
|
22
|
+
stdout: '',
|
|
23
|
+
stderr:
|
|
24
|
+
`tm: tm ask: takes exactly one positional argument (the prompt) — ` +
|
|
25
|
+
`got ${args.length}\n`,
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
return codexAsk(args[0] ?? '')
|
|
29
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `tm compact <name>` — manual context compaction. Decision multi-engine-tui-architecture
|
|
3
|
+
* §"Engine interface" uses this verb as the load-bearing example for
|
|
4
|
+
* the discriminated-result design: the Codex engine returns
|
|
5
|
+
* `{ kind: 'not-supported', reason: ... }` and the verb formatter
|
|
6
|
+
* prints the one-line reason at exit 0.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { formatCompact } from './format'
|
|
10
|
+
import type { CompactRequest, TeammateName } from '../engines/types'
|
|
11
|
+
import type { TmResult } from '../tm'
|
|
12
|
+
import type { VerbContext } from './context'
|
|
13
|
+
import { resolveTargetEngine } from './resolve'
|
|
14
|
+
|
|
15
|
+
export async function compactVerb(
|
|
16
|
+
name: TeammateName,
|
|
17
|
+
ctx: VerbContext,
|
|
18
|
+
opts: { readonly timeoutMs: number | null } = { timeoutMs: null },
|
|
19
|
+
): Promise<TmResult> {
|
|
20
|
+
const engine = await resolveTargetEngine(name, ctx)
|
|
21
|
+
if ('code' in engine) return engine
|
|
22
|
+
|
|
23
|
+
const req: CompactRequest = { name, timeoutMs: opts.timeoutMs }
|
|
24
|
+
return formatCompact(await engine.compact(req, ctx.engineContext))
|
|
25
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `VerbContext` — the dependency bundle every verb-layer default impl
|
|
3
|
+
* takes. Decision multi-engine-tui-architecture §"Verb is the abstraction" calls out the four
|
|
4
|
+
* verb-side primitives:
|
|
5
|
+
*
|
|
6
|
+
* - `engines` — the read-only registry view; `lsVerb` / `statesVerb`
|
|
7
|
+
* fan out over `registered()`.
|
|
8
|
+
* - `router` — name → engine resolution; `statusVerb` / `killVerb` /
|
|
9
|
+
* every single-teammate verb consults this. `null` is the
|
|
10
|
+
* "no such teammate" case.
|
|
11
|
+
* - `engineContext` — the shared environment every Engine method
|
|
12
|
+
* receives; verbs pass it through unmodified.
|
|
13
|
+
* - `identity` — the writer for the base `/tmp/teammate-<name>.json`
|
|
14
|
+
* file; `killVerb` calls `remove()` after a successful kill so a
|
|
15
|
+
* later `tm spawn` of the same name is not blocked by a stale
|
|
16
|
+
* identity record.
|
|
17
|
+
*
|
|
18
|
+
* Phase 1 has no concrete engines and no real identity store; the
|
|
19
|
+
* verbs still type-check against this bundle, and the empty / no-op
|
|
20
|
+
* Phase 1 implementations land them on the "not found" branch.
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
import type { ColumnRunner } from '../column'
|
|
24
|
+
import type { EngineRegistryView } from '../engines/registry'
|
|
25
|
+
import type { EngineContext, TeammateName } from '../engines/types'
|
|
26
|
+
import type { TeammateRouter } from '../identity/router'
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Writer for the base TeammateRecord JSON. Decision multi-engine-tui-architecture's "identity-
|
|
30
|
+
* by-JSON" enforcement rule pins this as the only place that mutates
|
|
31
|
+
* `/tmp/teammate-<name>.json`; Phase 2 lands the production
|
|
32
|
+
* implementation under `persistence/identity-store.ts`.
|
|
33
|
+
*/
|
|
34
|
+
export interface IdentityStore {
|
|
35
|
+
/**
|
|
36
|
+
* Snapshot the live identity JSON into the archive directory. Called by
|
|
37
|
+
* `tm kill` before `remove(name)` so a later `tm resume <name> <sid>`
|
|
38
|
+
* or `tm history <name>` can recover cwd / repo / worktreeSlug /
|
|
39
|
+
* displayName for the killed teammate without the agent shelling into
|
|
40
|
+
* `/tmp`. No-op when there is no live record to archive.
|
|
41
|
+
*/
|
|
42
|
+
archive(name: TeammateName): Promise<void>
|
|
43
|
+
/** Remove the identity JSON for `name`. Idempotent — missing file is OK. */
|
|
44
|
+
remove(name: TeammateName): Promise<void>
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface VerbContext {
|
|
48
|
+
readonly engines: EngineRegistryView
|
|
49
|
+
readonly router: TeammateRouter
|
|
50
|
+
readonly engineContext: EngineContext
|
|
51
|
+
readonly identity: IdentityStore
|
|
52
|
+
/**
|
|
53
|
+
* Column-aligner. `tm states` owns the table layout, so the verb layer
|
|
54
|
+
* — not the engine — holds the `column -t` runner. Engines stay in
|
|
55
|
+
* the structured-row business.
|
|
56
|
+
*/
|
|
57
|
+
readonly runColumn: ColumnRunner
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/** Phase 1 no-op identity store — Phase 2 ships the real writer. */
|
|
61
|
+
export class NoopIdentityStore implements IdentityStore {
|
|
62
|
+
async archive(_name: TeammateName): Promise<void> {
|
|
63
|
+
return
|
|
64
|
+
}
|
|
65
|
+
async remove(_name: TeammateName): Promise<void> {
|
|
66
|
+
return
|
|
67
|
+
}
|
|
68
|
+
}
|
package/src/verbs/ctx.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `tm ctx <name>` — report a teammate's context-window usage.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { formatContext } from './format'
|
|
6
|
+
import type { ContextRequest, TeammateName } from '../engines/types'
|
|
7
|
+
import type { TmResult } from '../tm'
|
|
8
|
+
import type { VerbContext } from './context'
|
|
9
|
+
import { resolveTargetEngine } from './resolve'
|
|
10
|
+
|
|
11
|
+
export async function ctxVerb(
|
|
12
|
+
name: TeammateName,
|
|
13
|
+
ctx: VerbContext,
|
|
14
|
+
opts: { readonly windowOverride: '' | '200k' | '1m' },
|
|
15
|
+
): Promise<TmResult> {
|
|
16
|
+
const engine = await resolveTargetEngine(name, ctx)
|
|
17
|
+
if ('code' in engine) return engine
|
|
18
|
+
|
|
19
|
+
const req: ContextRequest = { name, windowOverride: opts.windowOverride }
|
|
20
|
+
return formatContext(await engine.ctx(req, ctx.engineContext))
|
|
21
|
+
}
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Verb-layer formatting helpers — turn structured engine results into
|
|
3
|
+
* the `TmResult` (`{code, stdout, stderr}`) shape the CLI dispatcher
|
|
4
|
+
* emits. Decision multi-engine-tui-architecture §"Verb is the abstraction" makes the verb own
|
|
5
|
+
* exit codes and formatting; engines never decide either.
|
|
6
|
+
*
|
|
7
|
+
* Phase 1 lands minimal formatters good enough for the verb skeletons
|
|
8
|
+
* to compile and produce a sensible CLI surface for the
|
|
9
|
+
* "no engine registered" / "teammate not found" / "not supported"
|
|
10
|
+
* cases. Phase 2's `presentation/format-*.ts` modules will replace
|
|
11
|
+
* these as the rich formatting layer.
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
import type {
|
|
15
|
+
CompactResult,
|
|
16
|
+
ContextResult,
|
|
17
|
+
HistoryResult,
|
|
18
|
+
KillResult,
|
|
19
|
+
RawTmResult,
|
|
20
|
+
ReloadResult,
|
|
21
|
+
ResumeResult,
|
|
22
|
+
TeammateListing,
|
|
23
|
+
TeammateName,
|
|
24
|
+
TeammateStatus,
|
|
25
|
+
TurnResult,
|
|
26
|
+
} from '../engines/types'
|
|
27
|
+
import { EXIT_SYNC_WAIT_EXPIRED, type TmResult } from '../tm'
|
|
28
|
+
|
|
29
|
+
function rawTmResult(result: RawTmResult): TmResult | null {
|
|
30
|
+
return result.tmResult ?? null
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* The "no teammate by this name" verb outcome. Exit code 1 follows the
|
|
35
|
+
* convention every existing `die`-shaped verb uses today.
|
|
36
|
+
*/
|
|
37
|
+
export function teammateNotFound(name: TeammateName): TmResult {
|
|
38
|
+
return { code: 1, stdout: '', stderr: `tm: no such teammate: ${name}\n` }
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* The "no engine for this kind is registered in this process" verb
|
|
43
|
+
* outcome. Surfaces a missing Phase 2 wiring loudly rather than
|
|
44
|
+
* silently dispatching to nothing.
|
|
45
|
+
*/
|
|
46
|
+
export function noEngineRegistered(): TmResult {
|
|
47
|
+
return {
|
|
48
|
+
code: 1,
|
|
49
|
+
stdout: '',
|
|
50
|
+
stderr: 'tm: no engine registered in this process (Phase 2 wiring pending)\n',
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/** Last path segment, or `-` when the path is empty / "/". */
|
|
55
|
+
function repoLeaf(path: string): string {
|
|
56
|
+
if (path.length === 0) return '-'
|
|
57
|
+
const trimmed = path.replace(/\/+$/, '')
|
|
58
|
+
const slash = trimmed.lastIndexOf('/')
|
|
59
|
+
const leaf = slash >= 0 ? trimmed.slice(slash + 1) : trimmed
|
|
60
|
+
return leaf.length === 0 ? '-' : leaf
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function formatListing(rows: readonly TeammateListing[]): TmResult {
|
|
64
|
+
if (rows.length === 0) {
|
|
65
|
+
return {
|
|
66
|
+
code: 0,
|
|
67
|
+
stdout: "(no teammate sessions; use 'tm spawn <path>')\n",
|
|
68
|
+
stderr: '',
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
const lines = rows.map((r) =>
|
|
72
|
+
[
|
|
73
|
+
r.name,
|
|
74
|
+
repoLeaf(r.repo),
|
|
75
|
+
r.worktreeSlug ?? '-',
|
|
76
|
+
r.engine,
|
|
77
|
+
r.state,
|
|
78
|
+
].join('\t'),
|
|
79
|
+
)
|
|
80
|
+
return { code: 0, stdout: `${lines.join('\n')}\n`, stderr: '' }
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function formatStatus(status: TeammateStatus): TmResult {
|
|
84
|
+
switch (status.kind) {
|
|
85
|
+
case 'present': {
|
|
86
|
+
// Phase 2a-1: the verb prints the captured pane text — same as the
|
|
87
|
+
// legacy `tm status` did via `tmux capture-pane`. Phase 2a-2 may
|
|
88
|
+
// prepend a structured header once the dispatcher consumers are
|
|
89
|
+
// aware of the format change.
|
|
90
|
+
return { code: 0, stdout: status.pane ?? '', stderr: '' }
|
|
91
|
+
}
|
|
92
|
+
case 'not-found':
|
|
93
|
+
return { code: 1, stdout: '', stderr: 'tm: status: not found\n' }
|
|
94
|
+
case 'failed':
|
|
95
|
+
return { code: 1, stdout: '', stderr: `tm: status: ${status.message}\n` }
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export function formatKill(name: TeammateName, result: KillResult): TmResult {
|
|
100
|
+
switch (result.kind) {
|
|
101
|
+
case 'killed':
|
|
102
|
+
return {
|
|
103
|
+
code: 0,
|
|
104
|
+
stdout: `killed: ${name}\n`,
|
|
105
|
+
stderr: result.note ?? '',
|
|
106
|
+
}
|
|
107
|
+
case 'not-found':
|
|
108
|
+
return { code: 0, stdout: `not running: ${name}\n`, stderr: '' }
|
|
109
|
+
case 'failed':
|
|
110
|
+
return { code: 1, stdout: '', stderr: `tm: kill: ${result.message}\n` }
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export function formatTurn(turn: TurnResult): TmResult {
|
|
115
|
+
const raw = rawTmResult(turn)
|
|
116
|
+
if (raw !== null) return raw
|
|
117
|
+
switch (turn.kind) {
|
|
118
|
+
case 'completed':
|
|
119
|
+
return { code: 0, stdout: turn.text.endsWith('\n') ? turn.text : `${turn.text}\n`, stderr: '' }
|
|
120
|
+
case 'failed':
|
|
121
|
+
return { code: 1, stdout: '', stderr: `tm: turn failed: ${turn.message}\n` }
|
|
122
|
+
case 'timed-out':
|
|
123
|
+
return {
|
|
124
|
+
code: EXIT_SYNC_WAIT_EXPIRED,
|
|
125
|
+
stdout: '',
|
|
126
|
+
stderr:
|
|
127
|
+
`tm: sync wait expired after ${turn.elapsedMs}ms (the teammate did ` +
|
|
128
|
+
`not return a Turn within the window; it is still running). ` +
|
|
129
|
+
`exit ${EXIT_SYNC_WAIT_EXPIRED}.\n`,
|
|
130
|
+
}
|
|
131
|
+
case 'not-supported':
|
|
132
|
+
return { code: 0, stdout: '', stderr: ` not supported: ${turn.reason}\n` }
|
|
133
|
+
case 'no-op':
|
|
134
|
+
return { code: 0, stdout: '', stderr: ` no-op: ${turn.reason}\n` }
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export function formatCompact(result: CompactResult): TmResult {
|
|
139
|
+
const raw = rawTmResult(result)
|
|
140
|
+
if (raw !== null) return raw
|
|
141
|
+
switch (result.kind) {
|
|
142
|
+
case 'compacted':
|
|
143
|
+
return { code: 0, stdout: 'compacted\n', stderr: '' }
|
|
144
|
+
case 'not-needed':
|
|
145
|
+
return { code: 0, stdout: '', stderr: ` not needed: ${result.reason}\n` }
|
|
146
|
+
case 'not-supported':
|
|
147
|
+
return { code: 0, stdout: '', stderr: ` not supported: ${result.reason}\n` }
|
|
148
|
+
case 'failed':
|
|
149
|
+
return { code: 1, stdout: '', stderr: `tm: compact: ${result.message}\n` }
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export function formatHistory(result: HistoryResult): TmResult {
|
|
154
|
+
const raw = rawTmResult(result)
|
|
155
|
+
if (raw !== null) return raw
|
|
156
|
+
switch (result.kind) {
|
|
157
|
+
case 'list': {
|
|
158
|
+
const lines = result.turns.map((t) => `#${t.index}\t${t.summary}`)
|
|
159
|
+
return { code: 0, stdout: `${lines.join('\n')}\n`, stderr: '' }
|
|
160
|
+
}
|
|
161
|
+
case 'detail':
|
|
162
|
+
return { code: 0, stdout: `#${result.turn.index}\t${result.turn.summary}\n`, stderr: '' }
|
|
163
|
+
case 'not-supported':
|
|
164
|
+
return { code: 0, stdout: '', stderr: ` not supported: ${result.reason}\n` }
|
|
165
|
+
case 'failed':
|
|
166
|
+
return { code: 1, stdout: '', stderr: `tm: history: ${result.message}\n` }
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export function formatContext(result: ContextResult): TmResult {
|
|
171
|
+
const raw = rawTmResult(result)
|
|
172
|
+
if (raw !== null) return raw
|
|
173
|
+
switch (result.kind) {
|
|
174
|
+
case 'usage':
|
|
175
|
+
return {
|
|
176
|
+
code: 0,
|
|
177
|
+
stdout: `${result.tokensUsed} tokens · ${result.pct}% of ${result.tokensTotal}\n`,
|
|
178
|
+
stderr: '',
|
|
179
|
+
}
|
|
180
|
+
case 'not-supported':
|
|
181
|
+
return { code: 0, stdout: '', stderr: ` not supported: ${result.reason}\n` }
|
|
182
|
+
case 'failed':
|
|
183
|
+
return { code: 1, stdout: '', stderr: `tm: ctx: ${result.message}\n` }
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
export function formatResume(result: ResumeResult): TmResult {
|
|
188
|
+
const raw = rawTmResult(result)
|
|
189
|
+
if (raw !== null) return raw
|
|
190
|
+
switch (result.kind) {
|
|
191
|
+
case 'resumed':
|
|
192
|
+
return { code: 0, stdout: `resumed: ${result.checkpoint ?? ''}\n`, stderr: '' }
|
|
193
|
+
case 'not-found':
|
|
194
|
+
return { code: 1, stdout: '', stderr: `tm: resume: ${result.reason}\n` }
|
|
195
|
+
case 'not-supported':
|
|
196
|
+
return { code: 0, stdout: '', stderr: ` not supported: ${result.reason}\n` }
|
|
197
|
+
case 'failed':
|
|
198
|
+
return { code: 1, stdout: '', stderr: `tm: resume: ${result.message}\n` }
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export function formatReload(result: ReloadResult): TmResult {
|
|
203
|
+
const raw = rawTmResult(result)
|
|
204
|
+
if (raw !== null) return raw
|
|
205
|
+
switch (result.kind) {
|
|
206
|
+
case 'reloaded':
|
|
207
|
+
return { code: 0, stdout: 'reloaded\n', stderr: '' }
|
|
208
|
+
case 'not-supported':
|
|
209
|
+
return { code: 0, stdout: '', stderr: ` not supported: ${result.reason}\n` }
|
|
210
|
+
case 'failed':
|
|
211
|
+
return { code: 1, stdout: '', stderr: `tm: reload: ${result.message}\n` }
|
|
212
|
+
}
|
|
213
|
+
}
|