@iaforged/context-code 1.3.5 → 1.3.6
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/README.md +38 -0
- package/dist/src/bridge/bridgeMain.js +40 -40
- package/dist/src/bridge/bridgeUI.js +1 -1
- package/dist/src/buddy/prompt.js +4 -4
- package/dist/src/cli/print.js +12 -12
- package/dist/src/commands/commit-push-pr.js +55 -55
- package/dist/src/commands/commit.js +34 -34
- package/dist/src/commands/init.js +88 -88
- package/dist/src/commands/insights.js +787 -787
- package/dist/src/commands/install.js +21 -21
- package/dist/src/commands/objetivo/index.js +9 -0
- package/dist/src/commands/objetivo/objetivo.js +137 -0
- package/dist/src/commands/plugin/BrowseMarketplace.js +6 -0
- package/dist/src/commands/security-review.js +190 -190
- package/dist/src/commands/swarm-auto/swarmAuto.js +2 -2
- package/dist/src/commands/terminalSetup/terminalSetup.js +24 -24
- package/dist/src/commands.js +2 -0
- package/dist/src/components/PromptInput/PromptInput.js +16 -0
- package/dist/src/components/PromptInput/PromptInputFooter.js +17 -2
- package/dist/src/components/PromptInput/PromptInputQueuedCommands.js +3 -3
- package/dist/src/components/Spinner.js +3 -0
- package/dist/src/components/agents/agentFileUtils.js +6 -6
- package/dist/src/components/agents/generateAgent.js +92 -92
- package/dist/src/components/design-system/FuzzyPicker.js +3 -0
- package/dist/src/components/grove/Grove.js +10 -10
- package/dist/src/components/messages/CollapsedReadSearchContent.js +3 -0
- package/dist/src/components/permissions/AskUserQuestionPermissionRequest/AskUserQuestionPermissionRequest.js +8 -8
- package/dist/src/components/permissions/hooks.js +5 -5
- package/dist/src/constants/outputStyles.js +83 -83
- package/dist/src/constants/prompts.js +123 -123
- package/dist/src/coordinator/coordinatorMode.js +252 -252
- package/dist/src/core/agents/legacy/cliAdapter.impl.js +62 -0
- package/dist/src/core/agents/legacy/deps.js +12 -0
- package/dist/src/core/agents/legacy/orchestrateCliAdapter.impl.js +2 -0
- package/dist/src/core/agents/legacy/services/mcp/config.js +1 -0
- package/dist/src/core/agents/legacy/services/orchestration/index.js +1 -0
- package/dist/src/core/agents/legacy/services/sessionMemory/sessionMemory.js +1 -0
- package/dist/src/core/agents/legacy/storeCliAdapter.impl.js +2 -0
- package/dist/src/core/agents/legacy/utils/activityManager.js +1 -0
- package/dist/src/core/agents/legacy/utils/debug.js +1 -0
- package/dist/src/core/agents/legacy/utils/messages.js +1 -0
- package/dist/src/core/agents/legacy/utils/model/providerCatalog.js +1 -0
- package/dist/src/core/agents/legacy/utils/model/providerProfiles.js +1 -0
- package/dist/src/core/agents/legacy/utils/model/providerWorkspaces.js +1 -0
- package/dist/src/core/agents/legacy/utils/orchestration/store/index.js +1 -0
- package/dist/src/core/agents/legacy/utils/orchestration/store/types.js +1 -0
- package/dist/src/core/agents/legacy/utils/secureStorage/index.js +1 -0
- package/dist/src/core/agents/orchestrateCliAdapter.js +1 -0
- package/dist/src/core/agents/storeCliAdapter.js +1 -0
- package/dist/src/core/assistant/legacy/debugCliAdapter.js +1 -0
- package/dist/src/core/assistant/legacy/teleportApiCliAdapter.js +1 -0
- package/dist/src/core/auth/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/auth/legacy/deps.js +25 -0
- package/dist/src/core/auth/legacy/hooks/useMainLoopModel.js +1 -0
- package/dist/src/core/auth/legacy/loginCliAdapter.impl.js +16 -0
- package/dist/src/core/auth/legacy/loginCommandCliAdapter.impl.js +7 -0
- package/dist/src/core/auth/legacy/logoutCliAdapter.impl.js +21 -0
- package/dist/src/core/auth/legacy/logoutCommandCliAdapter.impl.js +2 -0
- package/dist/src/core/auth/legacy/openaiLoginCliAdapter.impl.js +9 -0
- package/dist/src/core/auth/legacy/privacySettingsCliAdapter.impl.js +7 -0
- package/dist/src/core/auth/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/auth/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/auth/legacy/services/api/grove.js +1 -0
- package/dist/src/core/auth/legacy/services/policyLimits/index.js +1 -0
- package/dist/src/core/auth/legacy/services/remoteManagedSettings/index.js +1 -0
- package/dist/src/core/auth/legacy/subscriberCliAdapter.impl.js +2 -0
- package/dist/src/core/auth/legacy/utils/auth.js +1 -0
- package/dist/src/core/auth/legacy/utils/betas.js +1 -0
- package/dist/src/core/auth/legacy/utils/config.js +1 -0
- package/dist/src/core/auth/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/auth/legacy/utils/gracefulShutdown.js +1 -0
- package/dist/src/core/auth/legacy/utils/messages.js +1 -0
- package/dist/src/core/auth/legacy/utils/model/providerSwitch.js +1 -0
- package/dist/src/core/auth/legacy/utils/model/providers.js +1 -0
- package/dist/src/core/auth/legacy/utils/permissions/bypassPermissionsKillswitch.js +1 -0
- package/dist/src/core/auth/legacy/utils/secureStorage/index.js +1 -0
- package/dist/src/core/auth/legacy/utils/telemetry/instrumentation.js +1 -0
- package/dist/src/core/auth/legacy/utils/toolSchemaCache.js +1 -0
- package/dist/src/core/auth/legacy/utils/user.js +1 -0
- package/dist/src/core/auth/loginCommandCliAdapter.js +1 -0
- package/dist/src/core/auth/logoutCommandCliAdapter.js +1 -0
- package/dist/src/core/auth/openaiLoginCliAdapter.js +1 -0
- package/dist/src/core/auth/openaiLoginCore.js +21 -0
- package/dist/src/core/auth/privacySettingsCliAdapter.js +1 -0
- package/dist/src/core/auth/privacySettingsCore.js +10 -0
- package/dist/src/core/auth/subscriberCliAdapter.js +1 -0
- package/dist/src/core/bridge/cliAdapter.js +3 -0
- package/dist/src/core/bridge/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/bridge/legacy/cliAdapter.impl.js +11 -0
- package/dist/src/core/bridge/legacy/context/overlayContext.js +1 -0
- package/dist/src/core/bridge/legacy/services/analytics/datadog.js +1 -0
- package/dist/src/core/bridge/legacy/services/analytics/firstPartyEventLogger.js +1 -0
- package/dist/src/core/bridge/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/bridge/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/bridge/legacy/services/api/emptyUsage.js +1 -0
- package/dist/src/core/bridge/legacy/services/oauth/client.js +1 -0
- package/dist/src/core/bridge/legacy/services/policyLimits/index.js +1 -0
- package/dist/src/core/bridge/legacy/sharedCliAdapter.impl.js +16 -0
- package/dist/src/core/bridge/legacy/state/AppState.js +1 -0
- package/dist/src/core/bridge/legacy/utils/auth.js +1 -0
- package/dist/src/core/bridge/legacy/utils/bundledMode.js +1 -0
- package/dist/src/core/bridge/legacy/utils/cleanupRegistry.js +1 -0
- package/dist/src/core/bridge/legacy/utils/concurrentSessions.js +1 -0
- package/dist/src/core/bridge/legacy/utils/config.js +1 -0
- package/dist/src/core/bridge/legacy/utils/controlMessageCompat.js +1 -0
- package/dist/src/core/bridge/legacy/utils/debug.js +1 -0
- package/dist/src/core/bridge/legacy/utils/detectRepository.js +1 -0
- package/dist/src/core/bridge/legacy/utils/diagLogs.js +1 -0
- package/dist/src/core/bridge/legacy/utils/displayTags.js +1 -0
- package/dist/src/core/bridge/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/bridge/legacy/utils/errors.js +1 -0
- package/dist/src/core/bridge/legacy/utils/format.js +1 -0
- package/dist/src/core/bridge/legacy/utils/getWorktreePathsPortable.js +1 -0
- package/dist/src/core/bridge/legacy/utils/git.js +1 -0
- package/dist/src/core/bridge/legacy/utils/hooks.js +1 -0
- package/dist/src/core/bridge/legacy/utils/imageResizer.js +1 -0
- package/dist/src/core/bridge/legacy/utils/intl.js +1 -0
- package/dist/src/core/bridge/legacy/utils/lazySchema.js +1 -0
- package/dist/src/core/bridge/legacy/utils/log.js +1 -0
- package/dist/src/core/bridge/legacy/utils/messages/mappers.js +1 -0
- package/dist/src/core/bridge/legacy/utils/messages.js +1 -0
- package/dist/src/core/bridge/legacy/utils/model/model.js +1 -0
- package/dist/src/core/bridge/legacy/utils/permissions/PermissionMode.js +1 -0
- package/dist/src/core/bridge/legacy/utils/permissions/PermissionUpdateSchema.js +1 -0
- package/dist/src/core/bridge/legacy/utils/privacyLevel.js +1 -0
- package/dist/src/core/bridge/legacy/utils/secureStorage/index.js +1 -0
- package/dist/src/core/bridge/legacy/utils/semver.js +1 -0
- package/dist/src/core/bridge/legacy/utils/sessionIngressAuth.js +1 -0
- package/dist/src/core/bridge/legacy/utils/sessionState.js +1 -0
- package/dist/src/core/bridge/legacy/utils/sessionStorage.js +1 -0
- package/dist/src/core/bridge/legacy/utils/sessionStoragePortable.js +1 -0
- package/dist/src/core/bridge/legacy/utils/sessionTitle.js +1 -0
- package/dist/src/core/bridge/legacy/utils/sinks.js +1 -0
- package/dist/src/core/bridge/legacy/utils/sleep.js +1 -0
- package/dist/src/core/bridge/legacy/utils/slowOperations.js +1 -0
- package/dist/src/core/bridge/legacy/utils/teleport/api.js +1 -0
- package/dist/src/core/bridge/legacy/utils/words.js +1 -0
- package/dist/src/core/bridge/legacy/utils/worktree.js +1 -0
- package/dist/src/core/bridge/runtime.js +34 -0
- package/dist/src/core/bridge/sharedCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/appStateCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/appStateStoreCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/attachmentsCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/configCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/fullscreenCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/notificationsCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/themeCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/thinkingCliAdapter.js +1 -0
- package/dist/src/core/buddy/legacy/useTerminalSizeCliAdapter.js +1 -0
- package/dist/src/core/cli/autoModeCliAdapter.js +1 -0
- package/dist/src/core/cli/commandPromptCliAdapter.js +6 -0
- package/dist/src/core/cli/legacy/autoModeCliAdapter.impl.js +7 -0
- package/dist/src/core/cli/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/cli/legacy/claudeDesktopCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/cronJitterConfigCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/cronSchedulerCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/extractMemoriesCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/hooks/useManagePlugins.js +1 -0
- package/dist/src/core/cli/legacy/loadPluginHooksCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/modelListCliAdapter.impl.js +4 -0
- package/dist/src/core/cli/legacy/ndjsonCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/pluginStartupCheckCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/printCliAdapter.js +17 -0
- package/dist/src/core/cli/legacy/projectsBridgeCliAdapter.impl.js +31 -0
- package/dist/src/core/cli/legacy/providerCliAdapter.impl.js +4 -0
- package/dist/src/core/cli/legacy/remoteIOCliAdapter.js +13 -0
- package/dist/src/core/cli/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/cli/legacy/services/api/errorUtils.js +1 -0
- package/dist/src/core/cli/legacy/services/api/firstTokenDate.js +1 -0
- package/dist/src/core/cli/legacy/services/mcp/MCPConnectionManager.js +1 -0
- package/dist/src/core/cli/legacy/services/mcp/auth.js +1 -0
- package/dist/src/core/cli/legacy/services/mcp/client.js +1 -0
- package/dist/src/core/cli/legacy/services/mcp/config.js +1 -0
- package/dist/src/core/cli/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/cli/legacy/services/mcp/utils.js +1 -0
- package/dist/src/core/cli/legacy/services/oauth/client.js +1 -0
- package/dist/src/core/cli/legacy/services/oauth/geminiCli.js +1 -0
- package/dist/src/core/cli/legacy/services/oauth/getOauthProfile.js +1 -0
- package/dist/src/core/cli/legacy/services/oauth/index.js +1 -0
- package/dist/src/core/cli/legacy/services/oauth/types.js +1 -0
- package/dist/src/core/cli/legacy/services/plugins/pluginCliCommands.js +1 -0
- package/dist/src/core/cli/legacy/state/AppState.js +1 -0
- package/dist/src/core/cli/legacy/state/onChangeAppState.js +1 -0
- package/dist/src/core/cli/legacy/structuredIOCliAdapter.js +11 -0
- package/dist/src/core/cli/legacy/telemetryCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/udsMessagingCliAdapter.js +1 -0
- package/dist/src/core/cli/legacy/utils/CircularBuffer.js +1 -0
- package/dist/src/core/cli/legacy/utils/auth.js +1 -0
- package/dist/src/core/cli/legacy/utils/config.js +1 -0
- package/dist/src/core/cli/legacy/utils/cwd.js +1 -0
- package/dist/src/core/cli/legacy/utils/debug.js +1 -0
- package/dist/src/core/cli/legacy/utils/diagLogs.js +1 -0
- package/dist/src/core/cli/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/cli/legacy/utils/errors.js +1 -0
- package/dist/src/core/cli/legacy/utils/gracefulShutdown.js +1 -0
- package/dist/src/core/cli/legacy/utils/json.js +1 -0
- package/dist/src/core/cli/legacy/utils/log.js +1 -0
- package/dist/src/core/cli/legacy/utils/model/providerBaseUrls.js +1 -0
- package/dist/src/core/cli/legacy/utils/model/providerProfiles.js +1 -0
- package/dist/src/core/cli/legacy/utils/model/providerProfilesDb.js +1 -0
- package/dist/src/core/cli/legacy/utils/model/providers.js +1 -0
- package/dist/src/core/cli/legacy/utils/mtls.js +1 -0
- package/dist/src/core/cli/legacy/utils/platform.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/cacheUtils.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/installCounts.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/installedPluginsManager.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/marketplaceHelpers.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/marketplaceManager.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/mcpPluginIntegration.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/parseMarketplaceInput.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/pluginIdentifier.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/pluginLoader.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/schemas.js +1 -0
- package/dist/src/core/cli/legacy/utils/plugins/validatePlugin.js +1 -0
- package/dist/src/core/cli/legacy/utils/proxy.js +1 -0
- package/dist/src/core/cli/legacy/utils/secureStorage/index.js +1 -0
- package/dist/src/core/cli/legacy/utils/sessionActivity.js +1 -0
- package/dist/src/core/cli/legacy/utils/sessionIngressAuth.js +1 -0
- package/dist/src/core/cli/legacy/utils/sessionState.js +1 -0
- package/dist/src/core/cli/legacy/utils/settings/settings.js +1 -0
- package/dist/src/core/cli/legacy/utils/sleep.js +1 -0
- package/dist/src/core/cli/legacy/utils/slowOperations.js +1 -0
- package/dist/src/core/cli/legacy/utils/status.js +1 -0
- package/dist/src/core/cli/legacy/utils/stringUtils.js +1 -0
- package/dist/src/core/cli/legacy/utils/userAgent.js +1 -0
- package/dist/src/core/cli/modelListCliAdapter.js +1 -0
- package/dist/src/core/cli/projectsBridgeCliAdapter.js +1 -0
- package/dist/src/core/cli/providerCliAdapter.js +1 -0
- package/dist/src/core/cli/runtime/headlessPrelude.js +116 -0
- package/dist/src/core/cli/runtime/mcpControlFlow.js +263 -0
- package/dist/src/core/cli/runtime/mcpLifecycle.js +106 -0
- package/dist/src/core/cli/runtime/permissionFlow.js +58 -0
- package/dist/src/core/cli/runtime/printDependencies.js +81 -0
- package/dist/src/core/cli/runtime/sessionLifecycle.js +199 -0
- package/dist/src/core/cli/runtime/sessionStateEmitters.js +10 -0
- package/dist/src/core/cli/runtime/structuredIORuntime.js +175 -0
- package/dist/src/core/cli/runtime/updateRuntime.js +292 -0
- package/dist/src/core/commands/commitCore.js +53 -0
- package/dist/src/core/commands/commitPushPrCore.js +105 -0
- package/dist/src/core/commands/promptExecution.js +20 -0
- package/dist/src/core/commands/securityReviewCore.js +199 -0
- package/dist/src/core/components/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/components/legacy/bootstrap/state.js.js +2 -0
- package/dist/src/core/components/legacy/context/QueuedMessageContext.js +1 -0
- package/dist/src/core/components/legacy/context/QueuedMessageContext.js.js +2 -0
- package/dist/src/core/components/legacy/context/fpsMetrics.js +1 -0
- package/dist/src/core/components/legacy/context/fpsMetrics.js.js +2 -0
- package/dist/src/core/components/legacy/context/modalContext.js +1 -0
- package/dist/src/core/components/legacy/context/modalContext.js.js +2 -0
- package/dist/src/core/components/legacy/context/notifications.js +1 -0
- package/dist/src/core/components/legacy/context/notifications.js.js +2 -0
- package/dist/src/core/components/legacy/context/overlayContext.js +1 -0
- package/dist/src/core/components/legacy/context/overlayContext.js.js +2 -0
- package/dist/src/core/components/legacy/context/promptOverlayContext.js +1 -0
- package/dist/src/core/components/legacy/context/promptOverlayContext.js.js +2 -0
- package/dist/src/core/components/legacy/context/stats.js +1 -0
- package/dist/src/core/components/legacy/context/stats.js.js +2 -0
- package/dist/src/core/components/legacy/context/voice.js +1 -0
- package/dist/src/core/components/legacy/context/voice.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/fileSuggestions.js +1 -0
- package/dist/src/core/components/legacy/hooks/fileSuggestions.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/permissionLogging.js +1 -0
- package/dist/src/core/components/legacy/hooks/renderPlaceholder.js +1 -0
- package/dist/src/core/components/legacy/hooks/renderPlaceholder.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useApiKeyVerification.js +1 -0
- package/dist/src/core/components/legacy/hooks/useApiKeyVerification.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useArrowKeyHistory.js +1 -0
- package/dist/src/core/components/legacy/hooks/useArrowKeyHistory.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useCanUseTool.js +1 -0
- package/dist/src/core/components/legacy/hooks/useCommandQueue.js +1 -0
- package/dist/src/core/components/legacy/hooks/useCommandQueue.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useCopyOnSelect.js +1 -0
- package/dist/src/core/components/legacy/hooks/useCopyOnSelect.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useDoublePress.js +1 -0
- package/dist/src/core/components/legacy/hooks/useDoublePress.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useElapsedTime.js +1 -0
- package/dist/src/core/components/legacy/hooks/useElapsedTime.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useExitOnCtrlCDWithKeybindings.js +1 -0
- package/dist/src/core/components/legacy/hooks/useExitOnCtrlCDWithKeybindings.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useHistorySearch.js +1 -0
- package/dist/src/core/components/legacy/hooks/useHistorySearch.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useIdeConnectionStatus.js +1 -0
- package/dist/src/core/components/legacy/hooks/useIdeConnectionStatus.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useIdeSelection.js +1 -0
- package/dist/src/core/components/legacy/hooks/useIdeSelection.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useInputBuffer.js +1 -0
- package/dist/src/core/components/legacy/hooks/useInputBuffer.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useMainLoopModel.js +1 -0
- package/dist/src/core/components/legacy/hooks/useMainLoopModel.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useManagePlugins.js +1 -0
- package/dist/src/core/components/legacy/hooks/useMemoryUsage.js +1 -0
- package/dist/src/core/components/legacy/hooks/useMemoryUsage.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/usePasteHandler.js +1 -0
- package/dist/src/core/components/legacy/hooks/usePasteHandler.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/usePrStatus.js +1 -0
- package/dist/src/core/components/legacy/hooks/usePrStatus.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/usePromptSuggestion.js +1 -0
- package/dist/src/core/components/legacy/hooks/usePromptSuggestion.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useSearchInput.js +1 -0
- package/dist/src/core/components/legacy/hooks/useSearchInput.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useSettings.js +1 -0
- package/dist/src/core/components/legacy/hooks/useSettings.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useSettingsChange.js +1 -0
- package/dist/src/core/components/legacy/hooks/useSwarmPermissionPoller.js +1 -0
- package/dist/src/core/components/legacy/hooks/useTasksV2.js +1 -0
- package/dist/src/core/components/legacy/hooks/useTasksV2.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useTerminalSize.js +1 -0
- package/dist/src/core/components/legacy/hooks/useTerminalSize.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useTimeout.js +1 -0
- package/dist/src/core/components/legacy/hooks/useTypeahead.js +1 -0
- package/dist/src/core/components/legacy/hooks/useTypeahead.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useUpdateNotification.js +1 -0
- package/dist/src/core/components/legacy/hooks/useUpdateNotification.js.js +2 -0
- package/dist/src/core/components/legacy/hooks/useVoiceEnabled.js +1 -0
- package/dist/src/core/components/legacy/hooks/useVoiceEnabled.js.js +2 -0
- package/dist/src/core/components/legacy/services/PromptSuggestion/promptSuggestion.js +1 -0
- package/dist/src/core/components/legacy/services/PromptSuggestion/promptSuggestion.js.js +2 -0
- package/dist/src/core/components/legacy/services/PromptSuggestion/speculation.js +1 -0
- package/dist/src/core/components/legacy/services/PromptSuggestion/speculation.js.js +2 -0
- package/dist/src/core/components/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/components/legacy/services/analytics/growthbook.js.js +2 -0
- package/dist/src/core/components/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/components/legacy/services/analytics/index.js.js +2 -0
- package/dist/src/core/components/legacy/services/api/claude.js +1 -0
- package/dist/src/core/components/legacy/services/api/claude.js.js +2 -0
- package/dist/src/core/components/legacy/services/api/errorUtils.js +1 -0
- package/dist/src/core/components/legacy/services/api/errorUtils.js.js +2 -0
- package/dist/src/core/components/legacy/services/api/errors.js +1 -0
- package/dist/src/core/components/legacy/services/api/errors.js.js +2 -0
- package/dist/src/core/components/legacy/services/api/overageCreditGrant.js +1 -0
- package/dist/src/core/components/legacy/services/api/overageCreditGrant.js.js +2 -0
- package/dist/src/core/components/legacy/services/api/referral.js +1 -0
- package/dist/src/core/components/legacy/services/api/referral.js.js +2 -0
- package/dist/src/core/components/legacy/services/api/usage.js +1 -0
- package/dist/src/core/components/legacy/services/api/usage.js.js +2 -0
- package/dist/src/core/components/legacy/services/claudeAiLimits.js +1 -0
- package/dist/src/core/components/legacy/services/claudeAiLimits.js.js +2 -0
- package/dist/src/core/components/legacy/services/claudeAiLimitsHook.js +1 -0
- package/dist/src/core/components/legacy/services/claudeAiLimitsHook.js.js +2 -0
- package/dist/src/core/components/legacy/services/compact/autoCompact.js +1 -0
- package/dist/src/core/components/legacy/services/compact/autoCompact.js.js +2 -0
- package/dist/src/core/components/legacy/services/compact/sessionMemoryCompact.js +1 -0
- package/dist/src/core/components/legacy/services/compact/sessionMemoryCompact.js.js +2 -0
- package/dist/src/core/components/legacy/services/compact/snipCompact.js +1 -0
- package/dist/src/core/components/legacy/services/compact/snipCompact.js.js +2 -0
- package/dist/src/core/components/legacy/services/compact/snipProjection.js +1 -0
- package/dist/src/core/components/legacy/services/compact/snipProjection.js.js +2 -0
- package/dist/src/core/components/legacy/services/contextCollapse/index.js +1 -0
- package/dist/src/core/components/legacy/services/contextCollapse/index.js.js +2 -0
- package/dist/src/core/components/legacy/services/diagnosticTracking.js +1 -0
- package/dist/src/core/components/legacy/services/diagnosticTracking.js.js +2 -0
- package/dist/src/core/components/legacy/services/mcp/channelAllowlist.js +1 -0
- package/dist/src/core/components/legacy/services/mcp/channelAllowlist.js.js +2 -0
- package/dist/src/core/components/legacy/services/mcp/channelNotification.js +1 -0
- package/dist/src/core/components/legacy/services/mcp/channelNotification.js.js +2 -0
- package/dist/src/core/components/legacy/services/mcp/config.js +1 -0
- package/dist/src/core/components/legacy/services/mcp/config.js.js +2 -0
- package/dist/src/core/components/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/components/legacy/services/mcp/types.js.js +2 -0
- package/dist/src/core/components/legacy/services/notifier.js +1 -0
- package/dist/src/core/components/legacy/services/notifier.js.js +2 -0
- package/dist/src/core/components/legacy/services/oauth/client.js +1 -0
- package/dist/src/core/components/legacy/services/oauth/client.js.js +2 -0
- package/dist/src/core/components/legacy/services/oauth/geminiCli.js +1 -0
- package/dist/src/core/components/legacy/services/oauth/geminiCli.js.js +2 -0
- package/dist/src/core/components/legacy/services/oauth/index.js +1 -0
- package/dist/src/core/components/legacy/services/oauth/index.js.js +2 -0
- package/dist/src/core/components/legacy/services/oauth/types.js +1 -0
- package/dist/src/core/components/legacy/services/oauth/types.js.js +2 -0
- package/dist/src/core/components/legacy/services/policyLimits/index.js +1 -0
- package/dist/src/core/components/legacy/services/policyLimits/index.js.js +2 -0
- package/dist/src/core/components/legacy/state/AppState.js +1 -0
- package/dist/src/core/components/legacy/state/AppState.js.js +2 -0
- package/dist/src/core/components/legacy/state/onChangeAppState.js +1 -0
- package/dist/src/core/components/legacy/state/onChangeAppState.js.js +2 -0
- package/dist/src/core/components/legacy/state/selectors.js +1 -0
- package/dist/src/core/components/legacy/state/selectors.js.js +2 -0
- package/dist/src/core/components/legacy/state/teammateViewHelpers.js +1 -0
- package/dist/src/core/components/legacy/state/teammateViewHelpers.js.js +2 -0
- package/dist/src/core/components/legacy/tasks/BackgroundTaskStatus.js +1 -0
- package/dist/src/core/components/legacy/tasks/BackgroundTaskStatus.js.js +2 -0
- package/dist/src/core/components/legacy/tasks/BackgroundTasksDialog.js +1 -0
- package/dist/src/core/components/legacy/tasks/BackgroundTasksDialog.js.js +2 -0
- package/dist/src/core/components/legacy/tasks/InProcessTeammateTask/InProcessTeammateTask.js +1 -0
- package/dist/src/core/components/legacy/tasks/InProcessTeammateTask/InProcessTeammateTask.js.js +2 -0
- package/dist/src/core/components/legacy/tasks/InProcessTeammateTask/types.js +1 -0
- package/dist/src/core/components/legacy/tasks/InProcessTeammateTask/types.js.js +2 -0
- package/dist/src/core/components/legacy/tasks/LocalAgentTask/LocalAgentTask.js +1 -0
- package/dist/src/core/components/legacy/tasks/LocalAgentTask/LocalAgentTask.js.js +2 -0
- package/dist/src/core/components/legacy/tasks/LocalShellTask/LocalShellTask.js +1 -0
- package/dist/src/core/components/legacy/tasks/LocalShellTask/LocalShellTask.js.js +2 -0
- package/dist/src/core/components/legacy/tasks/taskStatusUtils.js +1 -0
- package/dist/src/core/components/legacy/tasks/taskStatusUtils.js.js +2 -0
- package/dist/src/core/components/legacy/tasks/types.js +1 -0
- package/dist/src/core/components/legacy/tasks/types.js.js +2 -0
- package/dist/src/core/components/legacy/utils/Cursor.js +1 -0
- package/dist/src/core/components/legacy/utils/Cursor.js.js +2 -0
- package/dist/src/core/components/legacy/utils/activityManager.js +1 -0
- package/dist/src/core/components/legacy/utils/activityManager.js.js +2 -0
- package/dist/src/core/components/legacy/utils/advisor.js +1 -0
- package/dist/src/core/components/legacy/utils/advisor.js.js +2 -0
- package/dist/src/core/components/legacy/utils/agentSwarmsEnabled.js +1 -0
- package/dist/src/core/components/legacy/utils/agentSwarmsEnabled.js.js +2 -0
- package/dist/src/core/components/legacy/utils/analyzeContext.js +1 -0
- package/dist/src/core/components/legacy/utils/analyzeContext.js.js +2 -0
- package/dist/src/core/components/legacy/utils/array.js +1 -0
- package/dist/src/core/components/legacy/utils/array.js.js +2 -0
- package/dist/src/core/components/legacy/utils/attachments.js +1 -0
- package/dist/src/core/components/legacy/utils/attachments.js.js +2 -0
- package/dist/src/core/components/legacy/utils/auth.js +1 -0
- package/dist/src/core/components/legacy/utils/auth.js.js +2 -0
- package/dist/src/core/components/legacy/utils/authPortable.js +1 -0
- package/dist/src/core/components/legacy/utils/authPortable.js.js +2 -0
- package/dist/src/core/components/legacy/utils/autoUpdater.js +1 -0
- package/dist/src/core/components/legacy/utils/autoUpdater.js.js +2 -0
- package/dist/src/core/components/legacy/utils/awsAuthStatusManager.js +1 -0
- package/dist/src/core/components/legacy/utils/awsAuthStatusManager.js.js +2 -0
- package/dist/src/core/components/legacy/utils/browser.js +1 -0
- package/dist/src/core/components/legacy/utils/browser.js.js +2 -0
- package/dist/src/core/components/legacy/utils/claudeInChrome/setup.js +1 -0
- package/dist/src/core/components/legacy/utils/claudeInChrome/setup.js.js +2 -0
- package/dist/src/core/components/legacy/utils/claudemd.js +1 -0
- package/dist/src/core/components/legacy/utils/claudemd.js.js +2 -0
- package/dist/src/core/components/legacy/utils/cliHighlight.js +1 -0
- package/dist/src/core/components/legacy/utils/cliHighlight.js.js +2 -0
- package/dist/src/core/components/legacy/utils/collapseBackgroundBashNotifications.js +1 -0
- package/dist/src/core/components/legacy/utils/collapseBackgroundBashNotifications.js.js +2 -0
- package/dist/src/core/components/legacy/utils/collapseHookSummaries.js +1 -0
- package/dist/src/core/components/legacy/utils/collapseHookSummaries.js.js +2 -0
- package/dist/src/core/components/legacy/utils/collapseReadSearch.js +1 -0
- package/dist/src/core/components/legacy/utils/collapseReadSearch.js.js +2 -0
- package/dist/src/core/components/legacy/utils/collapseTeammateShutdowns.js +1 -0
- package/dist/src/core/components/legacy/utils/collapseTeammateShutdowns.js.js +2 -0
- package/dist/src/core/components/legacy/utils/config.js +1 -0
- package/dist/src/core/components/legacy/utils/config.js.js +2 -0
- package/dist/src/core/components/legacy/utils/context.js +1 -0
- package/dist/src/core/components/legacy/utils/context.js.js +2 -0
- package/dist/src/core/components/legacy/utils/contextSuggestions.js +1 -0
- package/dist/src/core/components/legacy/utils/contextSuggestions.js.js +2 -0
- package/dist/src/core/components/legacy/utils/cwd.js +1 -0
- package/dist/src/core/components/legacy/utils/cwd.js.js +2 -0
- package/dist/src/core/components/legacy/utils/debug.js +1 -0
- package/dist/src/core/components/legacy/utils/debug.js.js +2 -0
- package/dist/src/core/components/legacy/utils/desktopDeepLink.js +1 -0
- package/dist/src/core/components/legacy/utils/desktopDeepLink.js.js +2 -0
- package/dist/src/core/components/legacy/utils/detectRepository.js +1 -0
- package/dist/src/core/components/legacy/utils/detectRepository.js.js +2 -0
- package/dist/src/core/components/legacy/utils/diff.js +1 -0
- package/dist/src/core/components/legacy/utils/diff.js.js +2 -0
- package/dist/src/core/components/legacy/utils/directMemberMessage.js +1 -0
- package/dist/src/core/components/legacy/utils/directMemberMessage.js.js +2 -0
- package/dist/src/core/components/legacy/utils/displayTags.js +1 -0
- package/dist/src/core/components/legacy/utils/displayTags.js.js +2 -0
- package/dist/src/core/components/legacy/utils/doctorDiagnostic.js +1 -0
- package/dist/src/core/components/legacy/utils/doctorDiagnostic.js.js +2 -0
- package/dist/src/core/components/legacy/utils/editor.js +1 -0
- package/dist/src/core/components/legacy/utils/editor.js.js +2 -0
- package/dist/src/core/components/legacy/utils/effort.js +1 -0
- package/dist/src/core/components/legacy/utils/effort.js.js +2 -0
- package/dist/src/core/components/legacy/utils/env.js +1 -0
- package/dist/src/core/components/legacy/utils/env.js.js +2 -0
- package/dist/src/core/components/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/components/legacy/utils/envUtils.js.js +2 -0
- package/dist/src/core/components/legacy/utils/errors.js +1 -0
- package/dist/src/core/components/legacy/utils/errors.js.js +2 -0
- package/dist/src/core/components/legacy/utils/extraUsage.js +1 -0
- package/dist/src/core/components/legacy/utils/extraUsage.js.js +2 -0
- package/dist/src/core/components/legacy/utils/fastMode.js +1 -0
- package/dist/src/core/components/legacy/utils/fastMode.js.js +2 -0
- package/dist/src/core/components/legacy/utils/file.js +1 -0
- package/dist/src/core/components/legacy/utils/file.js.js +2 -0
- package/dist/src/core/components/legacy/utils/format.js +1 -0
- package/dist/src/core/components/legacy/utils/format.js.js +2 -0
- package/dist/src/core/components/legacy/utils/fpsTracker.js +1 -0
- package/dist/src/core/components/legacy/utils/fpsTracker.js.js +2 -0
- package/dist/src/core/components/legacy/utils/fullscreen.js +1 -0
- package/dist/src/core/components/legacy/utils/fullscreen.js.js +2 -0
- package/dist/src/core/components/legacy/utils/getWorktreePaths.js +1 -0
- package/dist/src/core/components/legacy/utils/getWorktreePaths.js.js +2 -0
- package/dist/src/core/components/legacy/utils/ghPrStatus.js +1 -0
- package/dist/src/core/components/legacy/utils/ghPrStatus.js.js +2 -0
- package/dist/src/core/components/legacy/utils/git.js +1 -0
- package/dist/src/core/components/legacy/utils/git.js.js +2 -0
- package/dist/src/core/components/legacy/utils/gracefulShutdown.js +1 -0
- package/dist/src/core/components/legacy/utils/gracefulShutdown.js.js +2 -0
- package/dist/src/core/components/legacy/utils/groupToolUses.js +1 -0
- package/dist/src/core/components/legacy/utils/groupToolUses.js.js +2 -0
- package/dist/src/core/components/legacy/utils/handlePromptSubmit.js +1 -0
- package/dist/src/core/components/legacy/utils/handlePromptSubmit.js.js +2 -0
- package/dist/src/core/components/legacy/utils/hash.js +1 -0
- package/dist/src/core/components/legacy/utils/hash.js.js +2 -0
- package/dist/src/core/components/legacy/utils/heatmap.js +1 -0
- package/dist/src/core/components/legacy/utils/heatmap.js.js +2 -0
- package/dist/src/core/components/legacy/utils/highlightMatch.js +1 -0
- package/dist/src/core/components/legacy/utils/highlightMatch.js.js +2 -0
- package/dist/src/core/components/legacy/utils/hooks/fileChangedWatcher.js +1 -0
- package/dist/src/core/components/legacy/utils/hooks/fileChangedWatcher.js.js +2 -0
- package/dist/src/core/components/legacy/utils/hooks/skillImprovement.js +1 -0
- package/dist/src/core/components/legacy/utils/hooks/skillImprovement.js.js +2 -0
- package/dist/src/core/components/legacy/utils/hooks.js +1 -0
- package/dist/src/core/components/legacy/utils/hooks.js.js +2 -0
- package/dist/src/core/components/legacy/utils/http.js +1 -0
- package/dist/src/core/components/legacy/utils/http.js.js +2 -0
- package/dist/src/core/components/legacy/utils/ide.js +1 -0
- package/dist/src/core/components/legacy/utils/ide.js.js +2 -0
- package/dist/src/core/components/legacy/utils/imagePaste.js +1 -0
- package/dist/src/core/components/legacy/utils/imagePaste.js.js +2 -0
- package/dist/src/core/components/legacy/utils/imageResizer.js +1 -0
- package/dist/src/core/components/legacy/utils/imageResizer.js.js +2 -0
- package/dist/src/core/components/legacy/utils/imageStore.js +1 -0
- package/dist/src/core/components/legacy/utils/imageStore.js.js +2 -0
- package/dist/src/core/components/legacy/utils/ink.js +1 -0
- package/dist/src/core/components/legacy/utils/ink.js.js +2 -0
- package/dist/src/core/components/legacy/utils/intl.js +1 -0
- package/dist/src/core/components/legacy/utils/intl.js.js +2 -0
- package/dist/src/core/components/legacy/utils/keyboardShortcuts.js +1 -0
- package/dist/src/core/components/legacy/utils/keyboardShortcuts.js.js +2 -0
- package/dist/src/core/components/legacy/utils/localInstaller.js +1 -0
- package/dist/src/core/components/legacy/utils/localInstaller.js.js +2 -0
- package/dist/src/core/components/legacy/utils/log.js +1 -0
- package/dist/src/core/components/legacy/utils/log.js.js +2 -0
- package/dist/src/core/components/legacy/utils/logoV2Utils.js +1 -0
- package/dist/src/core/components/legacy/utils/logoV2Utils.js.js +2 -0
- package/dist/src/core/components/legacy/utils/managedEnvConstants.js +1 -0
- package/dist/src/core/components/legacy/utils/managedEnvConstants.js.js +2 -0
- package/dist/src/core/components/legacy/utils/markdown.js +1 -0
- package/dist/src/core/components/legacy/utils/markdown.js.js +2 -0
- package/dist/src/core/components/legacy/utils/memoryFileDetection.js +1 -0
- package/dist/src/core/components/legacy/utils/memoryFileDetection.js.js +2 -0
- package/dist/src/core/components/legacy/utils/messageQueueManager.js +1 -0
- package/dist/src/core/components/legacy/utils/messageQueueManager.js.js +2 -0
- package/dist/src/core/components/legacy/utils/messages.js +1 -0
- package/dist/src/core/components/legacy/utils/messages.js.js +2 -0
- package/dist/src/core/components/legacy/utils/model/model.js +1 -0
- package/dist/src/core/components/legacy/utils/model/model.js.js +2 -0
- package/dist/src/core/components/legacy/utils/model/modelOptions.js +1 -0
- package/dist/src/core/components/legacy/utils/model/modelOptions.js.js +2 -0
- package/dist/src/core/components/legacy/utils/model/providerBaseUrls.js +1 -0
- package/dist/src/core/components/legacy/utils/model/providerBaseUrls.js.js +2 -0
- package/dist/src/core/components/legacy/utils/model/providerCatalog.js +1 -0
- package/dist/src/core/components/legacy/utils/model/providerCatalog.js.js +2 -0
- package/dist/src/core/components/legacy/utils/model/providerModels.js +1 -0
- package/dist/src/core/components/legacy/utils/model/providerModels.js.js +2 -0
- package/dist/src/core/components/legacy/utils/model/providerProfiles.js +1 -0
- package/dist/src/core/components/legacy/utils/model/providerProfiles.js.js +2 -0
- package/dist/src/core/components/legacy/utils/model/providers.js +1 -0
- package/dist/src/core/components/legacy/utils/model/providers.js.js +2 -0
- package/dist/src/core/components/legacy/utils/nativeInstaller/index.js +1 -0
- package/dist/src/core/components/legacy/utils/nativeInstaller/index.js.js +2 -0
- package/dist/src/core/components/legacy/utils/nativeInstaller/packageManagers.js +1 -0
- package/dist/src/core/components/legacy/utils/nativeInstaller/packageManagers.js.js +2 -0
- package/dist/src/core/components/legacy/utils/permissions/PermissionMode.js +1 -0
- package/dist/src/core/components/legacy/utils/permissions/PermissionMode.js.js +2 -0
- package/dist/src/core/components/legacy/utils/permissions/autoModeState.js +1 -0
- package/dist/src/core/components/legacy/utils/permissions/autoModeState.js.js +2 -0
- package/dist/src/core/components/legacy/utils/permissions/filesystem.js +1 -0
- package/dist/src/core/components/legacy/utils/permissions/filesystem.js.js +2 -0
- package/dist/src/core/components/legacy/utils/permissions/getNextPermissionMode.js +1 -0
- package/dist/src/core/components/legacy/utils/permissions/getNextPermissionMode.js.js +2 -0
- package/dist/src/core/components/legacy/utils/permissions/permissionSetup.js +1 -0
- package/dist/src/core/components/legacy/utils/permissions/permissionSetup.js.js +2 -0
- package/dist/src/core/components/legacy/utils/platform.js +1 -0
- package/dist/src/core/components/legacy/utils/platform.js.js +2 -0
- package/dist/src/core/components/legacy/utils/plugins/installedPluginsManager.js +1 -0
- package/dist/src/core/components/legacy/utils/plugins/installedPluginsManager.js.js +2 -0
- package/dist/src/core/components/legacy/utils/preflightChecks.js +1 -0
- package/dist/src/core/components/legacy/utils/preflightChecks.js.js +2 -0
- package/dist/src/core/components/legacy/utils/privacyLevel.js +1 -0
- package/dist/src/core/components/legacy/utils/privacyLevel.js.js +2 -0
- package/dist/src/core/components/legacy/utils/processUserInput/processUserInput.js +1 -0
- package/dist/src/core/components/legacy/utils/processUserInput/processUserInput.js.js +2 -0
- package/dist/src/core/components/legacy/utils/promptEditor.js +1 -0
- package/dist/src/core/components/legacy/utils/promptEditor.js.js +2 -0
- package/dist/src/core/components/legacy/utils/readEditContext.js +1 -0
- package/dist/src/core/components/legacy/utils/readEditContext.js.js +2 -0
- package/dist/src/core/components/legacy/utils/readFileInRange.js +1 -0
- package/dist/src/core/components/legacy/utils/readFileInRange.js.js +2 -0
- package/dist/src/core/components/legacy/utils/releaseNoteTranslations.js +1 -0
- package/dist/src/core/components/legacy/utils/releaseNoteTranslations.js.js +2 -0
- package/dist/src/core/components/legacy/utils/releaseNotes.js +1 -0
- package/dist/src/core/components/legacy/utils/releaseNotes.js.js +2 -0
- package/dist/src/core/components/legacy/utils/renderOptions.js +1 -0
- package/dist/src/core/components/legacy/utils/renderOptions.js.js +2 -0
- package/dist/src/core/components/legacy/utils/ripgrep.js +1 -0
- package/dist/src/core/components/legacy/utils/ripgrep.js.js +2 -0
- package/dist/src/core/components/legacy/utils/sandbox/sandbox-adapter.js +1 -0
- package/dist/src/core/components/legacy/utils/sandbox/sandbox-adapter.js.js +2 -0
- package/dist/src/core/components/legacy/utils/screenshotClipboard.js +1 -0
- package/dist/src/core/components/legacy/utils/screenshotClipboard.js.js +2 -0
- package/dist/src/core/components/legacy/utils/semver.js +1 -0
- package/dist/src/core/components/legacy/utils/semver.js.js +2 -0
- package/dist/src/core/components/legacy/utils/sessionStorage.js +1 -0
- package/dist/src/core/components/legacy/utils/sessionStorage.js.js +2 -0
- package/dist/src/core/components/legacy/utils/settings/constants.js +1 -0
- package/dist/src/core/components/legacy/utils/settings/constants.js.js +2 -0
- package/dist/src/core/components/legacy/utils/settings/settings.js +1 -0
- package/dist/src/core/components/legacy/utils/settings/settings.js.js +2 -0
- package/dist/src/core/components/legacy/utils/settings/types.js +1 -0
- package/dist/src/core/components/legacy/utils/settings/types.js.js +2 -0
- package/dist/src/core/components/legacy/utils/settings/validation.js +1 -0
- package/dist/src/core/components/legacy/utils/settings/validation.js.js +2 -0
- package/dist/src/core/components/legacy/utils/sideQuestion.js +1 -0
- package/dist/src/core/components/legacy/utils/sideQuestion.js.js +2 -0
- package/dist/src/core/components/legacy/utils/sliceAnsi.js +1 -0
- package/dist/src/core/components/legacy/utils/sliceAnsi.js.js +2 -0
- package/dist/src/core/components/legacy/utils/slowOperations.js +1 -0
- package/dist/src/core/components/legacy/utils/slowOperations.js.js +2 -0
- package/dist/src/core/components/legacy/utils/standaloneAgent.js +1 -0
- package/dist/src/core/components/legacy/utils/standaloneAgent.js.js +2 -0
- package/dist/src/core/components/legacy/utils/stats.js +1 -0
- package/dist/src/core/components/legacy/utils/stats.js.js +2 -0
- package/dist/src/core/components/legacy/utils/status.js +1 -0
- package/dist/src/core/components/legacy/utils/status.js.js +2 -0
- package/dist/src/core/components/legacy/utils/statusNoticeDefinitions.js +1 -0
- package/dist/src/core/components/legacy/utils/statusNoticeDefinitions.js.js +2 -0
- package/dist/src/core/components/legacy/utils/stringUtils.js +1 -0
- package/dist/src/core/components/legacy/utils/stringUtils.js.js +2 -0
- package/dist/src/core/components/legacy/utils/suggestions/commandSuggestions.js +1 -0
- package/dist/src/core/components/legacy/utils/suggestions/commandSuggestions.js.js +2 -0
- package/dist/src/core/components/legacy/utils/suggestions/slackChannelSuggestions.js +1 -0
- package/dist/src/core/components/legacy/utils/suggestions/slackChannelSuggestions.js.js +2 -0
- package/dist/src/core/components/legacy/utils/swarm/backends/detection.js +1 -0
- package/dist/src/core/components/legacy/utils/swarm/backends/detection.js.js +2 -0
- package/dist/src/core/components/legacy/utils/swarm/backends/registry.js +1 -0
- package/dist/src/core/components/legacy/utils/swarm/backends/registry.js.js +2 -0
- package/dist/src/core/components/legacy/utils/swarm/backends/teammateModeSnapshot.js +1 -0
- package/dist/src/core/components/legacy/utils/swarm/backends/teammateModeSnapshot.js.js +2 -0
- package/dist/src/core/components/legacy/utils/swarm/constants.js +1 -0
- package/dist/src/core/components/legacy/utils/swarm/constants.js.js +2 -0
- package/dist/src/core/components/legacy/utils/swarm/teamHelpers.js +1 -0
- package/dist/src/core/components/legacy/utils/swarm/teamHelpers.js.js +2 -0
- package/dist/src/core/components/legacy/utils/swarm/teammateModel.js +1 -0
- package/dist/src/core/components/legacy/utils/swarm/teammateModel.js.js +2 -0
- package/dist/src/core/components/legacy/utils/systemPromptType.js +1 -0
- package/dist/src/core/components/legacy/utils/systemPromptType.js.js +2 -0
- package/dist/src/core/components/legacy/utils/systemTheme.js +1 -0
- package/dist/src/core/components/legacy/utils/systemTheme.js.js +2 -0
- package/dist/src/core/components/legacy/utils/task/framework.js +1 -0
- package/dist/src/core/components/legacy/utils/task/framework.js.js +2 -0
- package/dist/src/core/components/legacy/utils/tasks.js +1 -0
- package/dist/src/core/components/legacy/utils/tasks.js.js +2 -0
- package/dist/src/core/components/legacy/utils/teamDiscovery.js +1 -0
- package/dist/src/core/components/legacy/utils/teamDiscovery.js.js +2 -0
- package/dist/src/core/components/legacy/utils/teammate.js +1 -0
- package/dist/src/core/components/legacy/utils/teammate.js.js +2 -0
- package/dist/src/core/components/legacy/utils/teammateContext.js +1 -0
- package/dist/src/core/components/legacy/utils/teammateContext.js.js +2 -0
- package/dist/src/core/components/legacy/utils/teammateMailbox.js +1 -0
- package/dist/src/core/components/legacy/utils/teammateMailbox.js.js +2 -0
- package/dist/src/core/components/legacy/utils/telemetry/events.js +1 -0
- package/dist/src/core/components/legacy/utils/telemetry/events.js.js +2 -0
- package/dist/src/core/components/legacy/utils/teleport/environmentSelection.js +1 -0
- package/dist/src/core/components/legacy/utils/teleport/environmentSelection.js.js +2 -0
- package/dist/src/core/components/legacy/utils/teleport/environments.js +1 -0
- package/dist/src/core/components/legacy/utils/teleport/environments.js.js +2 -0
- package/dist/src/core/components/legacy/utils/textHighlighting.js +1 -0
- package/dist/src/core/components/legacy/utils/textHighlighting.js.js +2 -0
- package/dist/src/core/components/legacy/utils/theme.js +1 -0
- package/dist/src/core/components/legacy/utils/theme.js.js +2 -0
- package/dist/src/core/components/legacy/utils/thinking.js +1 -0
- package/dist/src/core/components/legacy/utils/thinking.js.js +2 -0
- package/dist/src/core/components/legacy/utils/tokenBudget.js +1 -0
- package/dist/src/core/components/legacy/utils/tokenBudget.js.js +2 -0
- package/dist/src/core/components/legacy/utils/tokens.js +1 -0
- package/dist/src/core/components/legacy/utils/tokens.js.js +2 -0
- package/dist/src/core/components/legacy/utils/transcriptSearch.js +1 -0
- package/dist/src/core/components/legacy/utils/transcriptSearch.js.js +2 -0
- package/dist/src/core/components/legacy/utils/ultraplan/keyword.js +1 -0
- package/dist/src/core/components/legacy/utils/ultraplan/keyword.js.js +2 -0
- package/dist/src/core/components/legacy/utils/undercover.js +1 -0
- package/dist/src/core/components/legacy/utils/undercover.js.js +2 -0
- package/dist/src/core/components/legacy/utils/worktree.js +1 -0
- package/dist/src/core/components/legacy/utils/worktree.js.js +2 -0
- package/dist/src/core/context/legacy/state/AppState.js +1 -0
- package/dist/src/core/context/legacy/state/AppState.js.js +1 -0
- package/dist/src/core/context/legacy/state/store.js +1 -0
- package/dist/src/core/context/legacy/state/store.js.js +1 -0
- package/dist/src/core/context/legacy/utils/config.js +1 -0
- package/dist/src/core/context/legacy/utils/config.js.js +1 -0
- package/dist/src/core/context/legacy/utils/fpsTracker.js +1 -0
- package/dist/src/core/context/legacy/utils/fpsTracker.js.js +1 -0
- package/dist/src/core/context/legacy/utils/mailbox.js +1 -0
- package/dist/src/core/context/legacy/utils/mailbox.js.js +1 -0
- package/dist/src/core/context/legacy/utils/theme.js +1 -0
- package/dist/src/core/context/legacy/utils/theme.js.js +1 -0
- package/dist/src/core/coordinator/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/coordinator/legacy/services/analytics/growthbook.js.js +1 -0
- package/dist/src/core/coordinator/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/coordinator/legacy/services/analytics/index.js.js +1 -0
- package/dist/src/core/coordinator/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/coordinator/legacy/utils/envUtils.js.js +1 -0
- package/dist/src/core/fast/cliAdapter.js +1 -0
- package/dist/src/core/fast/legacy/cliAdapter.impl.js +17 -0
- package/dist/src/core/fast/runtime.js +17 -0
- package/dist/src/core/fast/runtime.smoke.js +36 -0
- package/dist/src/core/feedback/cliAdapter.js +1 -0
- package/dist/src/core/feedback/legacy/cliAdapter.impl.js +4 -0
- package/dist/src/core/feedback/runtime.js +11 -0
- package/dist/src/core/hooks/legacy/bootstrap/state.js +3 -0
- package/dist/src/core/hooks/legacy/context/mailbox.js +3 -0
- package/dist/src/core/hooks/legacy/context/notifications.js +3 -0
- package/dist/src/core/hooks/legacy/context/overlayContext.js +3 -0
- package/dist/src/core/hooks/legacy/context/voice.js +3 -0
- package/dist/src/core/hooks/legacy/services/PromptSuggestion/speculation.js +3 -0
- package/dist/src/core/hooks/legacy/services/analytics/growthbook.js +3 -0
- package/dist/src/core/hooks/legacy/services/analytics/index.js +3 -0
- package/dist/src/core/hooks/legacy/services/api/claude.js +3 -0
- package/dist/src/core/hooks/legacy/services/awaySummary.js +3 -0
- package/dist/src/core/hooks/legacy/services/localDictation.js +3 -0
- package/dist/src/core/hooks/legacy/services/lsp/manager.js +3 -0
- package/dist/src/core/hooks/legacy/services/mcp/channelNotification.js +3 -0
- package/dist/src/core/hooks/legacy/services/mcp/channelPermissions.js +3 -0
- package/dist/src/core/hooks/legacy/services/mcp/claudeai.js +3 -0
- package/dist/src/core/hooks/legacy/services/mcp/client.js +3 -0
- package/dist/src/core/hooks/legacy/services/mcp/types.js +3 -0
- package/dist/src/core/hooks/legacy/services/notifier.js +3 -0
- package/dist/src/core/hooks/legacy/services/voice.js +1 -0
- package/dist/src/core/hooks/legacy/services/voice.js.js +1 -0
- package/dist/src/core/hooks/legacy/state/AppState.js +3 -0
- package/dist/src/core/hooks/legacy/state/AppStateStore.js +3 -0
- package/dist/src/core/hooks/legacy/state/teammateViewHelpers.js +3 -0
- package/dist/src/core/hooks/legacy/tasks/InProcessTeammateTask/InProcessTeammateTask.js +3 -0
- package/dist/src/core/hooks/legacy/tasks/InProcessTeammateTask/InProcessTeammateTask.js.js +1 -0
- package/dist/src/core/hooks/legacy/tasks/InProcessTeammateTask/types.js +3 -0
- package/dist/src/core/hooks/legacy/tasks/LocalAgentTask/LocalAgentTask.js +3 -0
- package/dist/src/core/hooks/legacy/tasks/types.js +3 -0
- package/dist/src/core/hooks/legacy/utils/Cursor.js +3 -0
- package/dist/src/core/hooks/legacy/utils/QueryGuard.js +3 -0
- package/dist/src/core/hooks/legacy/utils/agentSwarmsEnabled.js +3 -0
- package/dist/src/core/hooks/legacy/utils/argumentSubstitution.js +3 -0
- package/dist/src/core/hooks/legacy/utils/array.js +3 -0
- package/dist/src/core/hooks/legacy/utils/auth.js +3 -0
- package/dist/src/core/hooks/legacy/utils/autoModeDenials.js +3 -0
- package/dist/src/core/hooks/legacy/utils/bash/shellCompletion.js +3 -0
- package/dist/src/core/hooks/legacy/utils/classifierApprovals.js +3 -0
- package/dist/src/core/hooks/legacy/utils/claudeCodeHints.js +3 -0
- package/dist/src/core/hooks/legacy/utils/claudeInChrome/common.js +3 -0
- package/dist/src/core/hooks/legacy/utils/claudeInChrome/setup.js +3 -0
- package/dist/src/core/hooks/legacy/utils/cliHighlight.js +3 -0
- package/dist/src/core/hooks/legacy/utils/config.js +3 -0
- package/dist/src/core/hooks/legacy/utils/cronJitterConfig.js +3 -0
- package/dist/src/core/hooks/legacy/utils/cronScheduler.js +3 -0
- package/dist/src/core/hooks/legacy/utils/cronTasks.js +3 -0
- package/dist/src/core/hooks/legacy/utils/cwd.js +3 -0
- package/dist/src/core/hooks/legacy/utils/debug.js +3 -0
- package/dist/src/core/hooks/legacy/utils/diagLogs.js +3 -0
- package/dist/src/core/hooks/legacy/utils/diff.js +3 -0
- package/dist/src/core/hooks/legacy/utils/env.js +3 -0
- package/dist/src/core/hooks/legacy/utils/envUtils.js +3 -0
- package/dist/src/core/hooks/legacy/utils/errors.js +3 -0
- package/dist/src/core/hooks/legacy/utils/execFileNoThrow.js +3 -0
- package/dist/src/core/hooks/legacy/utils/fileHistory.js +3 -0
- package/dist/src/core/hooks/legacy/utils/format.js +3 -0
- package/dist/src/core/hooks/legacy/utils/fsOperations.js +3 -0
- package/dist/src/core/hooks/legacy/utils/fullscreen.js +3 -0
- package/dist/src/core/hooks/legacy/utils/ghPrStatus.js +3 -0
- package/dist/src/core/hooks/legacy/utils/git.js +3 -0
- package/dist/src/core/hooks/legacy/utils/gitDiff.js +3 -0
- package/dist/src/core/hooks/legacy/utils/gracefulShutdown.js +3 -0
- package/dist/src/core/hooks/legacy/utils/handlePromptSubmit.js +3 -0
- package/dist/src/core/hooks/legacy/utils/hooks/skillImprovement.js +3 -0
- package/dist/src/core/hooks/legacy/utils/hooks.js +3 -0
- package/dist/src/core/hooks/legacy/utils/ide.js +3 -0
- package/dist/src/core/hooks/legacy/utils/idePathConversion.js +3 -0
- package/dist/src/core/hooks/legacy/utils/imagePaste.js +3 -0
- package/dist/src/core/hooks/legacy/utils/imageResizer.js +3 -0
- package/dist/src/core/hooks/legacy/utils/inProcessTeammateHelpers.js +3 -0
- package/dist/src/core/hooks/legacy/utils/intl.js +3 -0
- package/dist/src/core/hooks/legacy/utils/lazySchema.js +3 -0
- package/dist/src/core/hooks/legacy/utils/log.js +3 -0
- package/dist/src/core/hooks/legacy/utils/messageQueueManager.js +3 -0
- package/dist/src/core/hooks/legacy/utils/messages/systemInit.js +3 -0
- package/dist/src/core/hooks/legacy/utils/messages.js +3 -0
- package/dist/src/core/hooks/legacy/utils/model/model.js +3 -0
- package/dist/src/core/hooks/legacy/utils/model/providerProfiles.js +3 -0
- package/dist/src/core/hooks/legacy/utils/modifiers.js +3 -0
- package/dist/src/core/hooks/legacy/utils/path.js +3 -0
- package/dist/src/core/hooks/legacy/utils/permissions/PermissionMode.js +3 -0
- package/dist/src/core/hooks/legacy/utils/permissions/PermissionResult.js +3 -0
- package/dist/src/core/hooks/legacy/utils/permissions/PermissionUpdate.js +3 -0
- package/dist/src/core/hooks/legacy/utils/permissions/PermissionUpdateSchema.js +3 -0
- package/dist/src/core/hooks/legacy/utils/permissions/permissionSetup.js +3 -0
- package/dist/src/core/hooks/legacy/utils/permissions/permissions.js +3 -0
- package/dist/src/core/hooks/legacy/utils/platform.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/hintRecommendation.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/loadPluginAgents.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/loadPluginCommands.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/loadPluginHooks.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/lspPluginIntegration.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/lspRecommendation.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/marketplaceManager.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/mcpPluginIntegration.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/officialMarketplaceStartupCheck.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/pluginAutoupdate.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/pluginBlocklist.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/pluginFlagging.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/pluginInstallationHelpers.js +3 -0
- package/dist/src/core/hooks/legacy/utils/plugins/pluginLoader.js +3 -0
- package/dist/src/core/hooks/legacy/utils/queueProcessor.js +3 -0
- package/dist/src/core/hooks/legacy/utils/ripgrep.js +3 -0
- package/dist/src/core/hooks/legacy/utils/sandbox/sandbox-adapter.js +3 -0
- package/dist/src/core/hooks/legacy/utils/sdkEventQueue.js +3 -0
- package/dist/src/core/hooks/legacy/utils/sessionStorage.js +3 -0
- package/dist/src/core/hooks/legacy/utils/sessionTitle.js +3 -0
- package/dist/src/core/hooks/legacy/utils/settings/allErrors.js +3 -0
- package/dist/src/core/hooks/legacy/utils/settings/changeDetector.js +3 -0
- package/dist/src/core/hooks/legacy/utils/settings/constants.js +3 -0
- package/dist/src/core/hooks/legacy/utils/settings/settings.js +3 -0
- package/dist/src/core/hooks/legacy/utils/settings/types.js +3 -0
- package/dist/src/core/hooks/legacy/utils/settings/validation.js +3 -0
- package/dist/src/core/hooks/legacy/utils/signal.js +3 -0
- package/dist/src/core/hooks/legacy/utils/skills/skillChangeDetector.js +3 -0
- package/dist/src/core/hooks/legacy/utils/slowOperations.js +3 -0
- package/dist/src/core/hooks/legacy/utils/stringUtils.js +3 -0
- package/dist/src/core/hooks/legacy/utils/suggestions/commandSuggestions.js +3 -0
- package/dist/src/core/hooks/legacy/utils/suggestions/directoryCompletion.js +3 -0
- package/dist/src/core/hooks/legacy/utils/suggestions/shellHistoryCompletion.js +3 -0
- package/dist/src/core/hooks/legacy/utils/suggestions/slackChannelSuggestions.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/backends/detection.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/backends/registry.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/backends/types.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/constants.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/leaderPermissionBridge.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/permissionSync.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/reconnection.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/teamHelpers.js +3 -0
- package/dist/src/core/hooks/legacy/utils/swarm/teammateInit.js +3 -0
- package/dist/src/core/hooks/legacy/utils/tasks.js +3 -0
- package/dist/src/core/hooks/legacy/utils/teammate.js +3 -0
- package/dist/src/core/hooks/legacy/utils/teammateContext.js +3 -0
- package/dist/src/core/hooks/legacy/utils/teammateMailbox.js +3 -0
- package/dist/src/core/hooks/legacy/utils/telemetry/events.js +3 -0
- package/dist/src/core/hooks/legacy/utils/teleport/api.js +3 -0
- package/dist/src/core/hooks/legacy/utils/teleport.js +3 -0
- package/dist/src/core/hooks/legacy/utils/terminalPanel.js +3 -0
- package/dist/src/core/hooks/legacy/utils/theme.js +3 -0
- package/dist/src/core/hooks/legacy/utils/toolPool.js +3 -0
- package/dist/src/core/hooks/legacy/utils/workloadContext.js +3 -0
- package/dist/src/core/ink/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/ink/legacy/hooks/use-terminal-focus.js +1 -0
- package/dist/src/core/ink/legacy/utils/debug.js +1 -0
- package/dist/src/core/ink/legacy/utils/earlyInput.js +1 -0
- package/dist/src/core/ink/legacy/utils/env.js +1 -0
- package/dist/src/core/ink/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/ink/legacy/utils/execFileNoThrow.js +1 -0
- package/dist/src/core/ink/legacy/utils/fullscreen.js +1 -0
- package/dist/src/core/ink/legacy/utils/intl.js +1 -0
- package/dist/src/core/ink/legacy/utils/log.js +1 -0
- package/dist/src/core/insights/insightsCommand.js +2555 -0
- package/dist/src/core/integration/chromeCliAdapter.js +1 -0
- package/dist/src/core/integration/chromeCore.js +24 -0
- package/dist/src/core/integration/commitPushPrCommand.js +16 -0
- package/dist/src/core/integration/ideCliAdapter.js +1 -0
- package/dist/src/core/integration/ideCore.js +13 -0
- package/dist/src/core/integration/ideCore.smoke.js +15 -0
- package/dist/src/core/integration/installCliAdapter.js +3 -0
- package/dist/src/core/integration/installGithubAppCliAdapter.js +1 -0
- package/dist/src/core/integration/installSlackAppCliAdapter.js +1 -0
- package/dist/src/core/integration/installSlackAppCore.js +7 -0
- package/dist/src/core/integration/legacy/chromeCliAdapter.impl.js +13 -0
- package/dist/src/core/integration/legacy/ideCliAdapter.impl.js +8 -0
- package/dist/src/core/integration/legacy/installGithubAppCliAdapter.impl.js +18 -0
- package/dist/src/core/integration/legacy/installSlackAppCliAdapter.impl.js +4 -0
- package/dist/src/core/integration/legacy/oauthFlowCliAdapter.impl.js +12 -0
- package/dist/src/core/integration/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/integration/legacy/setupGithubActionsCliAdapter.impl.js +10 -0
- package/dist/src/core/integration/legacy/stickersCliAdapter.impl.js +2 -0
- package/dist/src/core/integration/legacy/upgradeCliAdapter.impl.js +11 -0
- package/dist/src/core/integration/legacy/upgradeIndexCliAdapter.impl.js +6 -0
- package/dist/src/core/integration/legacy/utils/ide.js +1 -0
- package/dist/src/core/integration/legacy/whatsappCliAdapter.impl.js +2 -0
- package/dist/src/core/integration/oauthFlowCliAdapter.js +1 -0
- package/dist/src/core/integration/runtime.smoke.js +20 -0
- package/dist/src/core/integration/setupGithubActionsCliAdapter.js +1 -0
- package/dist/src/core/integration/stickersCliAdapter.js +1 -0
- package/dist/src/core/integration/upgradeCliAdapter.js +1 -0
- package/dist/src/core/integration/upgradeCore.js +18 -0
- package/dist/src/core/integration/upgradeIndexCliAdapter.js +1 -0
- package/dist/src/core/integration/upgradeIndexCore.js +3 -0
- package/dist/src/core/integration/whatsappCliAdapter.js +1 -0
- package/dist/src/core/mcp/addCliAdapter.js +1 -0
- package/dist/src/core/mcp/addCore.js +85 -0
- package/dist/src/core/mcp/addCore.smoke.js +18 -0
- package/dist/src/core/mcp/cliAdapter.js +1 -0
- package/dist/src/core/mcp/legacy/addCliAdapter.impl.js +7 -0
- package/dist/src/core/mcp/legacy/cliAdapter.impl.js +3 -0
- package/dist/src/core/mcp/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/mcp/legacy/services/mcp/MCPConnectionManager.js +1 -0
- package/dist/src/core/mcp/legacy/services/mcp/auth.js +1 -0
- package/dist/src/core/mcp/legacy/services/mcp/config.js +1 -0
- package/dist/src/core/mcp/legacy/services/mcp/mcpStringUtils.js +1 -0
- package/dist/src/core/mcp/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/mcp/legacy/services/mcp/utils.js +1 -0
- package/dist/src/core/mcp/legacy/services/mcp/xaaIdpLogin.js +1 -0
- package/dist/src/core/mcp/legacy/state/AppState.js +1 -0
- package/dist/src/core/mcp/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/mcp/legacy/utils/errors.js +1 -0
- package/dist/src/core/mcp/legacy/utils/settings/settings.js +1 -0
- package/dist/src/core/mcp/legacy/xaaIdpCliAdapter.impl.js +4 -0
- package/dist/src/core/mcp/xaaIdpCliAdapter.js +1 -0
- package/dist/src/core/mcp/xaaIdpCore.js +30 -0
- package/dist/src/core/migrations/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/migrations/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/migrations/legacy/utils/auth.js +1 -0
- package/dist/src/core/migrations/legacy/utils/config.js +1 -0
- package/dist/src/core/migrations/legacy/utils/log.js +1 -0
- package/dist/src/core/migrations/legacy/utils/model/model.js +1 -0
- package/dist/src/core/migrations/legacy/utils/model/providers.js +1 -0
- package/dist/src/core/migrations/legacy/utils/permissions/permissionSetup.js +1 -0
- package/dist/src/core/migrations/legacy/utils/settings/settings.js +1 -0
- package/dist/src/core/native-ts/legacy/utils/log.js +1 -0
- package/dist/src/core/native-ts/legacy/utils/log.js.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/debug.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/debug.js.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/frontmatterParser.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/frontmatterParser.js.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/log.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/log.js.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/markdownConfigLoader.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/markdownConfigLoader.js.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/plugins/loadPluginOutputStyles.js +1 -0
- package/dist/src/core/outputStyles/legacy/utils/plugins/loadPluginOutputStyles.js.js +1 -0
- package/dist/src/core/passes/cliAdapter.js +1 -0
- package/dist/src/core/passes/indexCliAdapter.js +1 -0
- package/dist/src/core/passes/indexCore.js +9 -0
- package/dist/src/core/passes/legacy/cliAdapter.impl.js +2 -0
- package/dist/src/core/passes/legacy/deps.js +4 -0
- package/dist/src/core/passes/legacy/indexCliAdapter.impl.js +2 -0
- package/dist/src/core/passes/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/passes/legacy/services/api/referral.js +1 -0
- package/dist/src/core/passes/legacy/utils/config.js +1 -0
- package/dist/src/core/passes/runtime.js +10 -0
- package/dist/src/core/permissions/legacy/messagesCliAdapter.impl.js +2 -0
- package/dist/src/core/permissions/legacy/sandboxToggleCliAdapter.impl.js +12 -0
- package/dist/src/core/permissions/messagesCliAdapter.js +1 -0
- package/dist/src/core/permissions/sandboxToggleCliAdapter.js +3 -0
- package/dist/src/core/plugins/addMarketplaceCore.js +30 -0
- package/dist/src/core/plugins/analyticsCliAdapter.js +1 -0
- package/dist/src/core/plugins/browseCore.js +38 -0
- package/dist/src/core/plugins/cliAdapter.js +3 -0
- package/dist/src/core/plugins/commandParser.js +65 -0
- package/dist/src/core/plugins/discoverCore.js +50 -0
- package/dist/src/core/plugins/legacy/cliAdapter.impl.js +2 -0
- package/dist/src/core/plugins/legacy/discoverCliAdapter.js +1 -0
- package/dist/src/core/plugins/legacy/reloadCliAdapter.impl.js +2 -0
- package/dist/src/core/plugins/legacy/thinkbackIndexCliAdapter.impl.js +2 -0
- package/dist/src/core/plugins/legacy/thinkbackPlayCliAdapter.impl.js +3 -0
- package/dist/src/core/plugins/legacy/utils/marketplaceHelpers.js +1 -0
- package/dist/src/core/plugins/legacy/utils/settings/settings.js +1 -0
- package/dist/src/core/plugins/legacy/utils/settings/settings.js.js +1 -0
- package/dist/src/core/plugins/managementCore.js +102 -0
- package/dist/src/core/plugins/marketplacesCore.js +76 -0
- package/dist/src/core/plugins/optionsCore.js +30 -0
- package/dist/src/core/plugins/reloadCliAdapter.js +1 -0
- package/dist/src/core/plugins/reloadCore.js +20 -0
- package/dist/src/core/plugins/reloadCore.smoke.js +27 -0
- package/dist/src/core/plugins/runtime.smoke.js +118 -0
- package/dist/src/core/plugins/settingsCore.js +43 -0
- package/dist/src/core/plugins/thinkbackCore.js +65 -0
- package/dist/src/core/plugins/thinkbackIndexCliAdapter.js +1 -0
- package/dist/src/core/plugins/thinkbackIndexCore.js +3 -0
- package/dist/src/core/plugins/thinkbackPlayCliAdapter.js +1 -0
- package/dist/src/core/plugins/thinkbackPlayCore.js +21 -0
- package/dist/src/core/plugins/validateCore.js +38 -0
- package/dist/src/core/providers/advisorCliAdapter.js +4 -0
- package/dist/src/core/providers/costCliAdapter.js +3 -0
- package/dist/src/core/providers/effortCliAdapter.js +1 -0
- package/dist/src/core/providers/effortIndexCliAdapter.js +1 -0
- package/dist/src/core/providers/legacy/cliAdapter.impl.js +72 -0
- package/dist/src/core/providers/legacy/costCliAdapter.impl.js +3 -0
- package/dist/src/core/providers/legacy/effortCliAdapter.impl.js +17 -0
- package/dist/src/core/providers/legacy/effortIndexCliAdapter.impl.js +2 -0
- package/dist/src/core/providers/legacy/hooks/useMainLoopModel.js +1 -0
- package/dist/src/core/providers/legacy/limitsCliAdapter.impl.js +2 -0
- package/dist/src/core/providers/legacy/modelCliAdapter.impl.js +26 -0
- package/dist/src/core/providers/legacy/modelCommandCliAdapter.impl.js +18 -0
- package/dist/src/core/providers/legacy/modelIndexCliAdapter.impl.js +7 -0
- package/dist/src/core/providers/legacy/policyCliAdapter.impl.js +3 -0
- package/dist/src/core/providers/legacy/profileCliAdapter.impl.js +210 -0
- package/dist/src/core/providers/legacy/rateLimitOptionsCliAdapter.impl.js +14 -0
- package/dist/src/core/providers/legacy/state/AppState.js +1 -0
- package/dist/src/core/providers/legacy/utils/auth.js +1 -0
- package/dist/src/core/providers/legacy/utils/config.js +1 -0
- package/dist/src/core/providers/legacy/utils/model/providerBaseUrls.js +1 -0
- package/dist/src/core/providers/legacy/utils/model/providerCatalog.js +1 -0
- package/dist/src/core/providers/legacy/utils/model/providerProfiles.js +1 -0
- package/dist/src/core/providers/legacy/utils/model/providerProfilesDb.js +1 -0
- package/dist/src/core/providers/legacy/utils/model/providerSwitch.js +1 -0
- package/dist/src/core/providers/legacy/utils/model/providers.js +1 -0
- package/dist/src/core/providers/legacy/utils/secureStorage/index.js +1 -0
- package/dist/src/core/providers/legacy/utils/secureStorage/sqliteStorage.js +1 -0
- package/dist/src/core/providers/limitsCliAdapter.js +1 -0
- package/dist/src/core/providers/modelCliAdapter.js +1 -0
- package/dist/src/core/providers/modelCommandCliAdapter.js +1 -0
- package/dist/src/core/providers/modelCore.js +69 -0
- package/dist/src/core/providers/modelCore.smoke.js +40 -0
- package/dist/src/core/providers/modelIndexCliAdapter.js +1 -0
- package/dist/src/core/providers/modelIndexCore.js +3 -0
- package/dist/src/core/providers/policyCliAdapter.js +1 -0
- package/dist/src/core/providers/policyCore.js +62 -0
- package/dist/src/core/providers/profileCliAdapter.js +1 -0
- package/dist/src/core/providers/profileCore.js +169 -0
- package/dist/src/core/providers/profileCore.smoke.js +53 -0
- package/dist/src/core/providers/providerCommandAdapter.js +10 -0
- package/dist/src/core/providers/providerCommandCore.js +129 -0
- package/dist/src/core/providers/providerCommandCore.smoke.js +6 -0
- package/dist/src/core/providers/rateLimitOptionsCliAdapter.js +1 -0
- package/dist/src/core/query/btwCliAdapter.js +1 -0
- package/dist/src/core/query/btwCore.js +43 -0
- package/dist/src/core/query/cliAdapter.js +1 -0
- package/dist/src/core/query/legacy/btwCliAdapter.impl.js +37 -0
- package/dist/src/core/query/legacy/cliAdapter.impl.js +30 -0
- package/dist/src/core/query/legacy/context/modalContext.js +1 -0
- package/dist/src/core/query/legacy/hooks/useTerminalSize.js +1 -0
- package/dist/src/core/query/legacy/utils/abortController.js +1 -0
- package/dist/src/core/query/legacy/utils/config.js +1 -0
- package/dist/src/core/query/legacy/utils/errors.js +1 -0
- package/dist/src/core/query/legacy/utils/forkedAgent.js +1 -0
- package/dist/src/core/query/legacy/utils/messages.js +1 -0
- package/dist/src/core/query/legacy/utils/processUserInput/processUserInput.js +1 -0
- package/dist/src/core/query/legacy/utils/sideQuestion.js +1 -0
- package/dist/src/core/query/legacy/utils/systemPromptType.js +1 -0
- package/dist/src/core/query/runCommandCore.js +109 -0
- package/dist/src/core/remoteEnv/indexCliAdapter.js +1 -0
- package/dist/src/core/remoteEnv/indexCore.js +7 -0
- package/dist/src/core/remoteEnv/legacy/indexCliAdapter.impl.js +6 -0
- package/dist/src/core/remoteSetup/apiCore.js +115 -0
- package/dist/src/core/remoteSetup/cliAdapter.js +1 -0
- package/dist/src/core/remoteSetup/indexCliAdapter.js +1 -0
- package/dist/src/core/remoteSetup/indexCore.js +9 -0
- package/dist/src/core/remoteSetup/legacy/cliAdapter.impl.js +9 -0
- package/dist/src/core/remoteSetup/legacy/indexCliAdapter.impl.js +6 -0
- package/dist/src/core/remoteSetup/runtime.js +71 -0
- package/dist/src/core/review/cliAdapter.js +1 -0
- package/dist/src/core/review/legacy/cliAdapter.impl.js +11 -0
- package/dist/src/core/review/runtime.js +66 -0
- package/dist/src/core/review/runtime.smoke.js +31 -0
- package/dist/src/core/run/cliAdapter.js +1 -0
- package/dist/src/core/run/contracts.js +1 -0
- package/dist/src/core/run/legacy/cliAdapter.impl.js +55 -0
- package/dist/src/core/run/legacy/services/orchestration/policy/index.js +1 -0
- package/dist/src/core/run/legacy/utils/model/providerCatalog.js +1 -0
- package/dist/src/core/run/legacy/utils/orchestration/store/types.js +1 -0
- package/dist/src/core/run/runtime.js +310 -0
- package/dist/src/core/run/runtime.smoke.js +147 -0
- package/dist/src/core/schemas/legacy/utils/lazySchema.js +1 -0
- package/dist/src/core/schemas/legacy/utils/lazySchema.js.js +1 -0
- package/dist/src/core/schemas/legacy/utils/shell/shellProvider.js +1 -0
- package/dist/src/core/schemas/legacy/utils/shell/shellProvider.js.js +1 -0
- package/dist/src/core/screens/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/screens/legacy/context/fpsMetrics.js +1 -0
- package/dist/src/core/screens/legacy/context/modalStackContext.js +1 -0
- package/dist/src/core/screens/legacy/context/notifications.js +1 -0
- package/dist/src/core/screens/legacy/hooks/notifs/useSettingsErrors.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useAfterFirstRender.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useApiKeyVerification.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useAssistantHistory.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useBackgroundTaskNavigation.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useCanUseTool.js +2 -0
- package/dist/src/core/screens/legacy/hooks/useCancelRequest.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useCommandKeybindings.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useCommandQueue.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useDeferredHookMessages.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useDirectConnect.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useGlobalKeybindings.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useIDEIntegration.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useIdeLogging.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useIdeSelection.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useInboxPoller.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useIssueFlagBanner.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useLogMessages.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useMailboxBridge.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useMainLoopModel.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useManagePlugins.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useMergedClients.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useMergedCommands.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useMergedTools.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useQueueProcessor.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useRemoteSession.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useReplBridge.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useSSHSession.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useScheduledTasks.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useSearchInput.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useSessionBackgrounding.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useSkillImprovementSurvey.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useSkillsChange.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useSwarmInitialization.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useTaskListWatcher.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useTasksV2.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useTeammateViewAutoExit.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useTelegramMirror.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useTerminalSize.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useVoiceIntegration.js +1 -0
- package/dist/src/core/screens/legacy/hooks/useWhatsAppMirror.js +1 -0
- package/dist/src/core/screens/legacy/services/PromptSuggestion/speculation.js +1 -0
- package/dist/src/core/screens/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/screens/legacy/services/diagnosticTracking.js +1 -0
- package/dist/src/core/screens/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/screens/legacy/services/notifier.js +1 -0
- package/dist/src/core/screens/legacy/services/preventSleep.js +1 -0
- package/dist/src/core/screens/legacy/state/AppState.js +1 -0
- package/dist/src/core/screens/legacy/tasks/LocalAgentTask/LocalAgentTask.js +1 -0
- package/dist/src/core/screens/legacy/tasks/LocalMainSessionTask.js +1 -0
- package/dist/src/core/screens/legacy/utils/QueryGuard.js +1 -0
- package/dist/src/core/screens/legacy/utils/abortController.js +1 -0
- package/dist/src/core/screens/legacy/utils/activityManager.js +1 -0
- package/dist/src/core/screens/legacy/utils/agentSwarmsEnabled.js +1 -0
- package/dist/src/core/screens/legacy/utils/agenticSessionSearch.js +1 -0
- package/dist/src/core/screens/legacy/utils/array.js +1 -0
- package/dist/src/core/screens/legacy/utils/asciicast.js +1 -0
- package/dist/src/core/screens/legacy/utils/attachments.js +1 -0
- package/dist/src/core/screens/legacy/utils/autoRunIssue.js +1 -0
- package/dist/src/core/screens/legacy/utils/autoUpdater.js +1 -0
- package/dist/src/core/screens/legacy/utils/backgroundHousekeeping.js +1 -0
- package/dist/src/core/screens/legacy/utils/billing.js +1 -0
- package/dist/src/core/screens/legacy/utils/claudemd.js +1 -0
- package/dist/src/core/screens/legacy/utils/commitAttribution.js +1 -0
- package/dist/src/core/screens/legacy/utils/concurrentSessions.js +1 -0
- package/dist/src/core/screens/legacy/utils/config.js +1 -0
- package/dist/src/core/screens/legacy/utils/conversationRecovery.js +1 -0
- package/dist/src/core/screens/legacy/utils/crossProjectResume.js +1 -0
- package/dist/src/core/screens/legacy/utils/debug.js +1 -0
- package/dist/src/core/screens/legacy/utils/doctorContextWarnings.js +1 -0
- package/dist/src/core/screens/legacy/utils/doctorDiagnostic.js +1 -0
- package/dist/src/core/screens/legacy/utils/earlyInput.js +1 -0
- package/dist/src/core/screens/legacy/utils/editor.js +1 -0
- package/dist/src/core/screens/legacy/utils/effort.js +1 -0
- package/dist/src/core/screens/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/screens/legacy/utils/envValidation.js +1 -0
- package/dist/src/core/screens/legacy/utils/errors.js +1 -0
- package/dist/src/core/screens/legacy/utils/exportRenderer.js +1 -0
- package/dist/src/core/screens/legacy/utils/file.js +1 -0
- package/dist/src/core/screens/legacy/utils/fileHistory.js +1 -0
- package/dist/src/core/screens/legacy/utils/fileStateCache.js +1 -0
- package/dist/src/core/screens/legacy/utils/format.js +1 -0
- package/dist/src/core/screens/legacy/utils/fullscreen.js +1 -0
- package/dist/src/core/screens/legacy/utils/gracefulShutdown.js +1 -0
- package/dist/src/core/screens/legacy/utils/handlePromptSubmit.js +1 -0
- package/dist/src/core/screens/legacy/utils/hooks.js +1 -0
- package/dist/src/core/screens/legacy/utils/ide.js +1 -0
- package/dist/src/core/screens/legacy/utils/log.js +1 -0
- package/dist/src/core/screens/legacy/utils/messagePredicates.js +1 -0
- package/dist/src/core/screens/legacy/utils/messageQueueManager.js +1 -0
- package/dist/src/core/screens/legacy/utils/messages.js +1 -0
- package/dist/src/core/screens/legacy/utils/nativeInstaller/pidLock.js +1 -0
- package/dist/src/core/screens/legacy/utils/permissions/PermissionUpdate.js +1 -0
- package/dist/src/core/screens/legacy/utils/permissions/filesystem.js +1 -0
- package/dist/src/core/screens/legacy/utils/permissions/permissionSetup.js +1 -0
- package/dist/src/core/screens/legacy/utils/plans.js +1 -0
- package/dist/src/core/screens/legacy/utils/processUserInput/processUserInput.js +1 -0
- package/dist/src/core/screens/legacy/utils/promptCategory.js +1 -0
- package/dist/src/core/screens/legacy/utils/queryHelpers.js +1 -0
- package/dist/src/core/screens/legacy/utils/queryProfiler.js +1 -0
- package/dist/src/core/screens/legacy/utils/sandbox/sandbox-adapter.js +1 -0
- package/dist/src/core/screens/legacy/utils/sessionRestore.js +1 -0
- package/dist/src/core/screens/legacy/utils/sessionStart.js +1 -0
- package/dist/src/core/screens/legacy/utils/sessionStorage.js +1 -0
- package/dist/src/core/screens/legacy/utils/sessionTitle.js +1 -0
- package/dist/src/core/screens/legacy/utils/settings/settings.js +1 -0
- package/dist/src/core/screens/legacy/utils/shell/outputLimits.js +1 -0
- package/dist/src/core/screens/legacy/utils/suggestions/shellHistoryCompletion.js +1 -0
- package/dist/src/core/screens/legacy/utils/swarm/leaderPermissionBridge.js +1 -0
- package/dist/src/core/screens/legacy/utils/swarm/permissionSync.js +1 -0
- package/dist/src/core/screens/legacy/utils/swarm/teamHelpers.js +1 -0
- package/dist/src/core/screens/legacy/utils/systemPrompt.js +1 -0
- package/dist/src/core/screens/legacy/utils/task/outputFormatting.js +1 -0
- package/dist/src/core/screens/legacy/utils/teammate.js +1 -0
- package/dist/src/core/screens/legacy/utils/telemetry/sessionTracing.js +1 -0
- package/dist/src/core/screens/legacy/utils/teleport/api.js +1 -0
- package/dist/src/core/screens/legacy/utils/thinking.js +1 -0
- package/dist/src/core/screens/legacy/utils/toolPool.js +1 -0
- package/dist/src/core/screens/legacy/utils/toolResultStorage.js +1 -0
- package/dist/src/core/screens/legacy/utils/undercover.js +1 -0
- package/dist/src/core/screens/legacy/utils/worktree.js +1 -0
- package/dist/src/core/screens/legacy/utils/xdg.js +1 -0
- package/dist/src/core/screens/legacy/utils/xml.js +1 -0
- package/dist/src/core/services/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/services/legacy/context/notifications.js +1 -0
- package/dist/src/core/services/legacy/hooks/toolPermission/permissionLogging.js +1 -0
- package/dist/src/core/services/legacy/hooks/useCanUseTool.js +1 -0
- package/dist/src/core/services/legacy/hooks/useDiffData.js +1 -0
- package/dist/src/core/services/legacy/hooks/useDiffInIDE.js +1 -0
- package/dist/src/core/services/legacy/hooks/useElapsedTime.js +1 -0
- package/dist/src/core/services/legacy/hooks/useMainLoopModel.js +1 -0
- package/dist/src/core/services/legacy/hooks/useMergedTools.js +1 -0
- package/dist/src/core/services/legacy/hooks/useNotifyAfterTimeout.js +1 -0
- package/dist/src/core/services/legacy/hooks/useSearchInput.js +1 -0
- package/dist/src/core/services/legacy/hooks/useSettingsChange.js +1 -0
- package/dist/src/core/services/legacy/hooks/useTeleportResume.js +1 -0
- package/dist/src/core/services/legacy/hooks/useTurnDiffs.js +1 -0
- package/dist/src/core/services/legacy/hooks/useVimInput.js +1 -0
- package/dist/src/core/services/legacy/hooks/useVirtualScroll.js +1 -0
- package/dist/src/core/services/legacy/mcpCliAdapter.impl.js +36 -0
- package/dist/src/core/services/legacy/oauth/client.js +1 -0
- package/dist/src/core/services/legacy/oauth/types.js +1 -0
- package/dist/src/core/services/legacy/pluginsCliAdapter.impl.js +23 -0
- package/dist/src/core/services/legacy/services/analytics/firstPartyEventLogger.js +1 -0
- package/dist/src/core/services/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/services/legacy/services/analytics.js +1 -0
- package/dist/src/core/services/legacy/services/api/grove.js +1 -0
- package/dist/src/core/services/legacy/services/autoDream/config.js +1 -0
- package/dist/src/core/services/legacy/services/autoDream/consolidationLock.js +1 -0
- package/dist/src/core/services/legacy/services/localDictation.js +1 -0
- package/dist/src/core/services/legacy/services/lsp/manager.js +1 -0
- package/dist/src/core/services/legacy/services/mcp/MCPConnectionManager.js +1 -0
- package/dist/src/core/services/legacy/services/mcp/auth.js +1 -0
- package/dist/src/core/services/legacy/services/mcp/client.js +1 -0
- package/dist/src/core/services/legacy/services/mcp/config.js +1 -0
- package/dist/src/core/services/legacy/services/mcp/elicitationHandler.js +1 -0
- package/dist/src/core/services/legacy/services/mcp/mcpStringUtils.js +1 -0
- package/dist/src/core/services/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/services/legacy/services/mcp/utils.js +1 -0
- package/dist/src/core/services/legacy/services/policyLimits/index.js +1 -0
- package/dist/src/core/services/legacy/services/remoteManagedSettings/index.js +1 -0
- package/dist/src/core/services/legacy/services/voice.js +1 -0
- package/dist/src/core/services/legacy/state/AppState.js +1 -0
- package/dist/src/core/services/legacy/state/AppStateStore.js +1 -0
- package/dist/src/core/services/legacy/state/selectors.js +1 -0
- package/dist/src/core/services/legacy/state/store.js +1 -0
- package/dist/src/core/services/legacy/tasks/LocalAgentTask/LocalAgentTask.js +1 -0
- package/dist/src/core/services/legacy/tasks/LocalShellTask/guards.js +1 -0
- package/dist/src/core/services/legacy/utils/Shell.js +1 -0
- package/dist/src/core/services/legacy/utils/abortController.js +1 -0
- package/dist/src/core/services/legacy/utils/advisor.js +1 -0
- package/dist/src/core/services/legacy/utils/agentContext.js +1 -0
- package/dist/src/core/services/legacy/utils/agentSwarmsEnabled.js +1 -0
- package/dist/src/core/services/legacy/utils/api.js +1 -0
- package/dist/src/core/services/legacy/utils/apiPreconnect.js +1 -0
- package/dist/src/core/services/legacy/utils/array.js +1 -0
- package/dist/src/core/services/legacy/utils/attachments.js +1 -0
- package/dist/src/core/services/legacy/utils/attributionHooks.js +1 -0
- package/dist/src/core/services/legacy/utils/auth.js +1 -0
- package/dist/src/core/services/legacy/utils/aws.js +1 -0
- package/dist/src/core/services/legacy/utils/betas.js +1 -0
- package/dist/src/core/services/legacy/utils/billing.js +1 -0
- package/dist/src/core/services/legacy/utils/browser.js +1 -0
- package/dist/src/core/services/legacy/utils/caCertsConfig.js +1 -0
- package/dist/src/core/services/legacy/utils/classifierApprovals.js +1 -0
- package/dist/src/core/services/legacy/utils/claudeInChrome/chromeNativeHost.js +1 -0
- package/dist/src/core/services/legacy/utils/claudeInChrome/common.js +1 -0
- package/dist/src/core/services/legacy/utils/claudeInChrome/mcpServer.js +1 -0
- package/dist/src/core/services/legacy/utils/claudeInChrome/prompt.js +1 -0
- package/dist/src/core/services/legacy/utils/claudeInChrome/toolRendering.js +1 -0
- package/dist/src/core/services/legacy/utils/claudemd.js +1 -0
- package/dist/src/core/services/legacy/utils/cleanupRegistry.js +1 -0
- package/dist/src/core/services/legacy/utils/computerControlMcp/common.js +1 -0
- package/dist/src/core/services/legacy/utils/computerUse/common.js +1 -0
- package/dist/src/core/services/legacy/utils/computerUse/mcpServer.js +1 -0
- package/dist/src/core/services/legacy/utils/computerUse/wrapper.js +1 -0
- package/dist/src/core/services/legacy/utils/concurrentSessions.js +1 -0
- package/dist/src/core/services/legacy/utils/config.js +1 -0
- package/dist/src/core/services/legacy/utils/contentArray.js +1 -0
- package/dist/src/core/services/legacy/utils/context.js +1 -0
- package/dist/src/core/services/legacy/utils/contextAnalysis.js +1 -0
- package/dist/src/core/services/legacy/utils/cwd.js +1 -0
- package/dist/src/core/services/legacy/utils/databaseMcp/common.js +1 -0
- package/dist/src/core/services/legacy/utils/databaseMcp/mcpServer.js +1 -0
- package/dist/src/core/services/legacy/utils/debug.js +1 -0
- package/dist/src/core/services/legacy/utils/detectRepository.js +1 -0
- package/dist/src/core/services/legacy/utils/diagLogs.js +1 -0
- package/dist/src/core/services/legacy/utils/earlyInput.js +1 -0
- package/dist/src/core/services/legacy/utils/effort.js +1 -0
- package/dist/src/core/services/legacy/utils/env.js +1 -0
- package/dist/src/core/services/legacy/utils/envDynamic.js +1 -0
- package/dist/src/core/services/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/services/legacy/utils/envValidation.js +1 -0
- package/dist/src/core/services/legacy/utils/errors.js +1 -0
- package/dist/src/core/services/legacy/utils/execFileNoThrow.js +1 -0
- package/dist/src/core/services/legacy/utils/fastMode.js +1 -0
- package/dist/src/core/services/legacy/utils/file.js +1 -0
- package/dist/src/core/services/legacy/utils/fileRead.js +1 -0
- package/dist/src/core/services/legacy/utils/fileStateCache.js +1 -0
- package/dist/src/core/services/legacy/utils/fingerprint.js +1 -0
- package/dist/src/core/services/legacy/utils/forkedAgent.js +1 -0
- package/dist/src/core/services/legacy/utils/format.js +1 -0
- package/dist/src/core/services/legacy/utils/fsOperations.js +1 -0
- package/dist/src/core/services/legacy/utils/generators.js +1 -0
- package/dist/src/core/services/legacy/utils/genericProcessUtils.js +1 -0
- package/dist/src/core/services/legacy/utils/git.js +1 -0
- package/dist/src/core/services/legacy/utils/gracefulShutdown.js +1 -0
- package/dist/src/core/services/legacy/utils/hash.js +1 -0
- package/dist/src/core/services/legacy/utils/headlessProfiler.js +1 -0
- package/dist/src/core/services/legacy/utils/hooks/postSamplingHooks.js +1 -0
- package/dist/src/core/services/legacy/utils/hooks.js +1 -0
- package/dist/src/core/services/legacy/utils/http.js +1 -0
- package/dist/src/core/services/legacy/utils/ide.js +1 -0
- package/dist/src/core/services/legacy/utils/imageResizer.js +1 -0
- package/dist/src/core/services/legacy/utils/imageValidation.js +1 -0
- package/dist/src/core/services/legacy/utils/json.js +1 -0
- package/dist/src/core/services/legacy/utils/jsonRead.js +1 -0
- package/dist/src/core/services/legacy/utils/lazySchema.js +1 -0
- package/dist/src/core/services/legacy/utils/listSessionsImpl.js +1 -0
- package/dist/src/core/services/legacy/utils/log.js +1 -0
- package/dist/src/core/services/legacy/utils/managedEnv.js +1 -0
- package/dist/src/core/services/legacy/utils/mcpInstructionsDelta.js +1 -0
- package/dist/src/core/services/legacy/utils/memoize.js +1 -0
- package/dist/src/core/services/legacy/utils/memory/types.js +1 -0
- package/dist/src/core/services/legacy/utils/messageQueueManager.js +1 -0
- package/dist/src/core/services/legacy/utils/messages.js +1 -0
- package/dist/src/core/services/legacy/utils/model/bedrock.js +1 -0
- package/dist/src/core/services/legacy/utils/model/model.js +1 -0
- package/dist/src/core/services/legacy/utils/model/modelStrings.js +1 -0
- package/dist/src/core/services/legacy/utils/model/providerBaseUrls.js +1 -0
- package/dist/src/core/services/legacy/utils/model/providerCatalog.js +1 -0
- package/dist/src/core/services/legacy/utils/model/providerProfiles.js +1 -0
- package/dist/src/core/services/legacy/utils/model/providers.js +1 -0
- package/dist/src/core/services/legacy/utils/modelCost.js +1 -0
- package/dist/src/core/services/legacy/utils/mtls.js +1 -0
- package/dist/src/core/services/legacy/utils/orchestration/store/index.js +1 -0
- package/dist/src/core/services/legacy/utils/orchestration/store/orchestrationDb.js +1 -0
- package/dist/src/core/services/legacy/utils/orchestration/store/providerAgentStore.js +1 -0
- package/dist/src/core/services/legacy/utils/orchestration/store/providerWorkspaceStore.js +1 -0
- package/dist/src/core/services/legacy/utils/orchestration/store/runStore.js +1 -0
- package/dist/src/core/services/legacy/utils/orchestration/store/teamStore.js +1 -0
- package/dist/src/core/services/legacy/utils/orchestration/store/types.js +1 -0
- package/dist/src/core/services/legacy/utils/path.js +1 -0
- package/dist/src/core/services/legacy/utils/permissions/PermissionMode.js +1 -0
- package/dist/src/core/services/legacy/utils/permissions/PermissionResult.js +1 -0
- package/dist/src/core/services/legacy/utils/permissions/autoModeState.js +1 -0
- package/dist/src/core/services/legacy/utils/permissions/filesystem.js +1 -0
- package/dist/src/core/services/legacy/utils/permissions/permissions.js +1 -0
- package/dist/src/core/services/legacy/utils/plans.js +1 -0
- package/dist/src/core/services/legacy/utils/platform.js +1 -0
- package/dist/src/core/services/legacy/utils/plugins/installedPluginsManager.js +1 -0
- package/dist/src/core/services/legacy/utils/plugins/lspPluginIntegration.js +1 -0
- package/dist/src/core/services/legacy/utils/plugins/marketplaceManager.js +1 -0
- package/dist/src/core/services/legacy/utils/plugins/officialMarketplace.js +1 -0
- package/dist/src/core/services/legacy/utils/plugins/pluginLoader.js +1 -0
- package/dist/src/core/services/legacy/utils/privacyLevel.js +1 -0
- package/dist/src/core/services/legacy/utils/process.js +1 -0
- package/dist/src/core/services/legacy/utils/proxy.js +1 -0
- package/dist/src/core/services/legacy/utils/queryHelpers.js +1 -0
- package/dist/src/core/services/legacy/utils/queryProfiler.js +1 -0
- package/dist/src/core/services/legacy/utils/renderOptions.js +1 -0
- package/dist/src/core/services/legacy/utils/secureStorage/index.js +1 -0
- package/dist/src/core/services/legacy/utils/sequential.js +1 -0
- package/dist/src/core/services/legacy/utils/sessionActivity.js +1 -0
- package/dist/src/core/services/legacy/utils/sessionIngressAuth.js +1 -0
- package/dist/src/core/services/legacy/utils/sessionStart.js +1 -0
- package/dist/src/core/services/legacy/utils/sessionStorage.js +1 -0
- package/dist/src/core/services/legacy/utils/settings/changeDetector.js +1 -0
- package/dist/src/core/services/legacy/utils/settings/internalWrites.js +1 -0
- package/dist/src/core/services/legacy/utils/settings/settings.js +1 -0
- package/dist/src/core/services/legacy/utils/settings/settingsCache.js +1 -0
- package/dist/src/core/services/legacy/utils/settings/types.js +1 -0
- package/dist/src/core/services/legacy/utils/shell/shellToolUtils.js +1 -0
- package/dist/src/core/services/legacy/utils/signal.js +1 -0
- package/dist/src/core/services/legacy/utils/sinks.js +1 -0
- package/dist/src/core/services/legacy/utils/sleep.js +1 -0
- package/dist/src/core/services/legacy/utils/slowOperations.js +1 -0
- package/dist/src/core/services/legacy/utils/startupProfiler.js +1 -0
- package/dist/src/core/services/legacy/utils/stream.js +1 -0
- package/dist/src/core/services/legacy/utils/stringUtils.js +1 -0
- package/dist/src/core/services/legacy/utils/subprocessEnv.js +1 -0
- package/dist/src/core/services/legacy/utils/swarm/teamHelpers.js +1 -0
- package/dist/src/core/services/legacy/utils/systemPromptType.js +1 -0
- package/dist/src/core/services/legacy/utils/task/diskOutput.js +1 -0
- package/dist/src/core/services/legacy/utils/teammate.js +1 -0
- package/dist/src/core/services/legacy/utils/telemetry/betaSessionTracing.js +1 -0
- package/dist/src/core/services/legacy/utils/telemetry/events.js +1 -0
- package/dist/src/core/services/legacy/utils/telemetry/instrumentation.js +1 -0
- package/dist/src/core/services/legacy/utils/telemetry/sessionTracing.js +1 -0
- package/dist/src/core/services/legacy/utils/telemetryAttributes.js +1 -0
- package/dist/src/core/services/legacy/utils/teleport/api.js +1 -0
- package/dist/src/core/services/legacy/utils/thinking.js +1 -0
- package/dist/src/core/services/legacy/utils/tokens.js +1 -0
- package/dist/src/core/services/legacy/utils/toolErrors.js +1 -0
- package/dist/src/core/services/legacy/utils/toolResultStorage.js +1 -0
- package/dist/src/core/services/legacy/utils/toolSearch.js +1 -0
- package/dist/src/core/services/legacy/utils/user.js +1 -0
- package/dist/src/core/services/legacy/utils/userAgent.js +1 -0
- package/dist/src/core/services/legacy/utils/windowsPaths.js +1 -0
- package/dist/src/core/services/legacy/utils/worktree.js +1 -0
- package/dist/src/core/services/legacy/utils/worktreeModeEnabled.js +1 -0
- package/dist/src/core/services/legacy/utils/zodToJsonSchema.js +1 -0
- package/dist/src/core/services/mcpCliAdapter.js +36 -0
- package/dist/src/core/services/pluginsCliAdapter.js +23 -0
- package/dist/src/core/session/addDirCliAdapter.js +1 -0
- package/dist/src/core/session/addDirValidationCliAdapter.js +1 -0
- package/dist/src/core/session/branchCliAdapter.js +1 -0
- package/dist/src/core/session/branchCore.js +103 -0
- package/dist/src/core/session/branchCore.smoke.js +20 -0
- package/dist/src/core/session/briefCliAdapter.js +4 -0
- package/dist/src/core/session/clearCachesCore.js +33 -0
- package/dist/src/core/session/clearConversationCore.js +37 -0
- package/dist/src/core/session/cliAdapter.js +2 -0
- package/dist/src/core/session/colorCliAdapter.js +1 -0
- package/dist/src/core/session/colorCore.js +7 -0
- package/dist/src/core/session/compactCliAdapter.js +1 -0
- package/dist/src/core/session/compactCore.js +112 -0
- package/dist/src/core/session/contextCore.js +160 -0
- package/dist/src/core/session/contextRenderCliAdapter.js +1 -0
- package/dist/src/core/session/contracts.js +1 -0
- package/dist/src/core/session/copyCliAdapter.js +1 -0
- package/dist/src/core/session/exitCliAdapter.js +1 -0
- package/dist/src/core/session/exportCliAdapter.js +1 -0
- package/dist/src/core/session/exportCore.js +59 -0
- package/dist/src/core/session/filesCliAdapter.js +1 -0
- package/dist/src/core/session/generateSessionNameCliAdapter.js +1 -0
- package/dist/src/core/session/generateSessionNameCore.js +46 -0
- package/dist/src/core/session/generateSessionNameCore.smoke.js +23 -0
- package/dist/src/core/session/heapdumpCliAdapter.js +1 -0
- package/dist/src/core/session/initCliAdapter.js +1 -0
- package/dist/src/core/session/keybindingsCliAdapter.js +1 -0
- package/dist/src/core/session/legacy/addDirCliAdapter.impl.js +4 -0
- package/dist/src/core/session/legacy/addDirValidationCliAdapter.impl.js +5 -0
- package/dist/src/core/session/legacy/branchCliAdapter.impl.js +37 -0
- package/dist/src/core/session/legacy/cliAdapter.impl.js +244 -0
- package/dist/src/core/session/legacy/colorCliAdapter.impl.js +5 -0
- package/dist/src/core/session/legacy/compactCliAdapter.impl.js +11 -0
- package/dist/src/core/session/legacy/compactCliAdapter.js +9 -0
- package/dist/src/core/session/legacy/contextCliAdapter.js +6 -0
- package/dist/src/core/session/legacy/contextCollapseIndex.js +1 -0
- package/dist/src/core/session/legacy/contextCollapseOperations.js +1 -0
- package/dist/src/core/session/legacy/contextRenderCliAdapter.impl.js +2 -0
- package/dist/src/core/session/legacy/copyCliAdapter.impl.js +5 -0
- package/dist/src/core/session/legacy/exitCliAdapter.impl.js +4 -0
- package/dist/src/core/session/legacy/exportCliAdapter.impl.js +4 -0
- package/dist/src/core/session/legacy/filesCliAdapter.impl.js +3 -0
- package/dist/src/core/session/legacy/generateSessionNameCliAdapter.impl.js +19 -0
- package/dist/src/core/session/legacy/heapdumpCliAdapter.impl.js +2 -0
- package/dist/src/core/session/legacy/keybindingsCliAdapter.impl.js +3 -0
- package/dist/src/core/session/legacy/memoryCliAdapter.impl.js +26 -0
- package/dist/src/core/session/legacy/planCliAdapter.impl.js +32 -0
- package/dist/src/core/session/legacy/releaseNotesCliAdapter.impl.js +3 -0
- package/dist/src/core/session/legacy/renameCliAdapter.impl.js +51 -0
- package/dist/src/core/session/legacy/resumeCliAdapter.impl.js +96 -0
- package/dist/src/core/session/legacy/resumeCommandCliAdapter.impl.js +7 -0
- package/dist/src/core/session/legacy/resumeCoreCliAdapter.js +2 -0
- package/dist/src/core/session/legacy/resumenCliAdapter.impl.js +3 -0
- package/dist/src/core/session/legacy/sessionCliAdapter.impl.js +3 -0
- package/dist/src/core/session/legacy/tagCliAdapter.impl.js +12 -0
- package/dist/src/core/session/legacy/timelineCliAdapter.impl.js +4 -0
- package/dist/src/core/session/legacy/vimCliAdapter.impl.js +3 -0
- package/dist/src/core/session/memoryCliAdapter.js +1 -0
- package/dist/src/core/session/memoryCore.js +44 -0
- package/dist/src/core/session/planCliAdapter.js +1 -0
- package/dist/src/core/session/planCore.js +11 -0
- package/dist/src/core/session/preflight.smoke.js +153 -0
- package/dist/src/core/session/releaseNotesCliAdapter.js +1 -0
- package/dist/src/core/session/releaseNotesCore.js +17 -0
- package/dist/src/core/session/renameCliAdapter.js +1 -0
- package/dist/src/core/session/renameCore.js +26 -0
- package/dist/src/core/session/resumeCliAdapter.js +1 -0
- package/dist/src/core/session/resumeCommandCliAdapter.js +1 -0
- package/dist/src/core/session/resumeCore.js +24 -0
- package/dist/src/core/session/resumenCliAdapter.js +1 -0
- package/dist/src/core/session/resumenCore.js +15 -0
- package/dist/src/core/session/sessionCliAdapter.js +1 -0
- package/dist/src/core/session/sessionCore.js +9 -0
- package/dist/src/core/session/tagCliAdapter.js +1 -0
- package/dist/src/core/session/tagCore.js +16 -0
- package/dist/src/core/session/timelineCliAdapter.js +1 -0
- package/dist/src/core/session/vimCliAdapter.js +1 -0
- package/dist/src/core/session/vimCore.js +14 -0
- package/dist/src/core/sharedLegacyDeps/pluginsCliAdapterDeps.js +45 -0
- package/dist/src/core/sharedLegacyDeps/pluginsReloadDeps.js +8 -0
- package/dist/src/core/sharedLegacyDeps/skillsCliAdapterDeps.js +8 -0
- package/dist/src/core/skills/importCore.js +66 -0
- package/dist/src/core/skills/importCore.smoke.js +49 -0
- package/dist/src/core/skills/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/skills/legacy/cliAdapter.impl.js +32 -0
- package/dist/src/core/skills/legacy/services/SessionMemory/sessionMemoryUtils.js +1 -0
- package/dist/src/core/skills/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/skills/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/skills/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/skills/legacy/services/policyLimits/index.js +1 -0
- package/dist/src/core/skills/legacy/services/tokenEstimation.js +1 -0
- package/dist/src/core/skills/legacy/utils/argumentSubstitution.js +1 -0
- package/dist/src/core/skills/legacy/utils/auth.js +1 -0
- package/dist/src/core/skills/legacy/utils/background/remote/preconditions.js +1 -0
- package/dist/src/core/skills/legacy/utils/claudeInChrome/prompt.js +1 -0
- package/dist/src/core/skills/legacy/utils/claudeInChrome/setup.js +1 -0
- package/dist/src/core/skills/legacy/utils/cwd.js +1 -0
- package/dist/src/core/skills/legacy/utils/debug.js +1 -0
- package/dist/src/core/skills/legacy/utils/detectRepository.js +1 -0
- package/dist/src/core/skills/legacy/utils/effort.js +1 -0
- package/dist/src/core/skills/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/skills/legacy/utils/errors.js +1 -0
- package/dist/src/core/skills/legacy/utils/format.js +1 -0
- package/dist/src/core/skills/legacy/utils/frontmatterParser.js +1 -0
- package/dist/src/core/skills/legacy/utils/fsOperations.js +1 -0
- package/dist/src/core/skills/legacy/utils/git/gitignore.js +1 -0
- package/dist/src/core/skills/legacy/utils/git.js +1 -0
- package/dist/src/core/skills/legacy/utils/log.js +1 -0
- package/dist/src/core/skills/legacy/utils/markdownConfigLoader.js +1 -0
- package/dist/src/core/skills/legacy/utils/messages.js +1 -0
- package/dist/src/core/skills/legacy/utils/model/model.js +1 -0
- package/dist/src/core/skills/legacy/utils/permissions/filesystem.js +1 -0
- package/dist/src/core/skills/legacy/utils/promptShellExecution.js +1 -0
- package/dist/src/core/skills/legacy/utils/settings/constants.js +1 -0
- package/dist/src/core/skills/legacy/utils/settings/managedPath.js +1 -0
- package/dist/src/core/skills/legacy/utils/settings/pluginOnlyPolicy.js +1 -0
- package/dist/src/core/skills/legacy/utils/settings/types.js +1 -0
- package/dist/src/core/skills/legacy/utils/signal.js +1 -0
- package/dist/src/core/skills/legacy/utils/slowOperations.js +1 -0
- package/dist/src/core/skills/legacy/utils/teleport/environments.js +1 -0
- package/dist/src/core/state/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/state/legacy/context/mailbox.js +1 -0
- package/dist/src/core/state/legacy/context/voice.js +1 -0
- package/dist/src/core/state/legacy/hooks/useSettingsChange.js +1 -0
- package/dist/src/core/state/legacy/services/PromptSuggestion/promptSuggestion.js +1 -0
- package/dist/src/core/state/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/state/legacy/services/mcp/channelPermissions.js +1 -0
- package/dist/src/core/state/legacy/services/mcp/elicitationHandler.js +1 -0
- package/dist/src/core/state/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/state/legacy/tasks/InProcessTeammateTask/types.js +1 -0
- package/dist/src/core/state/legacy/tasks/LocalAgentTask/LocalAgentTask.js +1 -0
- package/dist/src/core/state/legacy/tasks/types.js +1 -0
- package/dist/src/core/state/legacy/utils/auth.js +1 -0
- package/dist/src/core/state/legacy/utils/commitAttribution.js +1 -0
- package/dist/src/core/state/legacy/utils/config.js +1 -0
- package/dist/src/core/state/legacy/utils/debug.js +1 -0
- package/dist/src/core/state/legacy/utils/effort.js +1 -0
- package/dist/src/core/state/legacy/utils/errors.js +1 -0
- package/dist/src/core/state/legacy/utils/fileHistory.js +1 -0
- package/dist/src/core/state/legacy/utils/hooks/postSamplingHooks.js +1 -0
- package/dist/src/core/state/legacy/utils/hooks/sessionHooks.js +1 -0
- package/dist/src/core/state/legacy/utils/log.js +1 -0
- package/dist/src/core/state/legacy/utils/managedEnv.js +1 -0
- package/dist/src/core/state/legacy/utils/model/model.js +1 -0
- package/dist/src/core/state/legacy/utils/permissions/PermissionMode.js +1 -0
- package/dist/src/core/state/legacy/utils/permissions/denialTracking.js +1 -0
- package/dist/src/core/state/legacy/utils/permissions/permissionSetup.js +1 -0
- package/dist/src/core/state/legacy/utils/sessionState.js +1 -0
- package/dist/src/core/state/legacy/utils/settings/applySettingsChange.js +1 -0
- package/dist/src/core/state/legacy/utils/settings/constants.js +1 -0
- package/dist/src/core/state/legacy/utils/settings/settings.js +1 -0
- package/dist/src/core/state/legacy/utils/settings/types.js +1 -0
- package/dist/src/core/state/legacy/utils/teammate.js +1 -0
- package/dist/src/core/state/legacy/utils/thinking.js +1 -0
- package/dist/src/core/tasks/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/tasks/legacy/services/PromptSuggestion/speculation.js +1 -0
- package/dist/src/core/tasks/legacy/services/autoDream/consolidationLock.js +1 -0
- package/dist/src/core/tasks/legacy/services/tokenEstimation.js +1 -0
- package/dist/src/core/tasks/legacy/state/AppState.js +1 -0
- package/dist/src/core/tasks/legacy/utils/ShellCommand.js +1 -0
- package/dist/src/core/tasks/legacy/utils/abortController.js +1 -0
- package/dist/src/core/tasks/legacy/utils/agentContext.js +1 -0
- package/dist/src/core/tasks/legacy/utils/array.js +1 -0
- package/dist/src/core/tasks/legacy/utils/background/remote/remoteSession.js +1 -0
- package/dist/src/core/tasks/legacy/utils/cleanupRegistry.js +1 -0
- package/dist/src/core/tasks/legacy/utils/collapseReadSearch.js +1 -0
- package/dist/src/core/tasks/legacy/utils/debug.js +1 -0
- package/dist/src/core/tasks/legacy/utils/fsOperations.js +1 -0
- package/dist/src/core/tasks/legacy/utils/log.js +1 -0
- package/dist/src/core/tasks/legacy/utils/messageQueueManager.js +1 -0
- package/dist/src/core/tasks/legacy/utils/messages.js +1 -0
- package/dist/src/core/tasks/legacy/utils/permissions/PermissionMode.js +1 -0
- package/dist/src/core/tasks/legacy/utils/sdkEventQueue.js +1 -0
- package/dist/src/core/tasks/legacy/utils/sessionStorage.js +1 -0
- package/dist/src/core/tasks/legacy/utils/slowOperations.js +1 -0
- package/dist/src/core/tasks/legacy/utils/swarm/spawnInProcess.js +1 -0
- package/dist/src/core/tasks/legacy/utils/task/diskOutput.js +1 -0
- package/dist/src/core/tasks/legacy/utils/task/framework.js +1 -0
- package/dist/src/core/tasks/legacy/utils/task/sdkProgress.js +1 -0
- package/dist/src/core/tasks/legacy/utils/teleport/api.js +1 -0
- package/dist/src/core/tasks/legacy/utils/teleport.js +1 -0
- package/dist/src/core/tasks/legacy/utils/todo/types.js +1 -0
- package/dist/src/core/tasks/legacy/utils/ultraplan/ccrSession.js +1 -0
- package/dist/src/core/tasks/legacy/utils/xml.js +1 -0
- package/dist/src/core/tasks/ultraplanCliAdapter.js +11 -0
- package/dist/src/core/tasks/ultraplanPrompt.js +18 -0
- package/dist/src/core/terminal/cliAdapter.js +1 -0
- package/dist/src/core/terminal/legacy/cliAdapter.impl.js +1 -0
- package/dist/src/core/terminal/runtime.js +40 -0
- package/dist/src/core/terminal/runtime.smoke.js +18 -0
- package/dist/src/core/terminal/setupRuntime.js +468 -0
- package/dist/src/core/tools/bashCliAdapter.js +1 -0
- package/dist/src/core/tools/fileToolsCliAdapter.js +46 -0
- package/dist/src/core/tools/legacy/bashCliAdapter.impl.js +1 -0
- package/dist/src/core/tools/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/tools/legacy/bootstrap/state.js.js +1 -0
- package/dist/src/core/tools/legacy/fileToolsCliAdapter.impl.js +1 -0
- package/dist/src/core/tools/legacy/hooks/useCanUseTool.js +1 -0
- package/dist/src/core/tools/legacy/powerShellCliAdapter.impl.js +1 -0
- package/dist/src/core/tools/legacy/services/AgentSummary/agentSummary.js +1 -0
- package/dist/src/core/tools/legacy/services/AgentSummary/agentSummary.js.js +1 -0
- package/dist/src/core/tools/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/tools/legacy/services/analytics/growthbook.js.js +1 -0
- package/dist/src/core/tools/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/tools/legacy/services/analytics/index.js.js +1 -0
- package/dist/src/core/tools/legacy/services/analytics/metadata.js +1 -0
- package/dist/src/core/tools/legacy/services/api/dumpPrompts.js +1 -0
- package/dist/src/core/tools/legacy/services/api/dumpPrompts.js.js +1 -0
- package/dist/src/core/tools/legacy/services/api/promptCacheBreakDetection.js +1 -0
- package/dist/src/core/tools/legacy/services/mcp/client.js +1 -0
- package/dist/src/core/tools/legacy/services/mcp/config.js +1 -0
- package/dist/src/core/tools/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/tools/legacy/services/skillSearch/featureCheck.js +1 -0
- package/dist/src/core/tools/legacy/services/skillSearch/featureCheck.js.js +1 -0
- package/dist/src/core/tools/legacy/services/skillSearch/remoteSkillLoader.js +1 -0
- package/dist/src/core/tools/legacy/services/skillSearch/remoteSkillLoader.js.js +1 -0
- package/dist/src/core/tools/legacy/services/skillSearch/remoteSkillState.js +1 -0
- package/dist/src/core/tools/legacy/services/skillSearch/remoteSkillState.js.js +1 -0
- package/dist/src/core/tools/legacy/services/skillSearch/telemetry.js +1 -0
- package/dist/src/core/tools/legacy/services/skillSearch/telemetry.js.js +1 -0
- package/dist/src/core/tools/legacy/state/AppState.js +1 -0
- package/dist/src/core/tools/legacy/tasks/LocalAgentTask/LocalAgentTask.js +1 -0
- package/dist/src/core/tools/legacy/tasks/LocalAgentTask/LocalAgentTask.js.js +1 -0
- package/dist/src/core/tools/legacy/tasks/LocalMainSessionTask.js +1 -0
- package/dist/src/core/tools/legacy/tasks/LocalShellTask/LocalShellTask.js +1 -0
- package/dist/src/core/tools/legacy/tasks/LocalShellTask/LocalShellTask.js.js +1 -0
- package/dist/src/core/tools/legacy/tasks/LocalShellTask/guards.js +1 -0
- package/dist/src/core/tools/legacy/tasks/LocalShellTask/killShellTasks.js +1 -0
- package/dist/src/core/tools/legacy/tasks/RemoteAgentTask/RemoteAgentTask.js +1 -0
- package/dist/src/core/tools/legacy/tasks/RemoteAgentTask/RemoteAgentTask.js.js +1 -0
- package/dist/src/core/tools/legacy/tasks/types.js +1 -0
- package/dist/src/core/tools/legacy/utils/Shell.js +1 -0
- package/dist/src/core/tools/legacy/utils/Shell.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/agentContext.js +1 -0
- package/dist/src/core/tools/legacy/utils/agentContext.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/agentId.js +1 -0
- package/dist/src/core/tools/legacy/utils/agentSwarmsEnabled.js +1 -0
- package/dist/src/core/tools/legacy/utils/agentSwarmsEnabled.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/array.js +1 -0
- package/dist/src/core/tools/legacy/utils/array.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/attachments.js +1 -0
- package/dist/src/core/tools/legacy/utils/auth.js +1 -0
- package/dist/src/core/tools/legacy/utils/claudeCodeHints.js +1 -0
- package/dist/src/core/tools/legacy/utils/claudeCodeHints.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/collapseReadSearch.js +1 -0
- package/dist/src/core/tools/legacy/utils/collapseReadSearch.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/cwd.js +1 -0
- package/dist/src/core/tools/legacy/utils/cwd.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/debug.js +1 -0
- package/dist/src/core/tools/legacy/utils/debug.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/effort.js +1 -0
- package/dist/src/core/tools/legacy/utils/embeddedTools.js +1 -0
- package/dist/src/core/tools/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/tools/legacy/utils/envUtils.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/errors.js +1 -0
- package/dist/src/core/tools/legacy/utils/errors.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/file.js +1 -0
- package/dist/src/core/tools/legacy/utils/file.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/fileStateCache.js +1 -0
- package/dist/src/core/tools/legacy/utils/forkedAgent.js +1 -0
- package/dist/src/core/tools/legacy/utils/format.js +1 -0
- package/dist/src/core/tools/legacy/utils/format.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/frontmatterParser.js +1 -0
- package/dist/src/core/tools/legacy/utils/git.js +1 -0
- package/dist/src/core/tools/legacy/utils/hooks/registerFrontmatterHooks.js +1 -0
- package/dist/src/core/tools/legacy/utils/hooks/sessionHooks.js +1 -0
- package/dist/src/core/tools/legacy/utils/hooks.js +1 -0
- package/dist/src/core/tools/legacy/utils/hyperlink.js +1 -0
- package/dist/src/core/tools/legacy/utils/hyperlink.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/lazySchema.js +1 -0
- package/dist/src/core/tools/legacy/utils/lazySchema.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/log.js +1 -0
- package/dist/src/core/tools/legacy/utils/log.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/markdownConfigLoader.js +1 -0
- package/dist/src/core/tools/legacy/utils/mcpValidation.js +1 -0
- package/dist/src/core/tools/legacy/utils/mcpValidation.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/messages.js +1 -0
- package/dist/src/core/tools/legacy/utils/messages.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/agent.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/agent.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/aliases.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/model.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/model.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/providerCatalog.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/providerOverrideContext.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/providerOverrideContext.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/providerProfiles.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/providers.js +1 -0
- package/dist/src/core/tools/legacy/utils/model/providers.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/orchestration/store/index.js +1 -0
- package/dist/src/core/tools/legacy/utils/path.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/PermissionMode.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/PermissionMode.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/PermissionResult.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/autoModeState.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/permissionRuleParser.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/permissionSetup.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/permissions.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/permissions.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/permissions/yoloClassifier.js +1 -0
- package/dist/src/core/tools/legacy/utils/platform.js +1 -0
- package/dist/src/core/tools/legacy/utils/platform.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/plugins/hintRecommendation.js +1 -0
- package/dist/src/core/tools/legacy/utils/plugins/hintRecommendation.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/plugins/loadPluginAgents.js +1 -0
- package/dist/src/core/tools/legacy/utils/promptCategory.js +1 -0
- package/dist/src/core/tools/legacy/utils/sandbox/sandbox-adapter.js +1 -0
- package/dist/src/core/tools/legacy/utils/sandbox/sandbox-adapter.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/sdkEventQueue.js +1 -0
- package/dist/src/core/tools/legacy/utils/sdkEventQueue.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/semanticBoolean.js +1 -0
- package/dist/src/core/tools/legacy/utils/semanticBoolean.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/semanticNumber.js +1 -0
- package/dist/src/core/tools/legacy/utils/semanticNumber.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/sessionStorage.js +1 -0
- package/dist/src/core/tools/legacy/utils/sessionStorage.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/settings/constants.js +1 -0
- package/dist/src/core/tools/legacy/utils/settings/pluginOnlyPolicy.js +1 -0
- package/dist/src/core/tools/legacy/utils/settings/types.js +1 -0
- package/dist/src/core/tools/legacy/utils/shell/powershellDetection.js +1 -0
- package/dist/src/core/tools/legacy/utils/shell/powershellDetection.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/sleep.js +1 -0
- package/dist/src/core/tools/legacy/utils/sleep.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/slowOperations.js +1 -0
- package/dist/src/core/tools/legacy/utils/slowOperations.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/stringUtils.js +1 -0
- package/dist/src/core/tools/legacy/utils/stringUtils.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/swarm/backends/registry.js +1 -0
- package/dist/src/core/tools/legacy/utils/swarm/constants.js +1 -0
- package/dist/src/core/tools/legacy/utils/swarm/teamHelpers.js +1 -0
- package/dist/src/core/tools/legacy/utils/swarm/teammateLayoutManager.js +1 -0
- package/dist/src/core/tools/legacy/utils/systemPrompt.js +1 -0
- package/dist/src/core/tools/legacy/utils/systemPrompt.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/systemPromptType.js +1 -0
- package/dist/src/core/tools/legacy/utils/systemPromptType.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/TaskOutput.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/TaskOutput.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/diskOutput.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/diskOutput.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/framework.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/framework.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/outputFormatting.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/outputFormatting.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/task/sdkProgress.js +1 -0
- package/dist/src/core/tools/legacy/utils/tasks.js +1 -0
- package/dist/src/core/tools/legacy/utils/teammate.js +1 -0
- package/dist/src/core/tools/legacy/utils/teammate.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/teammateContext.js +1 -0
- package/dist/src/core/tools/legacy/utils/teammateContext.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/telemetry/perfettoTracing.js +1 -0
- package/dist/src/core/tools/legacy/utils/teleport.js +1 -0
- package/dist/src/core/tools/legacy/utils/teleport.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/terminal.js +1 -0
- package/dist/src/core/tools/legacy/utils/terminal.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/theme.js +1 -0
- package/dist/src/core/tools/legacy/utils/tokens.js +1 -0
- package/dist/src/core/tools/legacy/utils/tokens.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/toolResultStorage.js +1 -0
- package/dist/src/core/tools/legacy/utils/toolResultStorage.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/udsClient.js +1 -0
- package/dist/src/core/tools/legacy/utils/udsClient.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/uuid.js +1 -0
- package/dist/src/core/tools/legacy/utils/uuid.js.js +1 -0
- package/dist/src/core/tools/legacy/utils/words.js +1 -0
- package/dist/src/core/tools/legacy/utils/worktree.js +1 -0
- package/dist/src/core/tools/legacy/utils/worktree.js.js +1 -0
- package/dist/src/core/tools/powerShellCliAdapter.js +3 -0
- package/dist/src/core/usage/extraUsageCliAdapter.js +1 -0
- package/dist/src/core/usage/extraUsageCore.js +82 -0
- package/dist/src/core/usage/extraUsageCore.smoke.js +27 -0
- package/dist/src/core/usage/indexCliAdapter.js +4 -0
- package/dist/src/core/usage/indexCore.js +12 -0
- package/dist/src/core/usage/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/usage/legacy/deps.js +11 -0
- package/dist/src/core/usage/legacy/extraUsageCliAdapter.impl.js +16 -0
- package/dist/src/core/usage/legacy/indexCliAdapter.impl.js +6 -0
- package/dist/src/core/usage/legacy/services/api/adminRequests.js +1 -0
- package/dist/src/core/usage/legacy/services/api/overageCreditGrant.js +1 -0
- package/dist/src/core/usage/legacy/services/api/usage.js +1 -0
- package/dist/src/core/usage/legacy/utils/auth.js +1 -0
- package/dist/src/core/usage/legacy/utils/billing.js +1 -0
- package/dist/src/core/usage/legacy/utils/browser.js +1 -0
- package/dist/src/core/usage/legacy/utils/config.js +1 -0
- package/dist/src/core/usage/legacy/utils/envUtils.js +1 -0
- package/dist/src/core/usage/legacy/utils/log.js +1 -0
- package/dist/src/core/utils/legacy/bootstrap/state.js +1 -0
- package/dist/src/core/utils/legacy/hooks/useCanUseTool.js +1 -0
- package/dist/src/core/utils/legacy/hooks/useIdeSelection.js +1 -0
- package/dist/src/core/utils/legacy/hooks/useTimeout.js +1 -0
- package/dist/src/core/utils/legacy/services/MagicDocs/magicDocs.js +1 -0
- package/dist/src/core/utils/legacy/services/analytics/datadog.js +1 -0
- package/dist/src/core/utils/legacy/services/analytics/firstPartyEventLogger.js +1 -0
- package/dist/src/core/utils/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/utils/legacy/services/analytics/index.js +1 -0
- package/dist/src/core/utils/legacy/services/analytics/metadata.js +1 -0
- package/dist/src/core/utils/legacy/services/analytics/sink.js +1 -0
- package/dist/src/core/utils/legacy/services/api/claude.js +1 -0
- package/dist/src/core/utils/legacy/services/api/client.js +1 -0
- package/dist/src/core/utils/legacy/services/api/dumpPrompts.js +1 -0
- package/dist/src/core/utils/legacy/services/api/errorUtils.js +1 -0
- package/dist/src/core/utils/legacy/services/api/errors.js +1 -0
- package/dist/src/core/utils/legacy/services/api/logging.js +1 -0
- package/dist/src/core/utils/legacy/services/api/openai.js +1 -0
- package/dist/src/core/utils/legacy/services/api/withRetry.js +1 -0
- package/dist/src/core/utils/legacy/services/autoDream/autoDream.js +1 -0
- package/dist/src/core/utils/legacy/services/compact/autoCompact.js +1 -0
- package/dist/src/core/utils/legacy/services/compact/snipCompact.js +1 -0
- package/dist/src/core/utils/legacy/services/compact/snipProjection.js +1 -0
- package/dist/src/core/utils/legacy/services/contextCollapse/persist.js +1 -0
- package/dist/src/core/utils/legacy/services/diagnosticTracking.js +1 -0
- package/dist/src/core/utils/legacy/services/extractMemories/extractMemories.js +1 -0
- package/dist/src/core/utils/legacy/services/lsp/LSPDiagnosticRegistry.js +1 -0
- package/dist/src/core/utils/legacy/services/lsp/manager.js +1 -0
- package/dist/src/core/utils/legacy/services/lsp/types.js +1 -0
- package/dist/src/core/utils/legacy/services/mcp/client.js +1 -0
- package/dist/src/core/utils/legacy/services/mcp/envExpansion.js +1 -0
- package/dist/src/core/utils/legacy/services/mcp/mcpStringUtils.js +1 -0
- package/dist/src/core/utils/legacy/services/mcp/normalization.js +1 -0
- package/dist/src/core/utils/legacy/services/mcp/types.js +1 -0
- package/dist/src/core/utils/legacy/services/mcp/utils.js +1 -0
- package/dist/src/core/utils/legacy/services/oauth/types.js +1 -0
- package/dist/src/core/utils/legacy/services/plugins/PluginInstallationManager.js +1 -0
- package/dist/src/core/utils/legacy/services/plugins/pluginOperations.js +1 -0
- package/dist/src/core/utils/legacy/services/remoteManagedSettings/syncCache.js +1 -0
- package/dist/src/core/utils/legacy/services/sessionTranscript/sessionTranscript.js +1 -0
- package/dist/src/core/utils/legacy/services/skillSearch/featureCheck.js +1 -0
- package/dist/src/core/utils/legacy/services/skillSearch/prefetch.js +1 -0
- package/dist/src/core/utils/legacy/services/skillSearch/signals.js +1 -0
- package/dist/src/core/utils/legacy/services/teamMemorySync/watcher.js +1 -0
- package/dist/src/core/utils/legacy/services/tokenEstimation.js +1 -0
- package/dist/src/core/utils/legacy/services/tools/toolOrchestration.js +1 -0
- package/dist/src/core/utils/legacy/state/AppState.js +1 -0
- package/dist/src/core/utils/legacy/state/AppStateStore.js +1 -0
- package/dist/src/core/utils/legacy/state/selectors.js +1 -0
- package/dist/src/core/utils/legacy/tasks/InProcessTeammateTask/types.js +1 -0
- package/dist/src/core/utils/legacy/tasks/LocalAgentTask/LocalAgentTask.js +1 -0
- package/dist/src/core/utils/legacy/tasks/LocalShellTask/LocalShellTask.js +1 -0
- package/dist/src/core/utils/legacy/utils/format.js +1 -0
- package/dist/src/core/voice/cliAdapter.js +1 -0
- package/dist/src/core/voice/legacy/cliAdapter.impl.js +41 -0
- package/dist/src/core/voice/legacy/services/analytics/growthbook.js +1 -0
- package/dist/src/core/voice/legacy/services/analytics/growthbook.js.js +1 -0
- package/dist/src/core/voice/runtime.js +151 -0
- package/dist/src/core/voice/runtime.smoke.js +19 -0
- package/dist/src/core/wavecore3/bashCliAdapterDeps.js +59 -0
- package/dist/src/core/wavecore3/fileToolsCliAdapterDeps.js +47 -0
- package/dist/src/core/wavecore3/powerShellCliAdapterDeps.js +19 -0
- package/dist/src/core/wavecore3/terminalCliAdapterDeps.js +11 -0
- package/dist/src/core/whatsapp/legacy/utils/config.js +1 -0
- package/dist/src/core/whatsapp/legacy/utils/config.js.js +1 -0
- package/dist/src/core/whatsapp/legacy/utils/secureStorage/index.js +1 -0
- package/dist/src/core/whatsapp/legacy/utils/secureStorage/index.js.js +1 -0
- package/dist/src/core/workspace/cliAdapter.js +1 -0
- package/dist/src/core/workspace/legacy/cliAdapter.impl.js +6 -0
- package/dist/src/core/workspace/runtime.js +25 -0
- package/dist/src/core/workspace/runtime.smoke.js +13 -0
- package/dist/src/hooks/core/hooks/legacy/context/notifications.js +1 -0
- package/dist/src/hooks/core/hooks/legacy/services/analytics/index.js +1 -0
- package/dist/src/hooks/core/hooks/legacy/services/lsp/manager.js +1 -0
- package/dist/src/hooks/core/hooks/legacy/services/mcp/claudeai.js +1 -0
- package/dist/src/hooks/core/hooks/legacy/services/mcp/types.js +1 -0
- package/dist/src/hooks/usePasteHandler.js +5 -62
- package/dist/src/ink/reconciler.js +7 -7
- package/dist/src/main.js +5 -5
- package/dist/src/memdir/findRelevantMemories.js +6 -6
- package/dist/src/query.js +78 -0
- package/dist/src/screens/REPL.js +9 -0
- package/dist/src/services/AgentSummary/agentSummary.js +10 -10
- package/dist/src/services/MagicDocs/prompts.js +56 -56
- package/dist/src/services/PromptSuggestion/promptSuggestion.js +29 -29
- package/dist/src/services/SessionMemory/prompts.js +66 -66
- package/dist/src/services/autoDream/autoDream.js +5 -5
- package/dist/src/services/limits/sessionCounter.js +17 -17
- package/dist/src/services/objetivo/evaluator.js +129 -0
- package/dist/src/services/objetivo/prompts.js +21 -0
- package/dist/src/services/objetivo/types.js +25 -0
- package/dist/src/services/orchestration/execution/OrchestrationExecutionRuntime.js +58 -58
- package/dist/src/services/toolUseSummary/toolUseSummaryGenerator.js +9 -9
- package/dist/src/skills/bundled/batch.js +78 -78
- package/dist/src/skills/bundled/claudeApi.js +34 -34
- package/dist/src/skills/bundled/claudeInChrome.js +4 -4
- package/dist/src/skills/bundled/debug.js +36 -36
- package/dist/src/skills/bundled/scheduleRemoteAgents.js +151 -151
- package/dist/src/skills/bundled/skillify.js +134 -134
- package/dist/src/skills/bundled/updateConfig.js +418 -418
- package/dist/src/tasks/LocalAgentTask/LocalAgentTask.js +5 -5
- package/dist/src/tasks/LocalMainSessionTask.js +5 -5
- package/dist/src/tasks/LocalShellTask/LocalShellTask.js +13 -13
- package/dist/src/tasks/RemoteAgentTask/RemoteAgentTask.js +26 -26
- package/dist/src/tools/AgentTool/AgentTool.js +7 -7
- package/dist/src/tools/AgentTool/built-in/claudeCodeGuideAgent.js +67 -67
- package/dist/src/tools/AgentTool/forkSubagent.js +25 -25
- package/dist/src/tools/AgentTool/prompt.js +131 -131
- package/dist/src/tools/AgentTool/runAgent.js +9 -9
- package/dist/src/tools/BashTool/BashTool.js +10 -10
- package/dist/src/tools/BashTool/prompt.js +94 -94
- package/dist/src/tools/ConfigTool/prompt.js +29 -29
- package/dist/src/tools/EnterPlanModeTool/EnterPlanModeTool.js +12 -12
- package/dist/src/tools/EnterPlanModeTool/prompt.js +140 -140
- package/dist/src/tools/ExitPlanModeTool/ExitPlanModeV2Tool.js +18 -18
- package/dist/src/tools/FileEditTool/prompt.js +7 -7
- package/dist/src/tools/FileReadTool/prompt.js +12 -12
- package/dist/src/tools/PowerShellTool/prompt.js +82 -82
- package/dist/src/tools/ScheduleCronTool/prompt.js +37 -37
- package/dist/src/tools/SkillTool/prompt.js +21 -21
- package/dist/src/tools/TaskCreateTool/prompt.js +41 -41
- package/dist/src/tools/TaskListTool/prompt.js +30 -30
- package/dist/src/tools/TaskOutputTool/TaskOutputTool.js +8 -8
- package/dist/src/tools/ToolSearchTool/prompt.js +9 -9
- package/dist/src/tools/WebFetchTool/WebFetchTool.js +9 -9
- package/dist/src/utils/advisor.js +15 -15
- package/dist/src/utils/api.js +2 -2
- package/dist/src/utils/claudeInChrome/setup.js +8 -8
- package/dist/src/utils/computerControlMcp/common.js +24 -0
- package/dist/src/utils/computerControlMcp/mcpServer.js +22 -0
- package/dist/src/utils/computerControlMcp/setup.js +26 -0
- package/dist/src/utils/heapDumpService.js +4 -4
- package/dist/src/utils/hooks/execAgentHook.js +7 -7
- package/dist/src/utils/hooks/execPromptHook.js +4 -4
- package/dist/src/utils/hooks/skillImprovement.js +36 -36
- package/dist/src/utils/mcp/dateTimeParser.js +9 -9
- package/dist/src/utils/mcpValidation.js +2 -2
- package/dist/src/utils/messages.js +191 -191
- package/dist/src/utils/model/providerProfilesDb.js +489 -489
- package/dist/src/utils/ndjsonSafeStringify.js +10 -0
- package/dist/src/utils/permissions/permissionExplainer.js +6 -6
- package/dist/src/utils/secureStorage/sqliteStorage.js +12 -12
- package/dist/src/utils/sessionTitle.js +12 -12
- package/dist/src/utils/sideQuestion.js +17 -17
- package/dist/src/utils/swarm/backends/registry.js +9 -9
- package/dist/src/utils/task/framework.js +6 -6
- package/dist/src/utils/teleport.js +15 -15
- package/docs/Contex.md +20 -20
- package/docs/PHASE_3_VALIDATION.md +2 -2
- package/docs/PUBLISH.md +199 -0
- package/package.json +3 -5
|
@@ -26,12 +26,12 @@ function getSleepGuidance() {
|
|
|
26
26
|
isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_BACKGROUND_TASKS)) {
|
|
27
27
|
return null;
|
|
28
28
|
}
|
|
29
|
-
return ` - Avoid unnecessary \`Start-Sleep\` commands:
|
|
30
|
-
- Do not sleep between commands that can run immediately — just run them.
|
|
31
|
-
- If your command is long running and you would like to be notified when it finishes — simply run your command using \`run_in_background\`. There is no need to sleep in this case.
|
|
32
|
-
- Do not retry failing commands in a sleep loop — diagnose the root cause or consider an alternative approach.
|
|
33
|
-
- If waiting for a background task you started with \`run_in_background\`, you will be notified when it completes — do not poll.
|
|
34
|
-
- If you must poll an external process, use a check command rather than sleeping first.
|
|
29
|
+
return ` - Avoid unnecessary \`Start-Sleep\` commands:
|
|
30
|
+
- Do not sleep between commands that can run immediately — just run them.
|
|
31
|
+
- If your command is long running and you would like to be notified when it finishes — simply run your command using \`run_in_background\`. There is no need to sleep in this case.
|
|
32
|
+
- Do not retry failing commands in a sleep loop — diagnose the root cause or consider an alternative approach.
|
|
33
|
+
- If waiting for a background task you started with \`run_in_background\`, you will be notified when it completes — do not poll.
|
|
34
|
+
- If you must poll an external process, use a check command rather than sleeping first.
|
|
35
35
|
- If you must sleep, keep the duration short (1-5 seconds) to avoid blocking the user.`;
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
@@ -41,94 +41,94 @@ function getSleepGuidance() {
|
|
|
41
41
|
*/
|
|
42
42
|
function getEditionSection(edition) {
|
|
43
43
|
if (edition === 'desktop') {
|
|
44
|
-
return `PowerShell edition: Windows PowerShell 5.1 (powershell.exe)
|
|
45
|
-
- Pipeline chain operators \`&&\` and \`||\` are NOT available — they cause a parser error. To run B only if A succeeds: \`A; if ($?) { B }\`. To chain unconditionally: \`A; B\`.
|
|
46
|
-
- Ternary (\`?:\`), null-coalescing (\`??\`), and null-conditional (\`?.\`) operators are NOT available. Use \`if/else\` and explicit \`$null -eq\` checks instead.
|
|
47
|
-
- Avoid \`2>&1\` on native executables. In 5.1, redirecting a native command's stderr inside PowerShell wraps each line in an ErrorRecord (NativeCommandError) and sets \`$?\` to \`$false\` even when the exe returned exit code 0. stderr is already captured for you — don't redirect it.
|
|
48
|
-
- Default file encoding is UTF-16 LE (with BOM). When writing files other tools will read, pass \`-Encoding utf8\` to \`Out-File\`/\`Set-Content\`.
|
|
44
|
+
return `PowerShell edition: Windows PowerShell 5.1 (powershell.exe)
|
|
45
|
+
- Pipeline chain operators \`&&\` and \`||\` are NOT available — they cause a parser error. To run B only if A succeeds: \`A; if ($?) { B }\`. To chain unconditionally: \`A; B\`.
|
|
46
|
+
- Ternary (\`?:\`), null-coalescing (\`??\`), and null-conditional (\`?.\`) operators are NOT available. Use \`if/else\` and explicit \`$null -eq\` checks instead.
|
|
47
|
+
- Avoid \`2>&1\` on native executables. In 5.1, redirecting a native command's stderr inside PowerShell wraps each line in an ErrorRecord (NativeCommandError) and sets \`$?\` to \`$false\` even when the exe returned exit code 0. stderr is already captured for you — don't redirect it.
|
|
48
|
+
- Default file encoding is UTF-16 LE (with BOM). When writing files other tools will read, pass \`-Encoding utf8\` to \`Out-File\`/\`Set-Content\`.
|
|
49
49
|
- \`ConvertFrom-Json\` returns a PSCustomObject, not a hashtable. \`-AsHashtable\` is not available.`;
|
|
50
50
|
}
|
|
51
51
|
if (edition === 'core') {
|
|
52
|
-
return `PowerShell edition: PowerShell 7+ (pwsh)
|
|
53
|
-
- Pipeline chain operators \`&&\` and \`||\` ARE available and work like bash. Prefer \`cmd1 && cmd2\` over \`cmd1; cmd2\` when cmd2 should only run if cmd1 succeeds.
|
|
54
|
-
- Ternary (\`$cond ? $a : $b\`), null-coalescing (\`??\`), and null-conditional (\`?.\`) operators are available.
|
|
52
|
+
return `PowerShell edition: PowerShell 7+ (pwsh)
|
|
53
|
+
- Pipeline chain operators \`&&\` and \`||\` ARE available and work like bash. Prefer \`cmd1 && cmd2\` over \`cmd1; cmd2\` when cmd2 should only run if cmd1 succeeds.
|
|
54
|
+
- Ternary (\`$cond ? $a : $b\`), null-coalescing (\`??\`), and null-conditional (\`?.\`) operators are available.
|
|
55
55
|
- Default file encoding is UTF-8 without BOM.`;
|
|
56
56
|
}
|
|
57
57
|
// Detection not yet resolved (first prompt build before any tool call) or
|
|
58
58
|
// PS not installed. Give the conservative 5.1-safe guidance.
|
|
59
|
-
return `PowerShell edition: unknown — assume Windows PowerShell 5.1 for compatibility
|
|
60
|
-
- Do NOT use \`&&\`, \`||\`, ternary \`?:\`, null-coalescing \`??\`, or null-conditional \`?.\`. These are PowerShell 7+ only and parser-error on 5.1.
|
|
59
|
+
return `PowerShell edition: unknown — assume Windows PowerShell 5.1 for compatibility
|
|
60
|
+
- Do NOT use \`&&\`, \`||\`, ternary \`?:\`, null-coalescing \`??\`, or null-conditional \`?.\`. These are PowerShell 7+ only and parser-error on 5.1.
|
|
61
61
|
- To chain commands conditionally: \`A; if ($?) { B }\`. Unconditionally: \`A; B\`.`;
|
|
62
62
|
}
|
|
63
63
|
export async function getPrompt() {
|
|
64
64
|
const backgroundNote = getBackgroundUsageNote();
|
|
65
65
|
const sleepGuidance = getSleepGuidance();
|
|
66
66
|
const edition = await getPowerShellEdition();
|
|
67
|
-
return `Executes a given PowerShell command with optional timeout. Working directory persists between commands; shell state (variables, functions) does not.
|
|
68
|
-
|
|
69
|
-
IMPORTANT: This tool is for terminal operations via PowerShell: git, npm, docker, and PS cmdlets. DO NOT use it for file operations (reading, writing, editing, searching, finding files) - use the specialized tools for this instead.
|
|
70
|
-
|
|
71
|
-
${getEditionSection(edition)}
|
|
72
|
-
|
|
73
|
-
Before executing the command, please follow these steps:
|
|
74
|
-
|
|
75
|
-
1. Directory Verification:
|
|
76
|
-
- If the command will create new directories or files, first use \`Get-ChildItem\` (or \`ls\`) to verify the parent directory exists and is the correct location
|
|
77
|
-
|
|
78
|
-
2. Command Execution:
|
|
79
|
-
- Always quote file paths that contain spaces with double quotes
|
|
80
|
-
- Capture the output of the command.
|
|
81
|
-
|
|
82
|
-
PowerShell Syntax Notes:
|
|
83
|
-
- Variables use $ prefix: $myVar = "value"
|
|
84
|
-
- Escape character is backtick (\`), not backslash
|
|
85
|
-
- Use Verb-Noun cmdlet naming: Get-ChildItem, Set-Location, New-Item, Remove-Item
|
|
86
|
-
- Common aliases: ls (Get-ChildItem), cd (Set-Location), cat (Get-Content), rm (Remove-Item)
|
|
87
|
-
- Pipe operator | works similarly to bash but passes objects, not text
|
|
88
|
-
- Use Select-Object, Where-Object, ForEach-Object for filtering and transformation
|
|
89
|
-
- String interpolation: "Hello $name" or "Hello $($obj.Property)"
|
|
90
|
-
- Registry access uses PSDrive prefixes: \`HKLM:\\SOFTWARE\\...\`, \`HKCU:\\...\` — NOT raw \`HKEY_LOCAL_MACHINE\\...\`
|
|
91
|
-
- Environment variables: read with \`$env:NAME\`, set with \`$env:NAME = "value"\` (NOT \`Set-Variable\` or bash \`export\`)
|
|
92
|
-
- Call native exe with spaces in path via call operator: \`& "C:\\Program Files\\App\\app.exe" arg1 arg2\`
|
|
93
|
-
|
|
94
|
-
Interactive and blocking commands (will hang — this tool runs with -NonInteractive):
|
|
95
|
-
- NEVER use \`Read-Host\`, \`Get-Credential\`, \`Out-GridView\`, \`$Host.UI.PromptForChoice\`, or \`pause\`
|
|
96
|
-
- Destructive cmdlets (\`Remove-Item\`, \`Stop-Process\`, \`Clear-Content\`, etc.) may prompt for confirmation. Add \`-Confirm:$false\` when you intend the action to proceed. Use \`-Force\` for read-only/hidden items.
|
|
97
|
-
- Never use \`git rebase -i\`, \`git add -i\`, or other commands that open an interactive editor
|
|
98
|
-
|
|
99
|
-
Passing multiline strings (commit messages, file content) to native executables:
|
|
100
|
-
- Use a single-quoted here-string so PowerShell does not expand \`$\` or backticks inside. The closing \`'@\` MUST be at column 0 (no leading whitespace) on its own line — indenting it is a parse error:
|
|
101
|
-
<example>
|
|
102
|
-
git commit -m @'
|
|
103
|
-
Commit message here.
|
|
104
|
-
Second line with $literal dollar signs.
|
|
105
|
-
'@
|
|
106
|
-
</example>
|
|
107
|
-
- Use \`@'...'@\` (single-quoted, literal) not \`@"..."@\` (double-quoted, interpolated) unless you need variable expansion
|
|
108
|
-
- For arguments containing \`-\`, \`@\`, or other characters PowerShell parses as operators, use the stop-parsing token: \`git log --% --format=%H\`
|
|
109
|
-
|
|
110
|
-
Usage notes:
|
|
111
|
-
- The command argument is required.
|
|
112
|
-
- You can specify an optional timeout in milliseconds (up to ${getMaxTimeoutMs()}ms / ${getMaxTimeoutMs() / 60000} minutes). If not specified, commands will timeout after ${getDefaultTimeoutMs()}ms (${getDefaultTimeoutMs() / 60000} minutes).
|
|
113
|
-
- It is very helpful if you write a clear, concise description of what this command does.
|
|
114
|
-
- If the output exceeds ${getMaxOutputLength()} characters, output will be truncated before being returned to you.
|
|
115
|
-
${backgroundNote ? backgroundNote + '\n' : ''}\
|
|
116
|
-
- Avoid using PowerShell to run commands that have dedicated tools, unless explicitly instructed:
|
|
117
|
-
- File search: Use ${GLOB_TOOL_NAME} (NOT Get-ChildItem -Recurse)
|
|
118
|
-
- Content search: Use ${GREP_TOOL_NAME} (NOT Select-String)
|
|
119
|
-
- Read files: Use ${FILE_READ_TOOL_NAME} (NOT Get-Content)
|
|
120
|
-
- Edit files: Use ${FILE_EDIT_TOOL_NAME}
|
|
121
|
-
- Write files: Use ${FILE_WRITE_TOOL_NAME} (NOT Set-Content/Out-File)
|
|
122
|
-
- Communication: Output text directly (NOT Write-Output/Write-Host)
|
|
123
|
-
- When issuing multiple commands:
|
|
124
|
-
- If the commands are independent and can run in parallel, make multiple ${POWERSHELL_TOOL_NAME} tool calls in a single message.
|
|
125
|
-
- If the commands depend on each other and must run sequentially, chain them in a single ${POWERSHELL_TOOL_NAME} call (see edition-specific chaining syntax above).
|
|
126
|
-
- Use \`;\` only when you need to run commands sequentially but don't care if earlier commands fail.
|
|
127
|
-
- DO NOT use newlines to separate commands (newlines are ok in quoted strings and here-strings)
|
|
128
|
-
- Do NOT prefix commands with \`cd\` or \`Set-Location\` -- the working directory is already set to the correct project directory automatically.
|
|
129
|
-
${sleepGuidance ? sleepGuidance + '\n' : ''}\
|
|
130
|
-
- For git commands:
|
|
131
|
-
- Prefer to create a new commit rather than amending an existing commit.
|
|
132
|
-
- Before running destructive operations (e.g., git reset --hard, git push --force, git checkout --), consider whether there is a safer alternative that achieves the same goal. Only use destructive operations when they are truly the best approach.
|
|
67
|
+
return `Executes a given PowerShell command with optional timeout. Working directory persists between commands; shell state (variables, functions) does not.
|
|
68
|
+
|
|
69
|
+
IMPORTANT: This tool is for terminal operations via PowerShell: git, npm, docker, and PS cmdlets. DO NOT use it for file operations (reading, writing, editing, searching, finding files) - use the specialized tools for this instead.
|
|
70
|
+
|
|
71
|
+
${getEditionSection(edition)}
|
|
72
|
+
|
|
73
|
+
Before executing the command, please follow these steps:
|
|
74
|
+
|
|
75
|
+
1. Directory Verification:
|
|
76
|
+
- If the command will create new directories or files, first use \`Get-ChildItem\` (or \`ls\`) to verify the parent directory exists and is the correct location
|
|
77
|
+
|
|
78
|
+
2. Command Execution:
|
|
79
|
+
- Always quote file paths that contain spaces with double quotes
|
|
80
|
+
- Capture the output of the command.
|
|
81
|
+
|
|
82
|
+
PowerShell Syntax Notes:
|
|
83
|
+
- Variables use $ prefix: $myVar = "value"
|
|
84
|
+
- Escape character is backtick (\`), not backslash
|
|
85
|
+
- Use Verb-Noun cmdlet naming: Get-ChildItem, Set-Location, New-Item, Remove-Item
|
|
86
|
+
- Common aliases: ls (Get-ChildItem), cd (Set-Location), cat (Get-Content), rm (Remove-Item)
|
|
87
|
+
- Pipe operator | works similarly to bash but passes objects, not text
|
|
88
|
+
- Use Select-Object, Where-Object, ForEach-Object for filtering and transformation
|
|
89
|
+
- String interpolation: "Hello $name" or "Hello $($obj.Property)"
|
|
90
|
+
- Registry access uses PSDrive prefixes: \`HKLM:\\SOFTWARE\\...\`, \`HKCU:\\...\` — NOT raw \`HKEY_LOCAL_MACHINE\\...\`
|
|
91
|
+
- Environment variables: read with \`$env:NAME\`, set with \`$env:NAME = "value"\` (NOT \`Set-Variable\` or bash \`export\`)
|
|
92
|
+
- Call native exe with spaces in path via call operator: \`& "C:\\Program Files\\App\\app.exe" arg1 arg2\`
|
|
93
|
+
|
|
94
|
+
Interactive and blocking commands (will hang — this tool runs with -NonInteractive):
|
|
95
|
+
- NEVER use \`Read-Host\`, \`Get-Credential\`, \`Out-GridView\`, \`$Host.UI.PromptForChoice\`, or \`pause\`
|
|
96
|
+
- Destructive cmdlets (\`Remove-Item\`, \`Stop-Process\`, \`Clear-Content\`, etc.) may prompt for confirmation. Add \`-Confirm:$false\` when you intend the action to proceed. Use \`-Force\` for read-only/hidden items.
|
|
97
|
+
- Never use \`git rebase -i\`, \`git add -i\`, or other commands that open an interactive editor
|
|
98
|
+
|
|
99
|
+
Passing multiline strings (commit messages, file content) to native executables:
|
|
100
|
+
- Use a single-quoted here-string so PowerShell does not expand \`$\` or backticks inside. The closing \`'@\` MUST be at column 0 (no leading whitespace) on its own line — indenting it is a parse error:
|
|
101
|
+
<example>
|
|
102
|
+
git commit -m @'
|
|
103
|
+
Commit message here.
|
|
104
|
+
Second line with $literal dollar signs.
|
|
105
|
+
'@
|
|
106
|
+
</example>
|
|
107
|
+
- Use \`@'...'@\` (single-quoted, literal) not \`@"..."@\` (double-quoted, interpolated) unless you need variable expansion
|
|
108
|
+
- For arguments containing \`-\`, \`@\`, or other characters PowerShell parses as operators, use the stop-parsing token: \`git log --% --format=%H\`
|
|
109
|
+
|
|
110
|
+
Usage notes:
|
|
111
|
+
- The command argument is required.
|
|
112
|
+
- You can specify an optional timeout in milliseconds (up to ${getMaxTimeoutMs()}ms / ${getMaxTimeoutMs() / 60000} minutes). If not specified, commands will timeout after ${getDefaultTimeoutMs()}ms (${getDefaultTimeoutMs() / 60000} minutes).
|
|
113
|
+
- It is very helpful if you write a clear, concise description of what this command does.
|
|
114
|
+
- If the output exceeds ${getMaxOutputLength()} characters, output will be truncated before being returned to you.
|
|
115
|
+
${backgroundNote ? backgroundNote + '\n' : ''}\
|
|
116
|
+
- Avoid using PowerShell to run commands that have dedicated tools, unless explicitly instructed:
|
|
117
|
+
- File search: Use ${GLOB_TOOL_NAME} (NOT Get-ChildItem -Recurse)
|
|
118
|
+
- Content search: Use ${GREP_TOOL_NAME} (NOT Select-String)
|
|
119
|
+
- Read files: Use ${FILE_READ_TOOL_NAME} (NOT Get-Content)
|
|
120
|
+
- Edit files: Use ${FILE_EDIT_TOOL_NAME}
|
|
121
|
+
- Write files: Use ${FILE_WRITE_TOOL_NAME} (NOT Set-Content/Out-File)
|
|
122
|
+
- Communication: Output text directly (NOT Write-Output/Write-Host)
|
|
123
|
+
- When issuing multiple commands:
|
|
124
|
+
- If the commands are independent and can run in parallel, make multiple ${POWERSHELL_TOOL_NAME} tool calls in a single message.
|
|
125
|
+
- If the commands depend on each other and must run sequentially, chain them in a single ${POWERSHELL_TOOL_NAME} call (see edition-specific chaining syntax above).
|
|
126
|
+
- Use \`;\` only when you need to run commands sequentially but don't care if earlier commands fail.
|
|
127
|
+
- DO NOT use newlines to separate commands (newlines are ok in quoted strings and here-strings)
|
|
128
|
+
- Do NOT prefix commands with \`cd\` or \`Set-Location\` -- the working directory is already set to the correct project directory automatically.
|
|
129
|
+
${sleepGuidance ? sleepGuidance + '\n' : ''}\
|
|
130
|
+
- For git commands:
|
|
131
|
+
- Prefer to create a new commit rather than amending an existing commit.
|
|
132
|
+
- Before running destructive operations (e.g., git reset --hard, git push --force, git checkout --), consider whether there is a safer alternative that achieves the same goal. Only use destructive operations when they are truly the best approach.
|
|
133
133
|
- Never skip hooks (--no-verify) or bypass signing (--no-gpg-sign, -c commit.gpgsign=false) unless the user has explicitly asked for it. If a hook fails, investigate and fix the underlying issue.`;
|
|
134
134
|
}
|
|
@@ -57,48 +57,48 @@ export function buildCronCreateDescription(durableEnabled) {
|
|
|
57
57
|
}
|
|
58
58
|
export function buildCronCreatePrompt(durableEnabled) {
|
|
59
59
|
const durabilitySection = durableEnabled
|
|
60
|
-
? `## Durability
|
|
61
|
-
|
|
60
|
+
? `## Durability
|
|
61
|
+
|
|
62
62
|
By default (durable: false) the job lives only in this Claude session — nothing is written to disk, and the job is gone when Claude exits. Pass durable: true to write to .claude/scheduled_tasks.json so the job survives restarts. Only use durable: true when the user explicitly asks for the task to persist ("keep doing this every day", "set this up permanently"). Most "remind me in 5 minutes" / "check back in an hour" requests should stay session-only.`
|
|
63
|
-
: `## Session-only
|
|
64
|
-
|
|
63
|
+
: `## Session-only
|
|
64
|
+
|
|
65
65
|
Jobs live only in this Claude session — nothing is written to disk, and the job is gone when Claude exits.`;
|
|
66
66
|
const durableRuntimeNote = durableEnabled
|
|
67
67
|
? 'Durable jobs persist to .claude/scheduled_tasks.json and survive session restarts — on next launch they resume automatically. One-shot durable tasks that were missed while the REPL was closed are surfaced for catch-up. Session-only jobs die with the process. '
|
|
68
68
|
: '';
|
|
69
|
-
return `Schedule a prompt to be enqueued at a future time. Use for both recurring schedules and one-shot reminders.
|
|
70
|
-
|
|
71
|
-
Uses standard 5-field cron in the user's local timezone: minute hour day-of-month month day-of-week. "0 9 * * *" means 9am local — no timezone conversion needed.
|
|
72
|
-
|
|
73
|
-
## One-shot tasks (recurring: false)
|
|
74
|
-
|
|
75
|
-
For "remind me at X" or "at <time>, do Y" requests — fire once then auto-delete.
|
|
76
|
-
Pin minute/hour/day-of-month/month to specific values:
|
|
77
|
-
"remind me at 2:30pm today to check the deploy" → cron: "30 14 <today_dom> <today_month> *", recurring: false
|
|
78
|
-
"tomorrow morning, run the smoke test" → cron: "57 8 <tomorrow_dom> <tomorrow_month> *", recurring: false
|
|
79
|
-
|
|
80
|
-
## Recurring jobs (recurring: true, the default)
|
|
81
|
-
|
|
82
|
-
For "every N minutes" / "every hour" / "weekdays at 9am" requests:
|
|
83
|
-
"*/5 * * * *" (every 5 min), "0 * * * *" (hourly), "0 9 * * 1-5" (weekdays at 9am local)
|
|
84
|
-
|
|
85
|
-
## Avoid the :00 and :30 minute marks when the task allows it
|
|
86
|
-
|
|
87
|
-
Every user who asks for "9am" gets \`0 9\`, and every user who asks for "hourly" gets \`0 *\` — which means requests from across the planet land on the API at the same instant. When the user's request is approximate, pick a minute that is NOT 0 or 30:
|
|
88
|
-
"every morning around 9" → "57 8 * * *" or "3 9 * * *" (not "0 9 * * *")
|
|
89
|
-
"hourly" → "7 * * * *" (not "0 * * * *")
|
|
90
|
-
"in an hour or so, remind me to..." → pick whatever minute you land on, don't round
|
|
91
|
-
|
|
92
|
-
Only use minute 0 or 30 when the user names that exact time and clearly means it ("at 9:00 sharp", "at half past", coordinating with a meeting). When in doubt, nudge a few minutes early or late — the user will not notice, and the fleet will.
|
|
93
|
-
|
|
94
|
-
${durabilitySection}
|
|
95
|
-
|
|
96
|
-
## Runtime behavior
|
|
97
|
-
|
|
98
|
-
Jobs only fire while the REPL is idle (not mid-query). ${durableRuntimeNote}The scheduler adds a small deterministic jitter on top of whatever you pick: recurring tasks fire up to 10% of their period late (max 15 min); one-shot tasks landing on :00 or :30 fire up to 90 s early. Picking an off-minute is still the bigger lever.
|
|
99
|
-
|
|
100
|
-
Recurring tasks auto-expire after ${DEFAULT_MAX_AGE_DAYS} days — they fire one final time, then are deleted. This bounds session lifetime. Tell the user about the ${DEFAULT_MAX_AGE_DAYS}-day limit when scheduling recurring jobs.
|
|
101
|
-
|
|
69
|
+
return `Schedule a prompt to be enqueued at a future time. Use for both recurring schedules and one-shot reminders.
|
|
70
|
+
|
|
71
|
+
Uses standard 5-field cron in the user's local timezone: minute hour day-of-month month day-of-week. "0 9 * * *" means 9am local — no timezone conversion needed.
|
|
72
|
+
|
|
73
|
+
## One-shot tasks (recurring: false)
|
|
74
|
+
|
|
75
|
+
For "remind me at X" or "at <time>, do Y" requests — fire once then auto-delete.
|
|
76
|
+
Pin minute/hour/day-of-month/month to specific values:
|
|
77
|
+
"remind me at 2:30pm today to check the deploy" → cron: "30 14 <today_dom> <today_month> *", recurring: false
|
|
78
|
+
"tomorrow morning, run the smoke test" → cron: "57 8 <tomorrow_dom> <tomorrow_month> *", recurring: false
|
|
79
|
+
|
|
80
|
+
## Recurring jobs (recurring: true, the default)
|
|
81
|
+
|
|
82
|
+
For "every N minutes" / "every hour" / "weekdays at 9am" requests:
|
|
83
|
+
"*/5 * * * *" (every 5 min), "0 * * * *" (hourly), "0 9 * * 1-5" (weekdays at 9am local)
|
|
84
|
+
|
|
85
|
+
## Avoid the :00 and :30 minute marks when the task allows it
|
|
86
|
+
|
|
87
|
+
Every user who asks for "9am" gets \`0 9\`, and every user who asks for "hourly" gets \`0 *\` — which means requests from across the planet land on the API at the same instant. When the user's request is approximate, pick a minute that is NOT 0 or 30:
|
|
88
|
+
"every morning around 9" → "57 8 * * *" or "3 9 * * *" (not "0 9 * * *")
|
|
89
|
+
"hourly" → "7 * * * *" (not "0 * * * *")
|
|
90
|
+
"in an hour or so, remind me to..." → pick whatever minute you land on, don't round
|
|
91
|
+
|
|
92
|
+
Only use minute 0 or 30 when the user names that exact time and clearly means it ("at 9:00 sharp", "at half past", coordinating with a meeting). When in doubt, nudge a few minutes early or late — the user will not notice, and the fleet will.
|
|
93
|
+
|
|
94
|
+
${durabilitySection}
|
|
95
|
+
|
|
96
|
+
## Runtime behavior
|
|
97
|
+
|
|
98
|
+
Jobs only fire while the REPL is idle (not mid-query). ${durableRuntimeNote}The scheduler adds a small deterministic jitter on top of whatever you pick: recurring tasks fire up to 10% of their period late (max 15 min); one-shot tasks landing on :00 or :30 fire up to 90 s early. Picking an off-minute is still the bigger lever.
|
|
99
|
+
|
|
100
|
+
Recurring tasks auto-expire after ${DEFAULT_MAX_AGE_DAYS} days — they fire one final time, then are deleted. This bounds session lifetime. Tell the user about the ${DEFAULT_MAX_AGE_DAYS}-day limit when scheduling recurring jobs.
|
|
101
|
+
|
|
102
102
|
Returns a job ID you can pass to ${CRON_DELETE_TOOL_NAME}.`;
|
|
103
103
|
}
|
|
104
104
|
export const CRON_DELETE_DESCRIPTION = 'Cancel a scheduled cron job by ID';
|
|
@@ -126,27 +126,27 @@ export function formatCommandsWithinBudget(commands, contextWindowTokens) {
|
|
|
126
126
|
.join('\n');
|
|
127
127
|
}
|
|
128
128
|
export const getPrompt = memoize(async (_cwd) => {
|
|
129
|
-
return `Execute a skill within the main conversation
|
|
130
|
-
|
|
131
|
-
When users ask you to perform tasks, check if any of the available skills match. Skills provide specialized capabilities and domain knowledge.
|
|
132
|
-
|
|
133
|
-
When users reference a "slash command" or "/<something>" (e.g., "/commit", "/review-pr"), they are referring to a skill. Use this tool to invoke it.
|
|
134
|
-
|
|
135
|
-
How to invoke:
|
|
136
|
-
- Use this tool with the skill name and optional arguments
|
|
137
|
-
- Examples:
|
|
138
|
-
- \`skill: "pdf"\` - invoke the pdf skill
|
|
139
|
-
- \`skill: "commit", args: "-m 'Fix bug'"\` - invoke with arguments
|
|
140
|
-
- \`skill: "review-pr", args: "123"\` - invoke with arguments
|
|
141
|
-
- \`skill: "ms-office-suite:pdf"\` - invoke using fully qualified name
|
|
142
|
-
|
|
143
|
-
Important:
|
|
144
|
-
- Available skills are listed in system-reminder messages in the conversation
|
|
145
|
-
- When a skill matches the user's request, this is a BLOCKING REQUIREMENT: invoke the relevant Skill tool BEFORE generating any other response about the task
|
|
146
|
-
- NEVER mention a skill without actually calling this tool
|
|
147
|
-
- Do not invoke a skill that is already running
|
|
148
|
-
- Do not use this tool for built-in CLI commands (like /help, /clear, etc.)
|
|
149
|
-
- If you see a <${COMMAND_NAME_TAG}> tag in the current conversation turn, the skill has ALREADY been loaded - follow the instructions directly instead of calling this tool again
|
|
129
|
+
return `Execute a skill within the main conversation
|
|
130
|
+
|
|
131
|
+
When users ask you to perform tasks, check if any of the available skills match. Skills provide specialized capabilities and domain knowledge.
|
|
132
|
+
|
|
133
|
+
When users reference a "slash command" or "/<something>" (e.g., "/commit", "/review-pr"), they are referring to a skill. Use this tool to invoke it.
|
|
134
|
+
|
|
135
|
+
How to invoke:
|
|
136
|
+
- Use this tool with the skill name and optional arguments
|
|
137
|
+
- Examples:
|
|
138
|
+
- \`skill: "pdf"\` - invoke the pdf skill
|
|
139
|
+
- \`skill: "commit", args: "-m 'Fix bug'"\` - invoke with arguments
|
|
140
|
+
- \`skill: "review-pr", args: "123"\` - invoke with arguments
|
|
141
|
+
- \`skill: "ms-office-suite:pdf"\` - invoke using fully qualified name
|
|
142
|
+
|
|
143
|
+
Important:
|
|
144
|
+
- Available skills are listed in system-reminder messages in the conversation
|
|
145
|
+
- When a skill matches the user's request, this is a BLOCKING REQUIREMENT: invoke the relevant Skill tool BEFORE generating any other response about the task
|
|
146
|
+
- NEVER mention a skill without actually calling this tool
|
|
147
|
+
- Do not invoke a skill that is already running
|
|
148
|
+
- Do not use this tool for built-in CLI commands (like /help, /clear, etc.)
|
|
149
|
+
- If you see a <${COMMAND_NAME_TAG}> tag in the current conversation turn, the skill has ALREADY been loaded - follow the instructions directly instead of calling this tool again
|
|
150
150
|
`;
|
|
151
151
|
});
|
|
152
152
|
export async function getSkillToolInfo(cwd) {
|
|
@@ -5,48 +5,48 @@ export function getPrompt() {
|
|
|
5
5
|
? ' and potentially assigned to teammates'
|
|
6
6
|
: '';
|
|
7
7
|
const teammateTips = isAgentSwarmsEnabled()
|
|
8
|
-
? `- Include enough detail in the description for another agent to understand and complete the task
|
|
9
|
-
- New tasks are created with status 'pending' and no owner - use TaskUpdate with the \`owner\` parameter to assign them
|
|
8
|
+
? `- Include enough detail in the description for another agent to understand and complete the task
|
|
9
|
+
- New tasks are created with status 'pending' and no owner - use TaskUpdate with the \`owner\` parameter to assign them
|
|
10
10
|
`
|
|
11
11
|
: '';
|
|
12
|
-
return `Use this tool to create a structured task list for your current coding session. This helps you track progress, organize complex tasks, and demonstrate thoroughness to the user.
|
|
13
|
-
It also helps the user understand the progress of the task and overall progress of their requests.
|
|
14
|
-
|
|
15
|
-
## When to Use This Tool
|
|
16
|
-
|
|
17
|
-
Use this tool proactively in these scenarios:
|
|
18
|
-
|
|
19
|
-
- Complex multi-step tasks - When a task requires 3 or more distinct steps or actions
|
|
20
|
-
- Non-trivial and complex tasks - Tasks that require careful planning or multiple operations${teammateContext}
|
|
21
|
-
- Plan mode - When using plan mode, create a task list to track the work
|
|
22
|
-
- User explicitly requests todo list - When the user directly asks you to use the todo list
|
|
23
|
-
- User provides multiple tasks - When users provide a list of things to be done (numbered or comma-separated)
|
|
24
|
-
- After receiving new instructions - Immediately capture user requirements as tasks
|
|
25
|
-
- When you start working on a task - Mark it as in_progress BEFORE beginning work
|
|
26
|
-
- After completing a task - Mark it as completed and add any new follow-up tasks discovered during implementation
|
|
27
|
-
|
|
28
|
-
## When NOT to Use This Tool
|
|
29
|
-
|
|
30
|
-
Skip using this tool when:
|
|
31
|
-
- There is only a single, straightforward task
|
|
32
|
-
- The task is trivial and tracking it provides no organizational benefit
|
|
33
|
-
- The task can be completed in less than 3 trivial steps
|
|
34
|
-
- The task is purely conversational or informational
|
|
35
|
-
|
|
36
|
-
NOTE that you should not use this tool if there is only one trivial task to do. In this case you are better off just doing the task directly.
|
|
37
|
-
|
|
38
|
-
## Task Fields
|
|
39
|
-
|
|
40
|
-
- **subject**: A brief, actionable title in imperative form (e.g., "Fix authentication bug in login flow")
|
|
41
|
-
- **description**: What needs to be done
|
|
42
|
-
- **activeForm** (optional): Present continuous form shown in the spinner when the task is in_progress (e.g., "Fixing authentication bug"). If omitted, the spinner shows the subject instead.
|
|
43
|
-
|
|
44
|
-
All tasks are created with status \`pending\`.
|
|
45
|
-
|
|
46
|
-
## Tips
|
|
47
|
-
|
|
48
|
-
- Create tasks with clear, specific subjects that describe the outcome
|
|
49
|
-
- After creating tasks, use TaskUpdate to set up dependencies (blocks/blockedBy) if needed
|
|
50
|
-
${teammateTips}- Check TaskList first to avoid creating duplicate tasks
|
|
12
|
+
return `Use this tool to create a structured task list for your current coding session. This helps you track progress, organize complex tasks, and demonstrate thoroughness to the user.
|
|
13
|
+
It also helps the user understand the progress of the task and overall progress of their requests.
|
|
14
|
+
|
|
15
|
+
## When to Use This Tool
|
|
16
|
+
|
|
17
|
+
Use this tool proactively in these scenarios:
|
|
18
|
+
|
|
19
|
+
- Complex multi-step tasks - When a task requires 3 or more distinct steps or actions
|
|
20
|
+
- Non-trivial and complex tasks - Tasks that require careful planning or multiple operations${teammateContext}
|
|
21
|
+
- Plan mode - When using plan mode, create a task list to track the work
|
|
22
|
+
- User explicitly requests todo list - When the user directly asks you to use the todo list
|
|
23
|
+
- User provides multiple tasks - When users provide a list of things to be done (numbered or comma-separated)
|
|
24
|
+
- After receiving new instructions - Immediately capture user requirements as tasks
|
|
25
|
+
- When you start working on a task - Mark it as in_progress BEFORE beginning work
|
|
26
|
+
- After completing a task - Mark it as completed and add any new follow-up tasks discovered during implementation
|
|
27
|
+
|
|
28
|
+
## When NOT to Use This Tool
|
|
29
|
+
|
|
30
|
+
Skip using this tool when:
|
|
31
|
+
- There is only a single, straightforward task
|
|
32
|
+
- The task is trivial and tracking it provides no organizational benefit
|
|
33
|
+
- The task can be completed in less than 3 trivial steps
|
|
34
|
+
- The task is purely conversational or informational
|
|
35
|
+
|
|
36
|
+
NOTE that you should not use this tool if there is only one trivial task to do. In this case you are better off just doing the task directly.
|
|
37
|
+
|
|
38
|
+
## Task Fields
|
|
39
|
+
|
|
40
|
+
- **subject**: A brief, actionable title in imperative form (e.g., "Fix authentication bug in login flow")
|
|
41
|
+
- **description**: What needs to be done
|
|
42
|
+
- **activeForm** (optional): Present continuous form shown in the spinner when the task is in_progress (e.g., "Fixing authentication bug"). If omitted, the spinner shows the subject instead.
|
|
43
|
+
|
|
44
|
+
All tasks are created with status \`pending\`.
|
|
45
|
+
|
|
46
|
+
## Tips
|
|
47
|
+
|
|
48
|
+
- Create tasks with clear, specific subjects that describe the outcome
|
|
49
|
+
- After creating tasks, use TaskUpdate to set up dependencies (blocks/blockedBy) if needed
|
|
50
|
+
${teammateTips}- Check TaskList first to avoid creating duplicate tasks
|
|
51
51
|
`;
|
|
52
52
|
}
|
|
@@ -2,43 +2,43 @@ import { isAgentSwarmsEnabled } from '../../utils/agentSwarmsEnabled.js';
|
|
|
2
2
|
export const DESCRIPTION = 'List all tasks in the task list';
|
|
3
3
|
export function getPrompt() {
|
|
4
4
|
const teammateUseCase = isAgentSwarmsEnabled()
|
|
5
|
-
? `- Before assigning tasks to teammates, to see what's available
|
|
5
|
+
? `- Before assigning tasks to teammates, to see what's available
|
|
6
6
|
`
|
|
7
7
|
: '';
|
|
8
8
|
const idDescription = isAgentSwarmsEnabled()
|
|
9
9
|
? '- **id**: Task identifier (use with TaskGet, TaskUpdate)'
|
|
10
10
|
: '- **id**: Task identifier (use with TaskGet, TaskUpdate)';
|
|
11
11
|
const teammateWorkflow = isAgentSwarmsEnabled()
|
|
12
|
-
? `
|
|
13
|
-
## Teammate Workflow
|
|
14
|
-
|
|
15
|
-
When working as a teammate:
|
|
16
|
-
1. After completing your current task, call TaskList to find available work
|
|
17
|
-
2. Look for tasks with status 'pending', no owner, and empty blockedBy
|
|
18
|
-
3. **Prefer tasks in ID order** (lowest ID first) when multiple tasks are available, as earlier tasks often set up context for later ones
|
|
19
|
-
4. Claim an available task using TaskUpdate (set \`owner\` to your name), or wait for leader assignment
|
|
20
|
-
5. If blocked, focus on unblocking tasks or notify the team lead
|
|
12
|
+
? `
|
|
13
|
+
## Teammate Workflow
|
|
14
|
+
|
|
15
|
+
When working as a teammate:
|
|
16
|
+
1. After completing your current task, call TaskList to find available work
|
|
17
|
+
2. Look for tasks with status 'pending', no owner, and empty blockedBy
|
|
18
|
+
3. **Prefer tasks in ID order** (lowest ID first) when multiple tasks are available, as earlier tasks often set up context for later ones
|
|
19
|
+
4. Claim an available task using TaskUpdate (set \`owner\` to your name), or wait for leader assignment
|
|
20
|
+
5. If blocked, focus on unblocking tasks or notify the team lead
|
|
21
21
|
`
|
|
22
22
|
: '';
|
|
23
|
-
return `Use this tool to list all tasks in the task list.
|
|
24
|
-
|
|
25
|
-
## When to Use This Tool
|
|
26
|
-
|
|
27
|
-
- To see what tasks are available to work on (status: 'pending', no owner, not blocked)
|
|
28
|
-
- To check overall progress on the project
|
|
29
|
-
- To find tasks that are blocked and need dependencies resolved
|
|
30
|
-
${teammateUseCase}- After completing a task, to check for newly unblocked work or claim the next available task
|
|
31
|
-
- **Prefer working on tasks in ID order** (lowest ID first) when multiple tasks are available, as earlier tasks often set up context for later ones
|
|
32
|
-
|
|
33
|
-
## Output
|
|
34
|
-
|
|
35
|
-
Returns a summary of each task:
|
|
36
|
-
${idDescription}
|
|
37
|
-
- **subject**: Brief description of the task
|
|
38
|
-
- **status**: 'pending', 'in_progress', or 'completed'
|
|
39
|
-
- **owner**: Agent ID if assigned, empty if available
|
|
40
|
-
- **blockedBy**: List of open task IDs that must be resolved first (tasks with blockedBy cannot be claimed until dependencies resolve)
|
|
41
|
-
|
|
42
|
-
Use TaskGet with a specific task ID to view full details including description and comments.
|
|
23
|
+
return `Use this tool to list all tasks in the task list.
|
|
24
|
+
|
|
25
|
+
## When to Use This Tool
|
|
26
|
+
|
|
27
|
+
- To see what tasks are available to work on (status: 'pending', no owner, not blocked)
|
|
28
|
+
- To check overall progress on the project
|
|
29
|
+
- To find tasks that are blocked and need dependencies resolved
|
|
30
|
+
${teammateUseCase}- After completing a task, to check for newly unblocked work or claim the next available task
|
|
31
|
+
- **Prefer working on tasks in ID order** (lowest ID first) when multiple tasks are available, as earlier tasks often set up context for later ones
|
|
32
|
+
|
|
33
|
+
## Output
|
|
34
|
+
|
|
35
|
+
Returns a summary of each task:
|
|
36
|
+
${idDescription}
|
|
37
|
+
- **subject**: Brief description of the task
|
|
38
|
+
- **status**: 'pending', 'in_progress', or 'completed'
|
|
39
|
+
- **owner**: Agent ID if assigned, empty if available
|
|
40
|
+
- **blockedBy**: List of open task IDs that must be resolved first (tasks with blockedBy cannot be claimed until dependencies resolve)
|
|
41
|
+
|
|
42
|
+
Use TaskGet with a specific task ID to view full details including description and comments.
|
|
43
43
|
${teammateWorkflow}`;
|
|
44
44
|
}
|
|
@@ -135,14 +135,14 @@ export const TaskOutputTool = buildTool({
|
|
|
135
135
|
return input.task_id;
|
|
136
136
|
},
|
|
137
137
|
async prompt() {
|
|
138
|
-
return `DEPRECATED: Prefer using the Read tool on the task's output file path instead. Background tasks return their output file path in the tool result, and you receive a <task-notification> with the same path when the task completes — Read that file directly.
|
|
139
|
-
|
|
140
|
-
- Retrieves output from a running or completed task (background shell, agent, or remote session)
|
|
141
|
-
- Takes a task_id parameter identifying the task
|
|
142
|
-
- Returns the task output along with status information
|
|
143
|
-
- Use block=true (default) to wait for task completion
|
|
144
|
-
- Use block=false for non-blocking check of current status
|
|
145
|
-
- Task IDs can be found using the /tasks command
|
|
138
|
+
return `DEPRECATED: Prefer using the Read tool on the task's output file path instead. Background tasks return their output file path in the tool result, and you receive a <task-notification> with the same path when the task completes — Read that file directly.
|
|
139
|
+
|
|
140
|
+
- Retrieves output from a running or completed task (background shell, agent, or remote session)
|
|
141
|
+
- Takes a task_id parameter identifying the task
|
|
142
|
+
- Returns the task output along with status information
|
|
143
|
+
- Use block=true (default) to wait for task completion
|
|
144
|
+
- Use block=false for non-blocking check of current status
|
|
145
|
+
- Task IDs can be found using the /tasks command
|
|
146
146
|
- Works with all task types: background shells, async agents, and remote sessions`;
|
|
147
147
|
},
|
|
148
148
|
async validateInput({ task_id }, { getAppState }) {
|
|
@@ -15,8 +15,8 @@ const SEND_USER_FILE_TOOL_NAME = feature('KAIROS')
|
|
|
15
15
|
/* eslint-enable @typescript-eslint/no-require-imports */
|
|
16
16
|
export { TOOL_SEARCH_TOOL_NAME } from './constants.js';
|
|
17
17
|
import { TOOL_SEARCH_TOOL_NAME } from './constants.js';
|
|
18
|
-
const PROMPT_HEAD = `Fetches full schema definitions for deferred tools so they can be called.
|
|
19
|
-
|
|
18
|
+
const PROMPT_HEAD = `Fetches full schema definitions for deferred tools so they can be called.
|
|
19
|
+
|
|
20
20
|
`;
|
|
21
21
|
// Matches isDeferredToolsDeltaEnabled in toolSearch.ts (not imported —
|
|
22
22
|
// toolSearch.ts imports from this file). When enabled: tools announced
|
|
@@ -29,13 +29,13 @@ function getToolLocationHint() {
|
|
|
29
29
|
? 'Deferred tools appear by name in <system-reminder> messages.'
|
|
30
30
|
: 'Deferred tools appear by name in <available-deferred-tools> messages.';
|
|
31
31
|
}
|
|
32
|
-
const PROMPT_TAIL = ` Until fetched, only the name is known — there is no parameter schema, so the tool cannot be invoked. This tool takes a query, matches it against the deferred tool list, and returns the matched tools' complete JSONSchema definitions inside a <functions> block. Once a tool's schema appears in that result, it is callable exactly like any tool defined at the top of the prompt.
|
|
33
|
-
|
|
34
|
-
Result format: each matched tool appears as one <function>{"description": "...", "name": "...", "parameters": {...}}</function> line inside the <functions> block — the same encoding as the tool list at the top of this prompt.
|
|
35
|
-
|
|
36
|
-
Query forms:
|
|
37
|
-
- "select:Read,Edit,Grep" — fetch these exact tools by name
|
|
38
|
-
- "notebook jupyter" — keyword search, up to max_results best matches
|
|
32
|
+
const PROMPT_TAIL = ` Until fetched, only the name is known — there is no parameter schema, so the tool cannot be invoked. This tool takes a query, matches it against the deferred tool list, and returns the matched tools' complete JSONSchema definitions inside a <functions> block. Once a tool's schema appears in that result, it is callable exactly like any tool defined at the top of the prompt.
|
|
33
|
+
|
|
34
|
+
Result format: each matched tool appears as one <function>{"description": "...", "name": "...", "parameters": {...}}</function> line inside the <functions> block — the same encoding as the tool list at the top of this prompt.
|
|
35
|
+
|
|
36
|
+
Query forms:
|
|
37
|
+
- "select:Read,Edit,Grep" — fetch these exact tools by name
|
|
38
|
+
- "notebook jupyter" — keyword search, up to max_results best matches
|
|
39
39
|
- "+slack send" — require "slack" in the name, rank by remaining terms`;
|
|
40
40
|
/**
|
|
41
41
|
* Check if a tool should be deferred (requires ToolSearch to load).
|
|
@@ -143,7 +143,7 @@ export const WebFetchTool = buildTool({
|
|
|
143
143
|
// between SDK query() calls (when ToolSearch enablement varies due to
|
|
144
144
|
// MCP tool count thresholds), invalidating the Anthropic API prompt
|
|
145
145
|
// cache on each toggle — two consecutive cache misses per flicker event.
|
|
146
|
-
return `IMPORTANT: WebFetch WILL FAIL for authenticated or private URLs. Before using this tool, check if the URL points to an authenticated service (e.g. Google Docs, Confluence, Jira, GitHub). If so, look for a specialized MCP tool that provides authenticated access.
|
|
146
|
+
return `IMPORTANT: WebFetch WILL FAIL for authenticated or private URLs. Before using this tool, check if the URL points to an authenticated service (e.g. Google Docs, Confluence, Jira, GitHub). If so, look for a specialized MCP tool that provides authenticated access.
|
|
147
147
|
${DESCRIPTION}`;
|
|
148
148
|
},
|
|
149
149
|
async validateInput(input) {
|
|
@@ -176,14 +176,14 @@ ${DESCRIPTION}`;
|
|
|
176
176
|
: response.statusCode === 307
|
|
177
177
|
? 'Temporary Redirect'
|
|
178
178
|
: 'Found';
|
|
179
|
-
const message = `REDIRECT DETECTED: The URL redirects to a different host.
|
|
180
|
-
|
|
181
|
-
Original URL: ${response.originalUrl}
|
|
182
|
-
Redirect URL: ${response.redirectUrl}
|
|
183
|
-
Status: ${response.statusCode} ${statusText}
|
|
184
|
-
|
|
185
|
-
To complete your request, I need to fetch content from the redirected URL. Please use WebFetch again with these parameters:
|
|
186
|
-
- url: "${response.redirectUrl}"
|
|
179
|
+
const message = `REDIRECT DETECTED: The URL redirects to a different host.
|
|
180
|
+
|
|
181
|
+
Original URL: ${response.originalUrl}
|
|
182
|
+
Redirect URL: ${response.redirectUrl}
|
|
183
|
+
Status: ${response.statusCode} ${statusText}
|
|
184
|
+
|
|
185
|
+
To complete your request, I need to fetch content from the redirected URL. Please use WebFetch again with these parameters:
|
|
186
|
+
- url: "${response.redirectUrl}"
|
|
187
187
|
- prompt: "${prompt}"`;
|
|
188
188
|
const output = {
|
|
189
189
|
bytes: Buffer.byteLength(message),
|