@lingxiao-office/sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agents/AgentCompletionNoteWriter.d.ts +20 -0
- package/dist/agents/AgentCompletionNoteWriter.d.ts.map +1 -0
- package/dist/agents/AgentCompletionNoteWriter.js +26 -0
- package/dist/agents/AgentCompletionNoteWriter.js.map +1 -0
- package/dist/agents/AgentContextController.d.ts +14 -0
- package/dist/agents/AgentContextController.d.ts.map +1 -0
- package/dist/agents/AgentContextController.js +50 -0
- package/dist/agents/AgentContextController.js.map +1 -0
- package/dist/agents/AgentDefinitionService.d.ts +79 -0
- package/dist/agents/AgentDefinitionService.d.ts.map +1 -0
- package/dist/agents/AgentDefinitionService.js +295 -0
- package/dist/agents/AgentDefinitionService.js.map +1 -0
- package/dist/agents/AgentExecutionResult.d.ts +68 -0
- package/dist/agents/AgentExecutionResult.d.ts.map +1 -0
- package/dist/agents/AgentExecutionResult.js +81 -0
- package/dist/agents/AgentExecutionResult.js.map +1 -0
- package/dist/agents/AgentInterventionHandler.d.ts +33 -0
- package/dist/agents/AgentInterventionHandler.d.ts.map +1 -0
- package/dist/agents/AgentInterventionHandler.js +58 -0
- package/dist/agents/AgentInterventionHandler.js.map +1 -0
- package/dist/agents/AgentMessageHistory.d.ts +27 -0
- package/dist/agents/AgentMessageHistory.d.ts.map +1 -0
- package/dist/agents/AgentMessageHistory.js +43 -0
- package/dist/agents/AgentMessageHistory.js.map +1 -0
- package/dist/agents/AgentPoolRuntime.d.ts +647 -0
- package/dist/agents/AgentPoolRuntime.d.ts.map +1 -0
- package/dist/agents/AgentPoolRuntime.js +1713 -0
- package/dist/agents/AgentPoolRuntime.js.map +1 -0
- package/dist/agents/AgentRoundExecutor.d.ts +56 -0
- package/dist/agents/AgentRoundExecutor.d.ts.map +1 -0
- package/dist/agents/AgentRoundExecutor.js +116 -0
- package/dist/agents/AgentRoundExecutor.js.map +1 -0
- package/dist/agents/AgentRuntimeUtilities.d.ts +14 -0
- package/dist/agents/AgentRuntimeUtilities.d.ts.map +1 -0
- package/dist/agents/AgentRuntimeUtilities.js +169 -0
- package/dist/agents/AgentRuntimeUtilities.js.map +1 -0
- package/dist/agents/AutonomyDecisionEngine.d.ts +20 -0
- package/dist/agents/AutonomyDecisionEngine.d.ts.map +1 -0
- package/dist/agents/AutonomyDecisionEngine.js +150 -0
- package/dist/agents/AutonomyDecisionEngine.js.map +1 -0
- package/dist/agents/BaseAgentRuntime.d.ts +509 -0
- package/dist/agents/BaseAgentRuntime.d.ts.map +1 -0
- package/dist/agents/BaseAgentRuntime.js +3280 -0
- package/dist/agents/BaseAgentRuntime.js.map +1 -0
- package/dist/agents/BlockedAgingPolicy.d.ts +3 -0
- package/dist/agents/BlockedAgingPolicy.d.ts.map +1 -0
- package/dist/agents/BlockedAgingPolicy.js +3 -0
- package/dist/agents/BlockedAgingPolicy.js.map +1 -0
- package/dist/agents/DispatchDecisionCoordinator.d.ts +98 -0
- package/dist/agents/DispatchDecisionCoordinator.d.ts.map +1 -0
- package/dist/agents/DispatchDecisionCoordinator.js +388 -0
- package/dist/agents/DispatchDecisionCoordinator.js.map +1 -0
- package/dist/agents/IntentClassifier.d.ts +19 -0
- package/dist/agents/IntentClassifier.d.ts.map +1 -0
- package/dist/agents/IntentClassifier.js +176 -0
- package/dist/agents/IntentClassifier.js.map +1 -0
- package/dist/agents/LeaderAgent.d.ts +752 -0
- package/dist/agents/LeaderAgent.d.ts.map +1 -0
- package/dist/agents/LeaderAgent.js +3511 -0
- package/dist/agents/LeaderAgent.js.map +1 -0
- package/dist/agents/LeaderBlackboard.d.ts +177 -0
- package/dist/agents/LeaderBlackboard.d.ts.map +1 -0
- package/dist/agents/LeaderBlackboard.js +800 -0
- package/dist/agents/LeaderBlackboard.js.map +1 -0
- package/dist/agents/LeaderDirectTools.d.ts +66 -0
- package/dist/agents/LeaderDirectTools.d.ts.map +1 -0
- package/dist/agents/LeaderDirectTools.js +124 -0
- package/dist/agents/LeaderDirectTools.js.map +1 -0
- package/dist/agents/LeaderExecutionController.d.ts +102 -0
- package/dist/agents/LeaderExecutionController.d.ts.map +1 -0
- package/dist/agents/LeaderExecutionController.js +260 -0
- package/dist/agents/LeaderExecutionController.js.map +1 -0
- package/dist/agents/LeaderPermissionManager.d.ts +117 -0
- package/dist/agents/LeaderPermissionManager.d.ts.map +1 -0
- package/dist/agents/LeaderPermissionManager.js +455 -0
- package/dist/agents/LeaderPermissionManager.js.map +1 -0
- package/dist/agents/LeaderProgressInvariant.d.ts +174 -0
- package/dist/agents/LeaderProgressInvariant.d.ts.map +1 -0
- package/dist/agents/LeaderProgressInvariant.js +479 -0
- package/dist/agents/LeaderProgressInvariant.js.map +1 -0
- package/dist/agents/LeaderSupervisionCoordinator.d.ts +109 -0
- package/dist/agents/LeaderSupervisionCoordinator.d.ts.map +1 -0
- package/dist/agents/LeaderSupervisionCoordinator.js +492 -0
- package/dist/agents/LeaderSupervisionCoordinator.js.map +1 -0
- package/dist/agents/LeaderSupervisionPolicy.d.ts +52 -0
- package/dist/agents/LeaderSupervisionPolicy.d.ts.map +1 -0
- package/dist/agents/LeaderSupervisionPolicy.js +130 -0
- package/dist/agents/LeaderSupervisionPolicy.js.map +1 -0
- package/dist/agents/LeaderTools.d.ts +169 -0
- package/dist/agents/LeaderTools.d.ts.map +1 -0
- package/dist/agents/LeaderTools.js +1693 -0
- package/dist/agents/LeaderTools.js.map +1 -0
- package/dist/agents/LeaderWorkOrchestrator.d.ts +187 -0
- package/dist/agents/LeaderWorkOrchestrator.d.ts.map +1 -0
- package/dist/agents/LeaderWorkOrchestrator.js +554 -0
- package/dist/agents/LeaderWorkOrchestrator.js.map +1 -0
- package/dist/agents/LlmGuard.d.ts +160 -0
- package/dist/agents/LlmGuard.d.ts.map +1 -0
- package/dist/agents/LlmGuard.js +727 -0
- package/dist/agents/LlmGuard.js.map +1 -0
- package/dist/agents/OrchestrationRuntime.d.ts +50 -0
- package/dist/agents/OrchestrationRuntime.d.ts.map +1 -0
- package/dist/agents/OrchestrationRuntime.js +436 -0
- package/dist/agents/OrchestrationRuntime.js.map +1 -0
- package/dist/agents/ProjectControlService.d.ts +18 -0
- package/dist/agents/ProjectControlService.d.ts.map +1 -0
- package/dist/agents/ProjectControlService.js +99 -0
- package/dist/agents/ProjectControlService.js.map +1 -0
- package/dist/agents/RoleCapabilityModel.d.ts +125 -0
- package/dist/agents/RoleCapabilityModel.d.ts.map +1 -0
- package/dist/agents/RoleCapabilityModel.js +303 -0
- package/dist/agents/RoleCapabilityModel.js.map +1 -0
- package/dist/agents/RoleRegistry.d.ts +92 -0
- package/dist/agents/RoleRegistry.d.ts.map +1 -0
- package/dist/agents/RoleRegistry.js +209 -0
- package/dist/agents/RoleRegistry.js.map +1 -0
- package/dist/agents/TaskClassifier.d.ts +34 -0
- package/dist/agents/TaskClassifier.d.ts.map +1 -0
- package/dist/agents/TaskClassifier.js +132 -0
- package/dist/agents/TaskClassifier.js.map +1 -0
- package/dist/agents/TeamSynchronizer.d.ts +113 -0
- package/dist/agents/TeamSynchronizer.d.ts.map +1 -0
- package/dist/agents/TeamSynchronizer.js +250 -0
- package/dist/agents/TeamSynchronizer.js.map +1 -0
- package/dist/agents/UnifiedScheduler.d.ts +111 -0
- package/dist/agents/UnifiedScheduler.d.ts.map +1 -0
- package/dist/agents/UnifiedScheduler.js +246 -0
- package/dist/agents/UnifiedScheduler.js.map +1 -0
- package/dist/agents/WorkerDbClosedClassification.d.ts +51 -0
- package/dist/agents/WorkerDbClosedClassification.d.ts.map +1 -0
- package/dist/agents/WorkerDbClosedClassification.js +59 -0
- package/dist/agents/WorkerDbClosedClassification.js.map +1 -0
- package/dist/agents/WorkerFlushRegistry.d.ts +15 -0
- package/dist/agents/WorkerFlushRegistry.d.ts.map +1 -0
- package/dist/agents/WorkerFlushRegistry.js +33 -0
- package/dist/agents/WorkerFlushRegistry.js.map +1 -0
- package/dist/agents/WorkerProcessEntry.d.ts +12 -0
- package/dist/agents/WorkerProcessEntry.d.ts.map +1 -0
- package/dist/agents/WorkerProcessEntry.js +565 -0
- package/dist/agents/WorkerProcessEntry.js.map +1 -0
- package/dist/agents/WorkerTaskAgent.d.ts +46 -0
- package/dist/agents/WorkerTaskAgent.d.ts.map +1 -0
- package/dist/agents/WorkerTaskAgent.js +114 -0
- package/dist/agents/WorkerTaskAgent.js.map +1 -0
- package/dist/agents/agentP0Message.d.ts +42 -0
- package/dist/agents/agentP0Message.d.ts.map +1 -0
- package/dist/agents/agentP0Message.js +48 -0
- package/dist/agents/agentP0Message.js.map +1 -0
- package/dist/agents/errors/TimeoutError.d.ts +12 -0
- package/dist/agents/errors/TimeoutError.d.ts.map +1 -0
- package/dist/agents/errors/TimeoutError.js +20 -0
- package/dist/agents/errors/TimeoutError.js.map +1 -0
- package/dist/agents/external/ExternalAgentOrphans.d.ts +16 -0
- package/dist/agents/external/ExternalAgentOrphans.d.ts.map +1 -0
- package/dist/agents/external/ExternalAgentOrphans.js +95 -0
- package/dist/agents/external/ExternalAgentOrphans.js.map +1 -0
- package/dist/agents/external/ExternalAgentRunner.d.ts +78 -0
- package/dist/agents/external/ExternalAgentRunner.d.ts.map +1 -0
- package/dist/agents/external/ExternalAgentRunner.js +671 -0
- package/dist/agents/external/ExternalAgentRunner.js.map +1 -0
- package/dist/agents/external/availability.d.ts +16 -0
- package/dist/agents/external/availability.d.ts.map +1 -0
- package/dist/agents/external/availability.js +43 -0
- package/dist/agents/external/availability.js.map +1 -0
- package/dist/agents/external/completionReport.d.ts +17 -0
- package/dist/agents/external/completionReport.d.ts.map +1 -0
- package/dist/agents/external/completionReport.js +167 -0
- package/dist/agents/external/completionReport.js.map +1 -0
- package/dist/agents/external/drivers/ClaudeCodeDriver.d.ts +9 -0
- package/dist/agents/external/drivers/ClaudeCodeDriver.d.ts.map +1 -0
- package/dist/agents/external/drivers/ClaudeCodeDriver.js +210 -0
- package/dist/agents/external/drivers/ClaudeCodeDriver.js.map +1 -0
- package/dist/agents/external/drivers/CodexDriver.d.ts +9 -0
- package/dist/agents/external/drivers/CodexDriver.d.ts.map +1 -0
- package/dist/agents/external/drivers/CodexDriver.js +184 -0
- package/dist/agents/external/drivers/CodexDriver.js.map +1 -0
- package/dist/agents/external/lineReader.d.ts +10 -0
- package/dist/agents/external/lineReader.d.ts.map +1 -0
- package/dist/agents/external/lineReader.js +30 -0
- package/dist/agents/external/lineReader.js.map +1 -0
- package/dist/agents/external/modelResolver.d.ts +5 -0
- package/dist/agents/external/modelResolver.d.ts.map +1 -0
- package/dist/agents/external/modelResolver.js +87 -0
- package/dist/agents/external/modelResolver.js.map +1 -0
- package/dist/agents/external/promptBuilder.d.ts +3 -0
- package/dist/agents/external/promptBuilder.d.ts.map +1 -0
- package/dist/agents/external/promptBuilder.js +39 -0
- package/dist/agents/external/promptBuilder.js.map +1 -0
- package/dist/agents/external/types.d.ts +131 -0
- package/dist/agents/external/types.d.ts.map +1 -0
- package/dist/agents/external/types.js +2 -0
- package/dist/agents/external/types.js.map +1 -0
- package/dist/agents/leader/LeaderContextBuilder.d.ts +155 -0
- package/dist/agents/leader/LeaderContextBuilder.d.ts.map +1 -0
- package/dist/agents/leader/LeaderContextBuilder.js +629 -0
- package/dist/agents/leader/LeaderContextBuilder.js.map +1 -0
- package/dist/agents/leader/LeaderLlmSession.d.ts +11 -0
- package/dist/agents/leader/LeaderLlmSession.d.ts.map +1 -0
- package/dist/agents/leader/LeaderLlmSession.js +17 -0
- package/dist/agents/leader/LeaderLlmSession.js.map +1 -0
- package/dist/agents/leader/LeaderMetaToolRegistry.d.ts +15 -0
- package/dist/agents/leader/LeaderMetaToolRegistry.d.ts.map +1 -0
- package/dist/agents/leader/LeaderMetaToolRegistry.js +73 -0
- package/dist/agents/leader/LeaderMetaToolRegistry.js.map +1 -0
- package/dist/agents/leader/LeaderStreamBuffer.d.ts +15 -0
- package/dist/agents/leader/LeaderStreamBuffer.d.ts.map +1 -0
- package/dist/agents/leader/LeaderStreamBuffer.js +19 -0
- package/dist/agents/leader/LeaderStreamBuffer.js.map +1 -0
- package/dist/agents/leader/LeaderThinkingLoop.d.ts +239 -0
- package/dist/agents/leader/LeaderThinkingLoop.d.ts.map +1 -0
- package/dist/agents/leader/LeaderThinkingLoop.js +950 -0
- package/dist/agents/leader/LeaderThinkingLoop.js.map +1 -0
- package/dist/agents/leader/LeaderToolDispatch.d.ts +48 -0
- package/dist/agents/leader/LeaderToolDispatch.d.ts.map +1 -0
- package/dist/agents/leader/LeaderToolDispatch.js +337 -0
- package/dist/agents/leader/LeaderToolDispatch.js.map +1 -0
- package/dist/agents/leader/LeaderToolFailure.d.ts +22 -0
- package/dist/agents/leader/LeaderToolFailure.d.ts.map +1 -0
- package/dist/agents/leader/LeaderToolFailure.js +25 -0
- package/dist/agents/leader/LeaderToolFailure.js.map +1 -0
- package/dist/agents/leader/LeaderToolGates.d.ts +131 -0
- package/dist/agents/leader/LeaderToolGates.d.ts.map +1 -0
- package/dist/agents/leader/LeaderToolGates.js +290 -0
- package/dist/agents/leader/LeaderToolGates.js.map +1 -0
- package/dist/agents/leader/artifactContent.d.ts +38 -0
- package/dist/agents/leader/artifactContent.d.ts.map +1 -0
- package/dist/agents/leader/artifactContent.js +101 -0
- package/dist/agents/leader/artifactContent.js.map +1 -0
- package/dist/agents/leader/builtinRoles.d.ts +36 -0
- package/dist/agents/leader/builtinRoles.d.ts.map +1 -0
- package/dist/agents/leader/builtinRoles.js +41 -0
- package/dist/agents/leader/builtinRoles.js.map +1 -0
- package/dist/agents/leader/contextLimit.d.ts +25 -0
- package/dist/agents/leader/contextLimit.d.ts.map +1 -0
- package/dist/agents/leader/contextLimit.js +24 -0
- package/dist/agents/leader/contextLimit.js.map +1 -0
- package/dist/agents/leader/contextMemory.d.ts +19 -0
- package/dist/agents/leader/contextMemory.d.ts.map +1 -0
- package/dist/agents/leader/contextMemory.js +18 -0
- package/dist/agents/leader/contextMemory.js.map +1 -0
- package/dist/agents/leader/conversationBuffer.d.ts +23 -0
- package/dist/agents/leader/conversationBuffer.d.ts.map +1 -0
- package/dist/agents/leader/conversationBuffer.js +42 -0
- package/dist/agents/leader/conversationBuffer.js.map +1 -0
- package/dist/agents/leader/dynamicContext.d.ts +23 -0
- package/dist/agents/leader/dynamicContext.d.ts.map +1 -0
- package/dist/agents/leader/dynamicContext.js +51 -0
- package/dist/agents/leader/dynamicContext.js.map +1 -0
- package/dist/agents/leader/p0Message.d.ts +154 -0
- package/dist/agents/leader/p0Message.d.ts.map +1 -0
- package/dist/agents/leader/p0Message.js +229 -0
- package/dist/agents/leader/p0Message.js.map +1 -0
- package/dist/agents/leader/progressReport.d.ts +33 -0
- package/dist/agents/leader/progressReport.d.ts.map +1 -0
- package/dist/agents/leader/progressReport.js +59 -0
- package/dist/agents/leader/progressReport.js.map +1 -0
- package/dist/agents/leader/systemPrompt.d.ts +32 -0
- package/dist/agents/leader/systemPrompt.d.ts.map +1 -0
- package/dist/agents/leader/systemPrompt.js +32 -0
- package/dist/agents/leader/systemPrompt.js.map +1 -0
- package/dist/agents/leader/tools/LeaderAgentControlTools.d.ts +62 -0
- package/dist/agents/leader/tools/LeaderAgentControlTools.d.ts.map +1 -0
- package/dist/agents/leader/tools/LeaderAgentControlTools.js +619 -0
- package/dist/agents/leader/tools/LeaderAgentControlTools.js.map +1 -0
- package/dist/agents/leader/tools/LeaderTaskPlanningTools.d.ts +54 -0
- package/dist/agents/leader/tools/LeaderTaskPlanningTools.d.ts.map +1 -0
- package/dist/agents/leader/tools/LeaderTaskPlanningTools.js +1353 -0
- package/dist/agents/leader/tools/LeaderTaskPlanningTools.js.map +1 -0
- package/dist/agents/leader/userContent.d.ts +15 -0
- package/dist/agents/leader/userContent.d.ts.map +1 -0
- package/dist/agents/leader/userContent.js +50 -0
- package/dist/agents/leader/userContent.js.map +1 -0
- package/dist/agents/leader/workerCompletionFormatter.d.ts +48 -0
- package/dist/agents/leader/workerCompletionFormatter.d.ts.map +1 -0
- package/dist/agents/leader/workerCompletionFormatter.js +53 -0
- package/dist/agents/leader/workerCompletionFormatter.js.map +1 -0
- package/dist/agents/messageMemoryBudget.d.ts +41 -0
- package/dist/agents/messageMemoryBudget.d.ts.map +1 -0
- package/dist/agents/messageMemoryBudget.js +91 -0
- package/dist/agents/messageMemoryBudget.js.map +1 -0
- package/dist/agents/office/OfficeModeProtocol.d.ts +3 -0
- package/dist/agents/office/OfficeModeProtocol.d.ts.map +1 -0
- package/dist/agents/office/OfficeModeProtocol.js +111 -0
- package/dist/agents/office/OfficeModeProtocol.js.map +1 -0
- package/dist/agents/pool/AgentPoolBroadcast.d.ts +25 -0
- package/dist/agents/pool/AgentPoolBroadcast.d.ts.map +1 -0
- package/dist/agents/pool/AgentPoolBroadcast.js +88 -0
- package/dist/agents/pool/AgentPoolBroadcast.js.map +1 -0
- package/dist/agents/pool/AgentPoolCompletionPayload.d.ts +17 -0
- package/dist/agents/pool/AgentPoolCompletionPayload.d.ts.map +1 -0
- package/dist/agents/pool/AgentPoolCompletionPayload.js +2 -0
- package/dist/agents/pool/AgentPoolCompletionPayload.js.map +1 -0
- package/dist/agents/pool/AgentPoolEvents.d.ts +20 -0
- package/dist/agents/pool/AgentPoolEvents.d.ts.map +1 -0
- package/dist/agents/pool/AgentPoolEvents.js +35 -0
- package/dist/agents/pool/AgentPoolEvents.js.map +1 -0
- package/dist/agents/pool/FaultRecovery.d.ts +106 -0
- package/dist/agents/pool/FaultRecovery.d.ts.map +1 -0
- package/dist/agents/pool/FaultRecovery.js +290 -0
- package/dist/agents/pool/FaultRecovery.js.map +1 -0
- package/dist/agents/pool/RemoteDispatchCoordinator.d.ts +63 -0
- package/dist/agents/pool/RemoteDispatchCoordinator.d.ts.map +1 -0
- package/dist/agents/pool/RemoteDispatchCoordinator.js +127 -0
- package/dist/agents/pool/RemoteDispatchCoordinator.js.map +1 -0
- package/dist/agents/pool/SlotScheduler.d.ts +83 -0
- package/dist/agents/pool/SlotScheduler.d.ts.map +1 -0
- package/dist/agents/pool/SlotScheduler.js +292 -0
- package/dist/agents/pool/SlotScheduler.js.map +1 -0
- package/dist/agents/pool/WorkerEventHandlerBinder.d.ts +133 -0
- package/dist/agents/pool/WorkerEventHandlerBinder.d.ts.map +1 -0
- package/dist/agents/pool/WorkerEventHandlerBinder.js +668 -0
- package/dist/agents/pool/WorkerEventHandlerBinder.js.map +1 -0
- package/dist/agents/pool/WorkerLifecycle.d.ts +68 -0
- package/dist/agents/pool/WorkerLifecycle.d.ts.map +1 -0
- package/dist/agents/pool/WorkerLifecycle.js +99 -0
- package/dist/agents/pool/WorkerLifecycle.js.map +1 -0
- package/dist/agents/pool/WorkerPayloadBuilder.d.ts +46 -0
- package/dist/agents/pool/WorkerPayloadBuilder.d.ts.map +1 -0
- package/dist/agents/pool/WorkerPayloadBuilder.js +294 -0
- package/dist/agents/pool/WorkerPayloadBuilder.js.map +1 -0
- package/dist/agents/prompts/PromptTemplates.d.ts +59 -0
- package/dist/agents/prompts/PromptTemplates.d.ts.map +1 -0
- package/dist/agents/prompts/PromptTemplates.js +223 -0
- package/dist/agents/prompts/PromptTemplates.js.map +1 -0
- package/dist/agents/prompts/architect_system.d.ts +30 -0
- package/dist/agents/prompts/architect_system.d.ts.map +1 -0
- package/dist/agents/prompts/architect_system.js +95 -0
- package/dist/agents/prompts/architect_system.js.map +1 -0
- package/dist/agents/prompts/backend_system.d.ts +5 -0
- package/dist/agents/prompts/backend_system.d.ts.map +1 -0
- package/dist/agents/prompts/backend_system.js +64 -0
- package/dist/agents/prompts/backend_system.js.map +1 -0
- package/dist/agents/prompts/evaluator_system.d.ts +5 -0
- package/dist/agents/prompts/evaluator_system.d.ts.map +1 -0
- package/dist/agents/prompts/evaluator_system.js +67 -0
- package/dist/agents/prompts/evaluator_system.js.map +1 -0
- package/dist/agents/prompts/frontend_system.d.ts +5 -0
- package/dist/agents/prompts/frontend_system.d.ts.map +1 -0
- package/dist/agents/prompts/frontend_system.js +66 -0
- package/dist/agents/prompts/frontend_system.js.map +1 -0
- package/dist/agents/prompts/fullstack_system.d.ts +5 -0
- package/dist/agents/prompts/fullstack_system.d.ts.map +1 -0
- package/dist/agents/prompts/fullstack_system.js +64 -0
- package/dist/agents/prompts/fullstack_system.js.map +1 -0
- package/dist/agents/prompts/i18n/catalog.d.ts +172 -0
- package/dist/agents/prompts/i18n/catalog.d.ts.map +1 -0
- package/dist/agents/prompts/i18n/catalog.js +498 -0
- package/dist/agents/prompts/i18n/catalog.js.map +1 -0
- package/dist/agents/prompts/i18n/leader_system_prompt.d.ts +6 -0
- package/dist/agents/prompts/i18n/leader_system_prompt.d.ts.map +1 -0
- package/dist/agents/prompts/i18n/leader_system_prompt.js +909 -0
- package/dist/agents/prompts/i18n/leader_system_prompt.js.map +1 -0
- package/dist/agents/prompts/i18n/userIntentLabels.d.ts +10 -0
- package/dist/agents/prompts/i18n/userIntentLabels.d.ts.map +1 -0
- package/dist/agents/prompts/i18n/userIntentLabels.js +21 -0
- package/dist/agents/prompts/i18n/userIntentLabels.js.map +1 -0
- package/dist/agents/prompts/leader/system_prompt.d.ts +6 -0
- package/dist/agents/prompts/leader/system_prompt.d.ts.map +1 -0
- package/dist/agents/prompts/leader/system_prompt.js +8 -0
- package/dist/agents/prompts/leader/system_prompt.js.map +1 -0
- package/dist/agents/prompts/planner_system.d.ts +5 -0
- package/dist/agents/prompts/planner_system.d.ts.map +1 -0
- package/dist/agents/prompts/planner_system.js +69 -0
- package/dist/agents/prompts/planner_system.js.map +1 -0
- package/dist/agents/prompts/qa_system.d.ts +5 -0
- package/dist/agents/prompts/qa_system.d.ts.map +1 -0
- package/dist/agents/prompts/qa_system.js +57 -0
- package/dist/agents/prompts/qa_system.js.map +1 -0
- package/dist/agents/prompts/shared/fragments.d.ts +54 -0
- package/dist/agents/prompts/shared/fragments.d.ts.map +1 -0
- package/dist/agents/prompts/shared/fragments.js +222 -0
- package/dist/agents/prompts/shared/fragments.js.map +1 -0
- package/dist/agents/prompts/shared/prompt_builder.d.ts +6 -0
- package/dist/agents/prompts/shared/prompt_builder.d.ts.map +1 -0
- package/dist/agents/prompts/shared/prompt_builder.js +17 -0
- package/dist/agents/prompts/shared/prompt_builder.js.map +1 -0
- package/dist/agents/prompts/task-runtime/thinking_instruction.d.ts +2 -0
- package/dist/agents/prompts/task-runtime/thinking_instruction.d.ts.map +1 -0
- package/dist/agents/prompts/task-runtime/thinking_instruction.js +37 -0
- package/dist/agents/prompts/task-runtime/thinking_instruction.js.map +1 -0
- package/dist/agents/prompts/task-runtime/worker_task_prompt.d.ts +42 -0
- package/dist/agents/prompts/task-runtime/worker_task_prompt.d.ts.map +1 -0
- package/dist/agents/prompts/task-runtime/worker_task_prompt.js +181 -0
- package/dist/agents/prompts/task-runtime/worker_task_prompt.js.map +1 -0
- package/dist/agents/prompts/ux_designer_system.d.ts +5 -0
- package/dist/agents/prompts/ux_designer_system.d.ts.map +1 -0
- package/dist/agents/prompts/ux_designer_system.js +60 -0
- package/dist/agents/prompts/ux_designer_system.js.map +1 -0
- package/dist/agents/prompts/worker/system_prompts.d.ts +22 -0
- package/dist/agents/prompts/worker/system_prompts.d.ts.map +1 -0
- package/dist/agents/prompts/worker/system_prompts.js +313 -0
- package/dist/agents/prompts/worker/system_prompts.js.map +1 -0
- package/dist/agents/raw_tool_calls.d.ts +15 -0
- package/dist/agents/raw_tool_calls.d.ts.map +1 -0
- package/dist/agents/raw_tool_calls.js +273 -0
- package/dist/agents/raw_tool_calls.js.map +1 -0
- package/dist/agents/runtime/AgentCore.d.ts +13 -0
- package/dist/agents/runtime/AgentCore.d.ts.map +1 -0
- package/dist/agents/runtime/AgentCore.js +19 -0
- package/dist/agents/runtime/AgentCore.js.map +1 -0
- package/dist/agents/runtime/AgentInboxParsers.d.ts +46 -0
- package/dist/agents/runtime/AgentInboxParsers.d.ts.map +1 -0
- package/dist/agents/runtime/AgentInboxParsers.js +152 -0
- package/dist/agents/runtime/AgentInboxParsers.js.map +1 -0
- package/dist/agents/runtime/AgentRuntimeState.d.ts +36 -0
- package/dist/agents/runtime/AgentRuntimeState.d.ts.map +1 -0
- package/dist/agents/runtime/AgentRuntimeState.js +68 -0
- package/dist/agents/runtime/AgentRuntimeState.js.map +1 -0
- package/dist/agents/runtime/CompletionTerminationPolicy.d.ts +15 -0
- package/dist/agents/runtime/CompletionTerminationPolicy.d.ts.map +1 -0
- package/dist/agents/runtime/CompletionTerminationPolicy.js +18 -0
- package/dist/agents/runtime/CompletionTerminationPolicy.js.map +1 -0
- package/dist/agents/runtime/EternalPatrolJudge.d.ts +23 -0
- package/dist/agents/runtime/EternalPatrolJudge.d.ts.map +1 -0
- package/dist/agents/runtime/EternalPatrolJudge.js +114 -0
- package/dist/agents/runtime/EternalPatrolJudge.js.map +1 -0
- package/dist/agents/runtime/LlmRoundExecutor.d.ts +55 -0
- package/dist/agents/runtime/LlmRoundExecutor.d.ts.map +1 -0
- package/dist/agents/runtime/LlmRoundExecutor.js +382 -0
- package/dist/agents/runtime/LlmRoundExecutor.js.map +1 -0
- package/dist/agents/runtime/LlmStreamHooks.d.ts +59 -0
- package/dist/agents/runtime/LlmStreamHooks.d.ts.map +1 -0
- package/dist/agents/runtime/LlmStreamHooks.js +140 -0
- package/dist/agents/runtime/LlmStreamHooks.js.map +1 -0
- package/dist/agents/runtime/MandatoryVerification.d.ts +23 -0
- package/dist/agents/runtime/MandatoryVerification.d.ts.map +1 -0
- package/dist/agents/runtime/MandatoryVerification.js +108 -0
- package/dist/agents/runtime/MandatoryVerification.js.map +1 -0
- package/dist/agents/runtime/NextSpeakerPolicy.d.ts +53 -0
- package/dist/agents/runtime/NextSpeakerPolicy.d.ts.map +1 -0
- package/dist/agents/runtime/NextSpeakerPolicy.js +162 -0
- package/dist/agents/runtime/NextSpeakerPolicy.js.map +1 -0
- package/dist/agents/runtime/ReasoningLoopDriver.d.ts +32 -0
- package/dist/agents/runtime/ReasoningLoopDriver.d.ts.map +1 -0
- package/dist/agents/runtime/ReasoningLoopDriver.js +58 -0
- package/dist/agents/runtime/ReasoningLoopDriver.js.map +1 -0
- package/dist/agents/runtime/StreamChunkBuffer.d.ts +45 -0
- package/dist/agents/runtime/StreamChunkBuffer.d.ts.map +1 -0
- package/dist/agents/runtime/StreamChunkBuffer.js +57 -0
- package/dist/agents/runtime/StreamChunkBuffer.js.map +1 -0
- package/dist/agents/runtime/ToolCallSafety.d.ts +42 -0
- package/dist/agents/runtime/ToolCallSafety.d.ts.map +1 -0
- package/dist/agents/runtime/ToolCallSafety.js +319 -0
- package/dist/agents/runtime/ToolCallSafety.js.map +1 -0
- package/dist/agents/runtime/ToolFailureLoopGuard.d.ts +163 -0
- package/dist/agents/runtime/ToolFailureLoopGuard.d.ts.map +1 -0
- package/dist/agents/runtime/ToolFailureLoopGuard.js +368 -0
- package/dist/agents/runtime/ToolFailureLoopGuard.js.map +1 -0
- package/dist/agents/runtime/ToolLoopDetector.d.ts +47 -0
- package/dist/agents/runtime/ToolLoopDetector.d.ts.map +1 -0
- package/dist/agents/runtime/ToolLoopDetector.js +108 -0
- package/dist/agents/runtime/ToolLoopDetector.js.map +1 -0
- package/dist/agents/runtime/ToolProgressHeartbeat.d.ts +73 -0
- package/dist/agents/runtime/ToolProgressHeartbeat.d.ts.map +1 -0
- package/dist/agents/runtime/ToolProgressHeartbeat.js +152 -0
- package/dist/agents/runtime/ToolProgressHeartbeat.js.map +1 -0
- package/dist/agents/runtime/ToolResponseProcessor.d.ts +57 -0
- package/dist/agents/runtime/ToolResponseProcessor.d.ts.map +1 -0
- package/dist/agents/runtime/ToolResponseProcessor.js +87 -0
- package/dist/agents/runtime/ToolResponseProcessor.js.map +1 -0
- package/dist/agents/runtime/ToolScheduler.d.ts +31 -0
- package/dist/agents/runtime/ToolScheduler.d.ts.map +1 -0
- package/dist/agents/runtime/ToolScheduler.js +63 -0
- package/dist/agents/runtime/ToolScheduler.js.map +1 -0
- package/dist/agents/runtime/WorkerCompletionPolicy.d.ts +47 -0
- package/dist/agents/runtime/WorkerCompletionPolicy.d.ts.map +1 -0
- package/dist/agents/runtime/WorkerCompletionPolicy.js +304 -0
- package/dist/agents/runtime/WorkerCompletionPolicy.js.map +1 -0
- package/dist/agents/runtime/WorkerInteractiveRuntime.d.ts +87 -0
- package/dist/agents/runtime/WorkerInteractiveRuntime.d.ts.map +1 -0
- package/dist/agents/runtime/WorkerInteractiveRuntime.js +122 -0
- package/dist/agents/runtime/WorkerInteractiveRuntime.js.map +1 -0
- package/dist/agents/runtime/messageSummary.d.ts +7 -0
- package/dist/agents/runtime/messageSummary.d.ts.map +1 -0
- package/dist/agents/runtime/messageSummary.js +21 -0
- package/dist/agents/runtime/messageSummary.js.map +1 -0
- package/dist/agents/runtime/parallelToolBatch.d.ts +39 -0
- package/dist/agents/runtime/parallelToolBatch.d.ts.map +1 -0
- package/dist/agents/runtime/parallelToolBatch.js +64 -0
- package/dist/agents/runtime/parallelToolBatch.js.map +1 -0
- package/dist/config/ModelManager.d.ts +59 -0
- package/dist/config/ModelManager.d.ts.map +1 -0
- package/dist/config/ModelManager.js +256 -0
- package/dist/config/ModelManager.js.map +1 -0
- package/dist/config/defaults.d.ts +468 -0
- package/dist/config/defaults.d.ts.map +1 -0
- package/dist/config/defaults.js +520 -0
- package/dist/config/defaults.js.map +1 -0
- package/dist/config.d.ts +1225 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +1580 -0
- package/dist/config.js.map +1 -0
- package/dist/contracts/adapters/BlockedAgingPolicy.d.ts +22 -0
- package/dist/contracts/adapters/BlockedAgingPolicy.d.ts.map +1 -0
- package/dist/contracts/adapters/BlockedAgingPolicy.js +29 -0
- package/dist/contracts/adapters/BlockedAgingPolicy.js.map +1 -0
- package/dist/contracts/adapters/EternalPatrolPolicy.d.ts +49 -0
- package/dist/contracts/adapters/EternalPatrolPolicy.d.ts.map +1 -0
- package/dist/contracts/adapters/EternalPatrolPolicy.js +78 -0
- package/dist/contracts/adapters/EternalPatrolPolicy.js.map +1 -0
- package/dist/contracts/adapters/EternalRuntimeProjection.d.ts +39 -0
- package/dist/contracts/adapters/EternalRuntimeProjection.d.ts.map +1 -0
- package/dist/contracts/adapters/EternalRuntimeProjection.js +114 -0
- package/dist/contracts/adapters/EternalRuntimeProjection.js.map +1 -0
- package/dist/contracts/adapters/EventAdapter.d.ts +89 -0
- package/dist/contracts/adapters/EventAdapter.d.ts.map +1 -0
- package/dist/contracts/adapters/EventAdapter.js +535 -0
- package/dist/contracts/adapters/EventAdapter.js.map +1 -0
- package/dist/contracts/adapters/SessionScope.d.ts +12 -0
- package/dist/contracts/adapters/SessionScope.d.ts.map +1 -0
- package/dist/contracts/adapters/SessionScope.js +33 -0
- package/dist/contracts/adapters/SessionScope.js.map +1 -0
- package/dist/contracts/adapters/StatusAdapter.d.ts +238 -0
- package/dist/contracts/adapters/StatusAdapter.d.ts.map +1 -0
- package/dist/contracts/adapters/StatusAdapter.js +719 -0
- package/dist/contracts/adapters/StatusAdapter.js.map +1 -0
- package/dist/contracts/adapters/ThinkContent.d.ts +19 -0
- package/dist/contracts/adapters/ThinkContent.d.ts.map +1 -0
- package/dist/contracts/adapters/ThinkContent.js +99 -0
- package/dist/contracts/adapters/ThinkContent.js.map +1 -0
- package/dist/contracts/constants/eventTypes.d.ts +3 -0
- package/dist/contracts/constants/eventTypes.d.ts.map +1 -0
- package/dist/contracts/constants/eventTypes.js +2 -0
- package/dist/contracts/constants/eventTypes.js.map +1 -0
- package/dist/contracts/constants/leaderToolDefinitions.d.ts +18 -0
- package/dist/contracts/constants/leaderToolDefinitions.d.ts.map +1 -0
- package/dist/contracts/constants/leaderToolDefinitions.js +1070 -0
- package/dist/contracts/constants/leaderToolDefinitions.js.map +1 -0
- package/dist/contracts/constants/statusValues.d.ts +7 -0
- package/dist/contracts/constants/statusValues.d.ts.map +1 -0
- package/dist/contracts/constants/statusValues.js +6 -0
- package/dist/contracts/constants/statusValues.js.map +1 -0
- package/dist/contracts/constants/toolNames.d.ts +8 -0
- package/dist/contracts/constants/toolNames.d.ts.map +1 -0
- package/dist/contracts/constants/toolNames.js +25 -0
- package/dist/contracts/constants/toolNames.js.map +1 -0
- package/dist/contracts/index.d.ts +13 -0
- package/dist/contracts/index.d.ts.map +1 -0
- package/dist/contracts/index.js +13 -0
- package/dist/contracts/index.js.map +1 -0
- package/dist/contracts/modes.d.ts +93 -0
- package/dist/contracts/modes.d.ts.map +1 -0
- package/dist/contracts/modes.js +104 -0
- package/dist/contracts/modes.js.map +1 -0
- package/dist/contracts/types/Agent.d.ts +164 -0
- package/dist/contracts/types/Agent.d.ts.map +1 -0
- package/dist/contracts/types/Agent.js +156 -0
- package/dist/contracts/types/Agent.js.map +1 -0
- package/dist/contracts/types/Autonomy.d.ts +88 -0
- package/dist/contracts/types/Autonomy.d.ts.map +1 -0
- package/dist/contracts/types/Autonomy.js +126 -0
- package/dist/contracts/types/Autonomy.js.map +1 -0
- package/dist/contracts/types/AutonomyDecision.d.ts +48 -0
- package/dist/contracts/types/AutonomyDecision.d.ts.map +1 -0
- package/dist/contracts/types/AutonomyDecision.js +27 -0
- package/dist/contracts/types/AutonomyDecision.js.map +1 -0
- package/dist/contracts/types/Canvas.d.ts +163 -0
- package/dist/contracts/types/Canvas.d.ts.map +1 -0
- package/dist/contracts/types/Canvas.js +22 -0
- package/dist/contracts/types/Canvas.js.map +1 -0
- package/dist/contracts/types/Event.d.ts +510 -0
- package/dist/contracts/types/Event.d.ts.map +1 -0
- package/dist/contracts/types/Event.js +197 -0
- package/dist/contracts/types/Event.js.map +1 -0
- package/dist/contracts/types/Message.d.ts +94 -0
- package/dist/contracts/types/Message.d.ts.map +1 -0
- package/dist/contracts/types/Message.js +151 -0
- package/dist/contracts/types/Message.js.map +1 -0
- package/dist/contracts/types/Session.d.ts +9 -0
- package/dist/contracts/types/Session.d.ts.map +1 -0
- package/dist/contracts/types/Session.js +2 -0
- package/dist/contracts/types/Session.js.map +1 -0
- package/dist/contracts/types/Status.d.ts +12 -0
- package/dist/contracts/types/Status.d.ts.map +1 -0
- package/dist/contracts/types/Status.js +30 -0
- package/dist/contracts/types/Status.js.map +1 -0
- package/dist/contracts/types/TokenUsage.d.ts +46 -0
- package/dist/contracts/types/TokenUsage.d.ts.map +1 -0
- package/dist/contracts/types/TokenUsage.js +41 -0
- package/dist/contracts/types/TokenUsage.js.map +1 -0
- package/dist/contracts/types/Tool.d.ts +66 -0
- package/dist/contracts/types/Tool.d.ts.map +1 -0
- package/dist/contracts/types/Tool.js +10 -0
- package/dist/contracts/types/Tool.js.map +1 -0
- package/dist/contracts/types/ToolMetadata.d.ts +35 -0
- package/dist/contracts/types/ToolMetadata.d.ts.map +1 -0
- package/dist/contracts/types/ToolMetadata.js +131 -0
- package/dist/contracts/types/ToolMetadata.js.map +1 -0
- package/dist/contracts/types/Workflow.d.ts +278 -0
- package/dist/contracts/types/Workflow.d.ts.map +1 -0
- package/dist/contracts/types/Workflow.js +752 -0
- package/dist/contracts/types/Workflow.js.map +1 -0
- package/dist/core/ActiveSessionCoordinator.d.ts +23 -0
- package/dist/core/ActiveSessionCoordinator.d.ts.map +1 -0
- package/dist/core/ActiveSessionCoordinator.js +34 -0
- package/dist/core/ActiveSessionCoordinator.js.map +1 -0
- package/dist/core/AgentHealthMonitor.d.ts +162 -0
- package/dist/core/AgentHealthMonitor.d.ts.map +1 -0
- package/dist/core/AgentHealthMonitor.js +442 -0
- package/dist/core/AgentHealthMonitor.js.map +1 -0
- package/dist/core/AgentProtocol.d.ts +187 -0
- package/dist/core/AgentProtocol.d.ts.map +1 -0
- package/dist/core/AgentProtocol.js +213 -0
- package/dist/core/AgentProtocol.js.map +1 -0
- package/dist/core/AlertManager.d.ts +66 -0
- package/dist/core/AlertManager.d.ts.map +1 -0
- package/dist/core/AlertManager.js +126 -0
- package/dist/core/AlertManager.js.map +1 -0
- package/dist/core/ArtifactAwareness.d.ts +37 -0
- package/dist/core/ArtifactAwareness.d.ts.map +1 -0
- package/dist/core/ArtifactAwareness.js +212 -0
- package/dist/core/ArtifactAwareness.js.map +1 -0
- package/dist/core/AssumptionTracker.d.ts +88 -0
- package/dist/core/AssumptionTracker.d.ts.map +1 -0
- package/dist/core/AssumptionTracker.js +316 -0
- package/dist/core/AssumptionTracker.js.map +1 -0
- package/dist/core/AstStructuralEngine.d.ts +91 -0
- package/dist/core/AstStructuralEngine.d.ts.map +1 -0
- package/dist/core/AstStructuralEngine.js +436 -0
- package/dist/core/AstStructuralEngine.js.map +1 -0
- package/dist/core/AutonomousFaultPolicy.d.ts +17 -0
- package/dist/core/AutonomousFaultPolicy.d.ts.map +1 -0
- package/dist/core/AutonomousFaultPolicy.js +108 -0
- package/dist/core/AutonomousFaultPolicy.js.map +1 -0
- package/dist/core/BaselineAlertMonitor.d.ts +25 -0
- package/dist/core/BaselineAlertMonitor.d.ts.map +1 -0
- package/dist/core/BaselineAlertMonitor.js +66 -0
- package/dist/core/BaselineAlertMonitor.js.map +1 -0
- package/dist/core/BootstrapDoctor.d.ts +36 -0
- package/dist/core/BootstrapDoctor.d.ts.map +1 -0
- package/dist/core/BootstrapDoctor.js +288 -0
- package/dist/core/BootstrapDoctor.js.map +1 -0
- package/dist/core/BrowserProvider.d.ts +59 -0
- package/dist/core/BrowserProvider.d.ts.map +1 -0
- package/dist/core/BrowserProvider.js +533 -0
- package/dist/core/BrowserProvider.js.map +1 -0
- package/dist/core/BrowserRuntime.d.ts +178 -0
- package/dist/core/BrowserRuntime.d.ts.map +1 -0
- package/dist/core/BrowserRuntime.js +487 -0
- package/dist/core/BrowserRuntime.js.map +1 -0
- package/dist/core/BrowserStealth.d.ts +31 -0
- package/dist/core/BrowserStealth.d.ts.map +1 -0
- package/dist/core/BrowserStealth.js +111 -0
- package/dist/core/BrowserStealth.js.map +1 -0
- package/dist/core/BughuntDagScheduler.d.ts +19 -0
- package/dist/core/BughuntDagScheduler.d.ts.map +1 -0
- package/dist/core/BughuntDagScheduler.js +82 -0
- package/dist/core/BughuntDagScheduler.js.map +1 -0
- package/dist/core/BughuntEvidenceCapture.d.ts +9 -0
- package/dist/core/BughuntEvidenceCapture.d.ts.map +1 -0
- package/dist/core/BughuntEvidenceCapture.js +27 -0
- package/dist/core/BughuntEvidenceCapture.js.map +1 -0
- package/dist/core/BughuntEvidenceExtractor.d.ts +10 -0
- package/dist/core/BughuntEvidenceExtractor.d.ts.map +1 -0
- package/dist/core/BughuntEvidenceExtractor.js +82 -0
- package/dist/core/BughuntEvidenceExtractor.js.map +1 -0
- package/dist/core/BughuntEvidencePack.d.ts +11 -0
- package/dist/core/BughuntEvidencePack.d.ts.map +1 -0
- package/dist/core/BughuntEvidencePack.js +47 -0
- package/dist/core/BughuntEvidencePack.js.map +1 -0
- package/dist/core/BughuntLedger.d.ts +125 -0
- package/dist/core/BughuntLedger.d.ts.map +1 -0
- package/dist/core/BughuntLedger.js +432 -0
- package/dist/core/BughuntLedger.js.map +1 -0
- package/dist/core/BughuntPolicy.d.ts +23 -0
- package/dist/core/BughuntPolicy.d.ts.map +1 -0
- package/dist/core/BughuntPolicy.js +37 -0
- package/dist/core/BughuntPolicy.js.map +1 -0
- package/dist/core/BuildDiagnosticsCollector.d.ts +97 -0
- package/dist/core/BuildDiagnosticsCollector.d.ts.map +1 -0
- package/dist/core/BuildDiagnosticsCollector.js +200 -0
- package/dist/core/BuildDiagnosticsCollector.js.map +1 -0
- package/dist/core/BundledSkillRegistry.d.ts +25 -0
- package/dist/core/BundledSkillRegistry.d.ts.map +1 -0
- package/dist/core/BundledSkillRegistry.js +86 -0
- package/dist/core/BundledSkillRegistry.js.map +1 -0
- package/dist/core/BusMessageTypes.d.ts +109 -0
- package/dist/core/BusMessageTypes.d.ts.map +1 -0
- package/dist/core/BusMessageTypes.js +49 -0
- package/dist/core/BusMessageTypes.js.map +1 -0
- package/dist/core/ChangeImpactResolver.d.ts +71 -0
- package/dist/core/ChangeImpactResolver.d.ts.map +1 -0
- package/dist/core/ChangeImpactResolver.js +130 -0
- package/dist/core/ChangeImpactResolver.js.map +1 -0
- package/dist/core/CleanupRegistry.d.ts +39 -0
- package/dist/core/CleanupRegistry.d.ts.map +1 -0
- package/dist/core/CleanupRegistry.js +91 -0
- package/dist/core/CleanupRegistry.js.map +1 -0
- package/dist/core/ContextManager.d.ts +135 -0
- package/dist/core/ContextManager.d.ts.map +1 -0
- package/dist/core/ContextManager.js +755 -0
- package/dist/core/ContextManager.js.map +1 -0
- package/dist/core/ContextManifest.d.ts +125 -0
- package/dist/core/ContextManifest.d.ts.map +1 -0
- package/dist/core/ContextManifest.js +265 -0
- package/dist/core/ContextManifest.js.map +1 -0
- package/dist/core/ContextMemoryIndex.d.ts +74 -0
- package/dist/core/ContextMemoryIndex.d.ts.map +1 -0
- package/dist/core/ContextMemoryIndex.js +431 -0
- package/dist/core/ContextMemoryIndex.js.map +1 -0
- package/dist/core/ContextRuntimeState.d.ts +43 -0
- package/dist/core/ContextRuntimeState.d.ts.map +1 -0
- package/dist/core/ContextRuntimeState.js +79 -0
- package/dist/core/ContextRuntimeState.js.map +1 -0
- package/dist/core/ContractAllowedScope.d.ts +67 -0
- package/dist/core/ContractAllowedScope.d.ts.map +1 -0
- package/dist/core/ContractAllowedScope.js +109 -0
- package/dist/core/ContractAllowedScope.js.map +1 -0
- package/dist/core/ContractDriftAudit.d.ts +28 -0
- package/dist/core/ContractDriftAudit.d.ts.map +1 -0
- package/dist/core/ContractDriftAudit.js +31 -0
- package/dist/core/ContractDriftAudit.js.map +1 -0
- package/dist/core/ContractHotSync.d.ts +88 -0
- package/dist/core/ContractHotSync.d.ts.map +1 -0
- package/dist/core/ContractHotSync.js +142 -0
- package/dist/core/ContractHotSync.js.map +1 -0
- package/dist/core/ContractPack.d.ts +67 -0
- package/dist/core/ContractPack.d.ts.map +1 -0
- package/dist/core/ContractPack.js +397 -0
- package/dist/core/ContractPack.js.map +1 -0
- package/dist/core/ContractProvenance.d.ts +6 -0
- package/dist/core/ContractProvenance.d.ts.map +1 -0
- package/dist/core/ContractProvenance.js +39 -0
- package/dist/core/ContractProvenance.js.map +1 -0
- package/dist/core/CrashReporter.d.ts +51 -0
- package/dist/core/CrashReporter.d.ts.map +1 -0
- package/dist/core/CrashReporter.js +179 -0
- package/dist/core/CrashReporter.js.map +1 -0
- package/dist/core/DaemonManager.d.ts +100 -0
- package/dist/core/DaemonManager.d.ts.map +1 -0
- package/dist/core/DaemonManager.js +429 -0
- package/dist/core/DaemonManager.js.map +1 -0
- package/dist/core/DagScheduler.d.ts +73 -0
- package/dist/core/DagScheduler.d.ts.map +1 -0
- package/dist/core/DagScheduler.js +111 -0
- package/dist/core/DagScheduler.js.map +1 -0
- package/dist/core/Database.d.ts +545 -0
- package/dist/core/Database.d.ts.map +1 -0
- package/dist/core/Database.js +2158 -0
- package/dist/core/Database.js.map +1 -0
- package/dist/core/DatabaseLockRecovery.d.ts +50 -0
- package/dist/core/DatabaseLockRecovery.d.ts.map +1 -0
- package/dist/core/DatabaseLockRecovery.js +167 -0
- package/dist/core/DatabaseLockRecovery.js.map +1 -0
- package/dist/core/DatabaseRepositories.d.ts +298 -0
- package/dist/core/DatabaseRepositories.d.ts.map +1 -0
- package/dist/core/DatabaseRepositories.js +292 -0
- package/dist/core/DatabaseRepositories.js.map +1 -0
- package/dist/core/DesignAssetCatalog.d.ts +180 -0
- package/dist/core/DesignAssetCatalog.d.ts.map +1 -0
- package/dist/core/DesignAssetCatalog.js +691 -0
- package/dist/core/DesignAssetCatalog.js.map +1 -0
- package/dist/core/DeterministicAcceptance.d.ts +96 -0
- package/dist/core/DeterministicAcceptance.d.ts.map +1 -0
- package/dist/core/DeterministicAcceptance.js +218 -0
- package/dist/core/DeterministicAcceptance.js.map +1 -0
- package/dist/core/Diagnostics.d.ts +49 -0
- package/dist/core/Diagnostics.d.ts.map +1 -0
- package/dist/core/Diagnostics.js +308 -0
- package/dist/core/Diagnostics.js.map +1 -0
- package/dist/core/EternalGoal.d.ts +15 -0
- package/dist/core/EternalGoal.d.ts.map +1 -0
- package/dist/core/EternalGoal.js +67 -0
- package/dist/core/EternalGoal.js.map +1 -0
- package/dist/core/EternalLoop.d.ts +206 -0
- package/dist/core/EternalLoop.d.ts.map +1 -0
- package/dist/core/EternalLoop.js +595 -0
- package/dist/core/EternalLoop.js.map +1 -0
- package/dist/core/EternalRuntimeProjection.d.ts +39 -0
- package/dist/core/EternalRuntimeProjection.d.ts.map +1 -0
- package/dist/core/EternalRuntimeProjection.js +114 -0
- package/dist/core/EternalRuntimeProjection.js.map +1 -0
- package/dist/core/EternalRuntimeTelemetry.d.ts +63 -0
- package/dist/core/EternalRuntimeTelemetry.d.ts.map +1 -0
- package/dist/core/EternalRuntimeTelemetry.js +153 -0
- package/dist/core/EternalRuntimeTelemetry.js.map +1 -0
- package/dist/core/EternalSupervisor.d.ts +108 -0
- package/dist/core/EternalSupervisor.d.ts.map +1 -0
- package/dist/core/EternalSupervisor.js +259 -0
- package/dist/core/EternalSupervisor.js.map +1 -0
- package/dist/core/EventEmitter.d.ts +1325 -0
- package/dist/core/EventEmitter.d.ts.map +1 -0
- package/dist/core/EventEmitter.js +76 -0
- package/dist/core/EventEmitter.js.map +1 -0
- package/dist/core/ExecutionLease.d.ts +46 -0
- package/dist/core/ExecutionLease.d.ts.map +1 -0
- package/dist/core/ExecutionLease.js +123 -0
- package/dist/core/ExecutionLease.js.map +1 -0
- package/dist/core/ExecutionTraceMemory.d.ts +96 -0
- package/dist/core/ExecutionTraceMemory.d.ts.map +1 -0
- package/dist/core/ExecutionTraceMemory.js +243 -0
- package/dist/core/ExecutionTraceMemory.js.map +1 -0
- package/dist/core/FileLock.d.ts +108 -0
- package/dist/core/FileLock.d.ts.map +1 -0
- package/dist/core/FileLock.js +431 -0
- package/dist/core/FileLock.js.map +1 -0
- package/dist/core/HardeningPolicy.d.ts +85 -0
- package/dist/core/HardeningPolicy.d.ts.map +1 -0
- package/dist/core/HardeningPolicy.js +191 -0
- package/dist/core/HardeningPolicy.js.map +1 -0
- package/dist/core/HierarchicalContextManager.d.ts +83 -0
- package/dist/core/HierarchicalContextManager.d.ts.map +1 -0
- package/dist/core/HierarchicalContextManager.js +324 -0
- package/dist/core/HierarchicalContextManager.js.map +1 -0
- package/dist/core/ImportGraphEngine.d.ts +84 -0
- package/dist/core/ImportGraphEngine.d.ts.map +1 -0
- package/dist/core/ImportGraphEngine.js +253 -0
- package/dist/core/ImportGraphEngine.js.map +1 -0
- package/dist/core/IntegrationVerifyInjector.d.ts +76 -0
- package/dist/core/IntegrationVerifyInjector.d.ts.map +1 -0
- package/dist/core/IntegrationVerifyInjector.js +164 -0
- package/dist/core/IntegrationVerifyInjector.js.map +1 -0
- package/dist/core/IntuitionRuntime.d.ts +12 -0
- package/dist/core/IntuitionRuntime.d.ts.map +1 -0
- package/dist/core/IntuitionRuntime.js +137 -0
- package/dist/core/IntuitionRuntime.js.map +1 -0
- package/dist/core/JudgmentService.d.ts +45 -0
- package/dist/core/JudgmentService.d.ts.map +1 -0
- package/dist/core/JudgmentService.js +77 -0
- package/dist/core/JudgmentService.js.map +1 -0
- package/dist/core/LangfuseIntegration.d.ts +208 -0
- package/dist/core/LangfuseIntegration.d.ts.map +1 -0
- package/dist/core/LangfuseIntegration.js +611 -0
- package/dist/core/LangfuseIntegration.js.map +1 -0
- package/dist/core/LlmInputManifest.d.ts +40 -0
- package/dist/core/LlmInputManifest.d.ts.map +1 -0
- package/dist/core/LlmInputManifest.js +94 -0
- package/dist/core/LlmInputManifest.js.map +1 -0
- package/dist/core/LocalLlmGateway.d.ts +75 -0
- package/dist/core/LocalLlmGateway.d.ts.map +1 -0
- package/dist/core/LocalLlmGateway.js +389 -0
- package/dist/core/LocalLlmGateway.js.map +1 -0
- package/dist/core/LocalLlmGatewayServer.d.ts +38 -0
- package/dist/core/LocalLlmGatewayServer.d.ts.map +1 -0
- package/dist/core/LocalLlmGatewayServer.js +85 -0
- package/dist/core/LocalLlmGatewayServer.js.map +1 -0
- package/dist/core/Log.d.ts +97 -0
- package/dist/core/Log.d.ts.map +1 -0
- package/dist/core/Log.js +249 -0
- package/dist/core/Log.js.map +1 -0
- package/dist/core/LogMaintenance.d.ts +38 -0
- package/dist/core/LogMaintenance.d.ts.map +1 -0
- package/dist/core/LogMaintenance.js +239 -0
- package/dist/core/LogMaintenance.js.map +1 -0
- package/dist/core/MarketplaceService.d.ts +57 -0
- package/dist/core/MarketplaceService.d.ts.map +1 -0
- package/dist/core/MarketplaceService.js +982 -0
- package/dist/core/MarketplaceService.js.map +1 -0
- package/dist/core/McpClient.d.ts +93 -0
- package/dist/core/McpClient.d.ts.map +1 -0
- package/dist/core/McpClient.js +277 -0
- package/dist/core/McpClient.js.map +1 -0
- package/dist/core/MessageBus.d.ts +247 -0
- package/dist/core/MessageBus.d.ts.map +1 -0
- package/dist/core/MessageBus.js +852 -0
- package/dist/core/MessageBus.js.map +1 -0
- package/dist/core/Metrics.d.ts +50 -0
- package/dist/core/Metrics.d.ts.map +1 -0
- package/dist/core/Metrics.js +171 -0
- package/dist/core/Metrics.js.map +1 -0
- package/dist/core/MetricsRegistry.d.ts +47 -0
- package/dist/core/MetricsRegistry.d.ts.map +1 -0
- package/dist/core/MetricsRegistry.js +119 -0
- package/dist/core/MetricsRegistry.js.map +1 -0
- package/dist/core/ModeAudit.d.ts +87 -0
- package/dist/core/ModeAudit.d.ts.map +1 -0
- package/dist/core/ModeAudit.js +113 -0
- package/dist/core/ModeAudit.js.map +1 -0
- package/dist/core/ModeRuntimeProjection.d.ts +96 -0
- package/dist/core/ModeRuntimeProjection.d.ts.map +1 -0
- package/dist/core/ModeRuntimeProjection.js +216 -0
- package/dist/core/ModeRuntimeProjection.js.map +1 -0
- package/dist/core/ModeStore.d.ts +62 -0
- package/dist/core/ModeStore.d.ts.map +1 -0
- package/dist/core/ModeStore.js +77 -0
- package/dist/core/ModeStore.js.map +1 -0
- package/dist/core/ModeToolPolicy.d.ts +62 -0
- package/dist/core/ModeToolPolicy.d.ts.map +1 -0
- package/dist/core/ModeToolPolicy.js +145 -0
- package/dist/core/ModeToolPolicy.js.map +1 -0
- package/dist/core/ModeWorktreeService.d.ts +31 -0
- package/dist/core/ModeWorktreeService.d.ts.map +1 -0
- package/dist/core/ModeWorktreeService.js +116 -0
- package/dist/core/ModeWorktreeService.js.map +1 -0
- package/dist/core/OrchestrationTypes.d.ts +114 -0
- package/dist/core/OrchestrationTypes.d.ts.map +1 -0
- package/dist/core/OrchestrationTypes.js +2 -0
- package/dist/core/OrchestrationTypes.js.map +1 -0
- package/dist/core/PatternRecognitionEngine.d.ts +33 -0
- package/dist/core/PatternRecognitionEngine.d.ts.map +1 -0
- package/dist/core/PatternRecognitionEngine.js +82 -0
- package/dist/core/PatternRecognitionEngine.js.map +1 -0
- package/dist/core/PerformanceBaselineTracker.d.ts +28 -0
- package/dist/core/PerformanceBaselineTracker.d.ts.map +1 -0
- package/dist/core/PerformanceBaselineTracker.js +48 -0
- package/dist/core/PerformanceBaselineTracker.js.map +1 -0
- package/dist/core/PermissionStore.d.ts +14 -0
- package/dist/core/PermissionStore.d.ts.map +1 -0
- package/dist/core/PermissionStore.js +318 -0
- package/dist/core/PermissionStore.js.map +1 -0
- package/dist/core/PermissionSystem.d.ts +79 -0
- package/dist/core/PermissionSystem.d.ts.map +1 -0
- package/dist/core/PermissionSystem.js +380 -0
- package/dist/core/PermissionSystem.js.map +1 -0
- package/dist/core/PhasePolicy.d.ts +10 -0
- package/dist/core/PhasePolicy.d.ts.map +1 -0
- package/dist/core/PhasePolicy.js +15 -0
- package/dist/core/PhasePolicy.js.map +1 -0
- package/dist/core/PidRegistry.d.ts +58 -0
- package/dist/core/PidRegistry.d.ts.map +1 -0
- package/dist/core/PidRegistry.js +152 -0
- package/dist/core/PidRegistry.js.map +1 -0
- package/dist/core/ProcessIdleGuard.d.ts +76 -0
- package/dist/core/ProcessIdleGuard.d.ts.map +1 -0
- package/dist/core/ProcessIdleGuard.js +201 -0
- package/dist/core/ProcessIdleGuard.js.map +1 -0
- package/dist/core/ProcessOrphanCleaner.d.ts +37 -0
- package/dist/core/ProcessOrphanCleaner.d.ts.map +1 -0
- package/dist/core/ProcessOrphanCleaner.js +106 -0
- package/dist/core/ProcessOrphanCleaner.js.map +1 -0
- package/dist/core/ProcessSelfProtection.d.ts +45 -0
- package/dist/core/ProcessSelfProtection.d.ts.map +1 -0
- package/dist/core/ProcessSelfProtection.js +234 -0
- package/dist/core/ProcessSelfProtection.js.map +1 -0
- package/dist/core/ProjectBlueprint.d.ts +176 -0
- package/dist/core/ProjectBlueprint.d.ts.map +1 -0
- package/dist/core/ProjectBlueprint.js +542 -0
- package/dist/core/ProjectBlueprint.js.map +1 -0
- package/dist/core/ProjectContracts.d.ts +22 -0
- package/dist/core/ProjectContracts.d.ts.map +1 -0
- package/dist/core/ProjectContracts.js +97 -0
- package/dist/core/ProjectContracts.js.map +1 -0
- package/dist/core/ProjectRetentionPolicy.d.ts +31 -0
- package/dist/core/ProjectRetentionPolicy.d.ts.map +1 -0
- package/dist/core/ProjectRetentionPolicy.js +68 -0
- package/dist/core/ProjectRetentionPolicy.js.map +1 -0
- package/dist/core/ProjectRuntimeManager.d.ts +91 -0
- package/dist/core/ProjectRuntimeManager.d.ts.map +1 -0
- package/dist/core/ProjectRuntimeManager.js +458 -0
- package/dist/core/ProjectRuntimeManager.js.map +1 -0
- package/dist/core/ProjectRuntimeState.d.ts +122 -0
- package/dist/core/ProjectRuntimeState.d.ts.map +1 -0
- package/dist/core/ProjectRuntimeState.js +27 -0
- package/dist/core/ProjectRuntimeState.js.map +1 -0
- package/dist/core/ProxyConfig.d.ts +26 -0
- package/dist/core/ProxyConfig.d.ts.map +1 -0
- package/dist/core/ProxyConfig.js +121 -0
- package/dist/core/ProxyConfig.js.map +1 -0
- package/dist/core/RecoveryRecords.d.ts +29 -0
- package/dist/core/RecoveryRecords.d.ts.map +1 -0
- package/dist/core/RecoveryRecords.js +122 -0
- package/dist/core/RecoveryRecords.js.map +1 -0
- package/dist/core/RepairStrategyEngine.d.ts +94 -0
- package/dist/core/RepairStrategyEngine.d.ts.map +1 -0
- package/dist/core/RepairStrategyEngine.js +268 -0
- package/dist/core/RepairStrategyEngine.js.map +1 -0
- package/dist/core/ResourceBudgetService.d.ts +61 -0
- package/dist/core/ResourceBudgetService.d.ts.map +1 -0
- package/dist/core/ResourceBudgetService.js +257 -0
- package/dist/core/ResourceBudgetService.js.map +1 -0
- package/dist/core/ResumeManager.d.ts +18 -0
- package/dist/core/ResumeManager.d.ts.map +1 -0
- package/dist/core/ResumeManager.js +139 -0
- package/dist/core/ResumeManager.js.map +1 -0
- package/dist/core/RuntimeDiagnostics.d.ts +126 -0
- package/dist/core/RuntimeDiagnostics.d.ts.map +1 -0
- package/dist/core/RuntimeDiagnostics.js +367 -0
- package/dist/core/RuntimeDiagnostics.js.map +1 -0
- package/dist/core/RuntimeGuards.d.ts +16 -0
- package/dist/core/RuntimeGuards.d.ts.map +1 -0
- package/dist/core/RuntimeGuards.js +222 -0
- package/dist/core/RuntimeGuards.js.map +1 -0
- package/dist/core/RuntimeRecoveryController.d.ts +52 -0
- package/dist/core/RuntimeRecoveryController.d.ts.map +1 -0
- package/dist/core/RuntimeRecoveryController.js +156 -0
- package/dist/core/RuntimeRecoveryController.js.map +1 -0
- package/dist/core/ScheduledTaskManager.d.ts +110 -0
- package/dist/core/ScheduledTaskManager.d.ts.map +1 -0
- package/dist/core/ScheduledTaskManager.js +532 -0
- package/dist/core/ScheduledTaskManager.js.map +1 -0
- package/dist/core/ScratchpadReview.d.ts +22 -0
- package/dist/core/ScratchpadReview.d.ts.map +1 -0
- package/dist/core/ScratchpadReview.js +162 -0
- package/dist/core/ScratchpadReview.js.map +1 -0
- package/dist/core/SessionManager.d.ts +3 -0
- package/dist/core/SessionManager.d.ts.map +1 -0
- package/dist/core/SessionManager.js +2 -0
- package/dist/core/SessionManager.js.map +1 -0
- package/dist/core/SessionManagerRuntime.d.ts +3 -0
- package/dist/core/SessionManagerRuntime.d.ts.map +1 -0
- package/dist/core/SessionManagerRuntime.js +3 -0
- package/dist/core/SessionManagerRuntime.js.map +1 -0
- package/dist/core/SessionRuntime.d.ts +2 -0
- package/dist/core/SessionRuntime.d.ts.map +1 -0
- package/dist/core/SessionRuntime.js +2 -0
- package/dist/core/SessionRuntime.js.map +1 -0
- package/dist/core/SessionRuntimeState.d.ts +112 -0
- package/dist/core/SessionRuntimeState.d.ts.map +1 -0
- package/dist/core/SessionRuntimeState.js +250 -0
- package/dist/core/SessionRuntimeState.js.map +1 -0
- package/dist/core/SessionStateKeys.d.ts +138 -0
- package/dist/core/SessionStateKeys.d.ts.map +1 -0
- package/dist/core/SessionStateKeys.js +168 -0
- package/dist/core/SessionStateKeys.js.map +1 -0
- package/dist/core/SharedLedger.d.ts +98 -0
- package/dist/core/SharedLedger.d.ts.map +1 -0
- package/dist/core/SharedLedger.js +145 -0
- package/dist/core/SharedLedger.js.map +1 -0
- package/dist/core/SkillCatalog.d.ts +79 -0
- package/dist/core/SkillCatalog.d.ts.map +1 -0
- package/dist/core/SkillCatalog.js +473 -0
- package/dist/core/SkillCatalog.js.map +1 -0
- package/dist/core/SkillDefinitionService.d.ts +56 -0
- package/dist/core/SkillDefinitionService.d.ts.map +1 -0
- package/dist/core/SkillDefinitionService.js +144 -0
- package/dist/core/SkillDefinitionService.js.map +1 -0
- package/dist/core/SkillPhaseLoader.d.ts +21 -0
- package/dist/core/SkillPhaseLoader.d.ts.map +1 -0
- package/dist/core/SkillPhaseLoader.js +85 -0
- package/dist/core/SkillPhaseLoader.js.map +1 -0
- package/dist/core/SkillSelectionPolicy.d.ts +7 -0
- package/dist/core/SkillSelectionPolicy.d.ts.map +1 -0
- package/dist/core/SkillSelectionPolicy.js +10 -0
- package/dist/core/SkillSelectionPolicy.js.map +1 -0
- package/dist/core/SlidevServerManager.d.ts +51 -0
- package/dist/core/SlidevServerManager.d.ts.map +1 -0
- package/dist/core/SlidevServerManager.js +200 -0
- package/dist/core/SlidevServerManager.js.map +1 -0
- package/dist/core/SoulExtractor.d.ts +34 -0
- package/dist/core/SoulExtractor.d.ts.map +1 -0
- package/dist/core/SoulExtractor.js +100 -0
- package/dist/core/SoulExtractor.js.map +1 -0
- package/dist/core/SpecFirstPipeline.d.ts +77 -0
- package/dist/core/SpecFirstPipeline.d.ts.map +1 -0
- package/dist/core/SpecFirstPipeline.js +95 -0
- package/dist/core/SpecFirstPipeline.js.map +1 -0
- package/dist/core/SpeculativeExecutionController.d.ts +64 -0
- package/dist/core/SpeculativeExecutionController.d.ts.map +1 -0
- package/dist/core/SpeculativeExecutionController.js +263 -0
- package/dist/core/SpeculativeExecutionController.js.map +1 -0
- package/dist/core/SpeculativeOrchestrationPlanner.d.ts +40 -0
- package/dist/core/SpeculativeOrchestrationPlanner.d.ts.map +1 -0
- package/dist/core/SpeculativeOrchestrationPlanner.js +186 -0
- package/dist/core/SpeculativeOrchestrationPlanner.js.map +1 -0
- package/dist/core/StateSemantics.d.ts +238 -0
- package/dist/core/StateSemantics.d.ts.map +1 -0
- package/dist/core/StateSemantics.js +729 -0
- package/dist/core/StateSemantics.js.map +1 -0
- package/dist/core/SystemBrowserOpener.d.ts +25 -0
- package/dist/core/SystemBrowserOpener.d.ts.map +1 -0
- package/dist/core/SystemBrowserOpener.js +154 -0
- package/dist/core/SystemBrowserOpener.js.map +1 -0
- package/dist/core/SystemMessageSlot.d.ts +48 -0
- package/dist/core/SystemMessageSlot.d.ts.map +1 -0
- package/dist/core/SystemMessageSlot.js +130 -0
- package/dist/core/SystemMessageSlot.js.map +1 -0
- package/dist/core/TaintFlowEngine.d.ts +37 -0
- package/dist/core/TaintFlowEngine.d.ts.map +1 -0
- package/dist/core/TaintFlowEngine.js +200 -0
- package/dist/core/TaintFlowEngine.js.map +1 -0
- package/dist/core/TaskBoard.d.ts +243 -0
- package/dist/core/TaskBoard.d.ts.map +1 -0
- package/dist/core/TaskBoard.js +955 -0
- package/dist/core/TaskBoard.js.map +1 -0
- package/dist/core/TaskContextEnricher.d.ts +37 -0
- package/dist/core/TaskContextEnricher.d.ts.map +1 -0
- package/dist/core/TaskContextEnricher.js +147 -0
- package/dist/core/TaskContextEnricher.js.map +1 -0
- package/dist/core/TaskDisplayState.d.ts +21 -0
- package/dist/core/TaskDisplayState.d.ts.map +1 -0
- package/dist/core/TaskDisplayState.js +29 -0
- package/dist/core/TaskDisplayState.js.map +1 -0
- package/dist/core/TaskPriorityEngine.d.ts +31 -0
- package/dist/core/TaskPriorityEngine.d.ts.map +1 -0
- package/dist/core/TaskPriorityEngine.js +122 -0
- package/dist/core/TaskPriorityEngine.js.map +1 -0
- package/dist/core/TeamCommunicationGuard.d.ts +83 -0
- package/dist/core/TeamCommunicationGuard.d.ts.map +1 -0
- package/dist/core/TeamCommunicationGuard.js +221 -0
- package/dist/core/TeamCommunicationGuard.js.map +1 -0
- package/dist/core/TeamCommunicationService.d.ts +55 -0
- package/dist/core/TeamCommunicationService.d.ts.map +1 -0
- package/dist/core/TeamCommunicationService.js +178 -0
- package/dist/core/TeamCommunicationService.js.map +1 -0
- package/dist/core/TeamMailbox.d.ts +203 -0
- package/dist/core/TeamMailbox.d.ts.map +1 -0
- package/dist/core/TeamMailbox.js +729 -0
- package/dist/core/TeamMailbox.js.map +1 -0
- package/dist/core/TeamProtocol.d.ts +70 -0
- package/dist/core/TeamProtocol.d.ts.map +1 -0
- package/dist/core/TeamProtocol.js +75 -0
- package/dist/core/TeamProtocol.js.map +1 -0
- package/dist/core/TeamRequestTracker.d.ts +59 -0
- package/dist/core/TeamRequestTracker.d.ts.map +1 -0
- package/dist/core/TeamRequestTracker.js +212 -0
- package/dist/core/TeamRequestTracker.js.map +1 -0
- package/dist/core/TeamView.d.ts +34 -0
- package/dist/core/TeamView.d.ts.map +1 -0
- package/dist/core/TeamView.js +109 -0
- package/dist/core/TeamView.js.map +1 -0
- package/dist/core/TempDownloadRegistry.d.ts +44 -0
- package/dist/core/TempDownloadRegistry.d.ts.map +1 -0
- package/dist/core/TempDownloadRegistry.js +150 -0
- package/dist/core/TempDownloadRegistry.js.map +1 -0
- package/dist/core/TestRunnerAdapter.d.ts +31 -0
- package/dist/core/TestRunnerAdapter.d.ts.map +1 -0
- package/dist/core/TestRunnerAdapter.js +203 -0
- package/dist/core/TestRunnerAdapter.js.map +1 -0
- package/dist/core/ThinkContent.d.ts +19 -0
- package/dist/core/ThinkContent.d.ts.map +1 -0
- package/dist/core/ThinkContent.js +99 -0
- package/dist/core/ThinkContent.js.map +1 -0
- package/dist/core/TiktokenCache.d.ts +32 -0
- package/dist/core/TiktokenCache.d.ts.map +1 -0
- package/dist/core/TiktokenCache.js +188 -0
- package/dist/core/TiktokenCache.js.map +1 -0
- package/dist/core/TokenTracker.d.ts +64 -0
- package/dist/core/TokenTracker.d.ts.map +1 -0
- package/dist/core/TokenTracker.js +146 -0
- package/dist/core/TokenTracker.js.map +1 -0
- package/dist/core/ToolPruner.d.ts +73 -0
- package/dist/core/ToolPruner.d.ts.map +1 -0
- package/dist/core/ToolPruner.js +297 -0
- package/dist/core/ToolPruner.js.map +1 -0
- package/dist/core/Tracing.d.ts +74 -0
- package/dist/core/Tracing.d.ts.map +1 -0
- package/dist/core/Tracing.js +171 -0
- package/dist/core/Tracing.js.map +1 -0
- package/dist/core/TurnCoordinator.d.ts +12 -0
- package/dist/core/TurnCoordinator.d.ts.map +1 -0
- package/dist/core/TurnCoordinator.js +112 -0
- package/dist/core/TurnCoordinator.js.map +1 -0
- package/dist/core/UpdateChecker.d.ts +32 -0
- package/dist/core/UpdateChecker.d.ts.map +1 -0
- package/dist/core/UpdateChecker.js +129 -0
- package/dist/core/UpdateChecker.js.map +1 -0
- package/dist/core/UserAgent.d.ts +5 -0
- package/dist/core/UserAgent.d.ts.map +1 -0
- package/dist/core/UserAgent.js +34 -0
- package/dist/core/UserAgent.js.map +1 -0
- package/dist/core/VerificationPipeline.d.ts +47 -0
- package/dist/core/VerificationPipeline.d.ts.map +1 -0
- package/dist/core/VerificationPipeline.js +144 -0
- package/dist/core/VerificationPipeline.js.map +1 -0
- package/dist/core/WorkNoteManager.d.ts +94 -0
- package/dist/core/WorkNoteManager.d.ts.map +1 -0
- package/dist/core/WorkNoteManager.js +273 -0
- package/dist/core/WorkNoteManager.js.map +1 -0
- package/dist/core/WorkerProcessRunner.d.ts +330 -0
- package/dist/core/WorkerProcessRunner.d.ts.map +1 -0
- package/dist/core/WorkerProcessRunner.js +903 -0
- package/dist/core/WorkerProcessRunner.js.map +1 -0
- package/dist/core/Workspace.d.ts +85 -0
- package/dist/core/Workspace.d.ts.map +1 -0
- package/dist/core/Workspace.js +151 -0
- package/dist/core/Workspace.js.map +1 -0
- package/dist/core/WorktreeManager.d.ts +63 -0
- package/dist/core/WorktreeManager.d.ts.map +1 -0
- package/dist/core/WorktreeManager.js +147 -0
- package/dist/core/WorktreeManager.js.map +1 -0
- package/dist/core/WorktreeService.d.ts +104 -0
- package/dist/core/WorktreeService.d.ts.map +1 -0
- package/dist/core/WorktreeService.js +335 -0
- package/dist/core/WorktreeService.js.map +1 -0
- package/dist/core/blackboard/BlackboardGraph.d.ts +146 -0
- package/dist/core/blackboard/BlackboardGraph.d.ts.map +1 -0
- package/dist/core/blackboard/BlackboardGraph.js +793 -0
- package/dist/core/blackboard/BlackboardGraph.js.map +1 -0
- package/dist/core/blackboard/CompletionChecker.d.ts +39 -0
- package/dist/core/blackboard/CompletionChecker.d.ts.map +1 -0
- package/dist/core/blackboard/CompletionChecker.js +179 -0
- package/dist/core/blackboard/CompletionChecker.js.map +1 -0
- package/dist/core/blackboard/ContractFormatParser.d.ts +67 -0
- package/dist/core/blackboard/ContractFormatParser.d.ts.map +1 -0
- package/dist/core/blackboard/ContractFormatParser.js +212 -0
- package/dist/core/blackboard/ContractFormatParser.js.map +1 -0
- package/dist/core/blackboard/DispatcherEngine.d.ts +33 -0
- package/dist/core/blackboard/DispatcherEngine.d.ts.map +1 -0
- package/dist/core/blackboard/DispatcherEngine.js +135 -0
- package/dist/core/blackboard/DispatcherEngine.js.map +1 -0
- package/dist/core/blackboard/GraphBridge.d.ts +52 -0
- package/dist/core/blackboard/GraphBridge.d.ts.map +1 -0
- package/dist/core/blackboard/GraphBridge.js +166 -0
- package/dist/core/blackboard/GraphBridge.js.map +1 -0
- package/dist/core/blackboard/GraphStore.d.ts +46 -0
- package/dist/core/blackboard/GraphStore.d.ts.map +1 -0
- package/dist/core/blackboard/GraphStore.js +237 -0
- package/dist/core/blackboard/GraphStore.js.map +1 -0
- package/dist/core/blackboard/WorkerOutputParser.d.ts +25 -0
- package/dist/core/blackboard/WorkerOutputParser.d.ts.map +1 -0
- package/dist/core/blackboard/WorkerOutputParser.js +191 -0
- package/dist/core/blackboard/WorkerOutputParser.js.map +1 -0
- package/dist/core/blackboard/schemas.d.ts +137 -0
- package/dist/core/blackboard/schemas.d.ts.map +1 -0
- package/dist/core/blackboard/schemas.js +102 -0
- package/dist/core/blackboard/schemas.js.map +1 -0
- package/dist/core/blackboard/types.d.ts +115 -0
- package/dist/core/blackboard/types.d.ts.map +1 -0
- package/dist/core/blackboard/types.js +31 -0
- package/dist/core/blackboard/types.js.map +1 -0
- package/dist/core/canvas/CanvasStore.d.ts +64 -0
- package/dist/core/canvas/CanvasStore.d.ts.map +1 -0
- package/dist/core/canvas/CanvasStore.js +193 -0
- package/dist/core/canvas/CanvasStore.js.map +1 -0
- package/dist/core/checkpoint/CheckpointBoundary.d.ts +36 -0
- package/dist/core/checkpoint/CheckpointBoundary.d.ts.map +1 -0
- package/dist/core/checkpoint/CheckpointBoundary.js +147 -0
- package/dist/core/checkpoint/CheckpointBoundary.js.map +1 -0
- package/dist/core/checkpoint/CheckpointPrompt.d.ts +15 -0
- package/dist/core/checkpoint/CheckpointPrompt.d.ts.map +1 -0
- package/dist/core/checkpoint/CheckpointPrompt.js +76 -0
- package/dist/core/checkpoint/CheckpointPrompt.js.map +1 -0
- package/dist/core/checkpoint/CheckpointService.d.ts +55 -0
- package/dist/core/checkpoint/CheckpointService.d.ts.map +1 -0
- package/dist/core/checkpoint/CheckpointService.js +168 -0
- package/dist/core/checkpoint/CheckpointService.js.map +1 -0
- package/dist/core/checkpoint/CheckpointWriter.d.ts +38 -0
- package/dist/core/checkpoint/CheckpointWriter.d.ts.map +1 -0
- package/dist/core/checkpoint/CheckpointWriter.js +193 -0
- package/dist/core/checkpoint/CheckpointWriter.js.map +1 -0
- package/dist/core/checkpoint/ContextRebuild.d.ts +52 -0
- package/dist/core/checkpoint/ContextRebuild.d.ts.map +1 -0
- package/dist/core/checkpoint/ContextRebuild.js +213 -0
- package/dist/core/checkpoint/ContextRebuild.js.map +1 -0
- package/dist/core/checkpoint/MicroCompact.d.ts +32 -0
- package/dist/core/checkpoint/MicroCompact.d.ts.map +1 -0
- package/dist/core/checkpoint/MicroCompact.js +109 -0
- package/dist/core/checkpoint/MicroCompact.js.map +1 -0
- package/dist/core/checkpoint/index.d.ts +11 -0
- package/dist/core/checkpoint/index.d.ts.map +1 -0
- package/dist/core/checkpoint/index.js +11 -0
- package/dist/core/checkpoint/index.js.map +1 -0
- package/dist/core/checkpoint/types.d.ts +47 -0
- package/dist/core/checkpoint/types.d.ts.map +1 -0
- package/dist/core/checkpoint/types.js +24 -0
- package/dist/core/checkpoint/types.js.map +1 -0
- package/dist/core/compress/BlackboardCompressor.d.ts +54 -0
- package/dist/core/compress/BlackboardCompressor.d.ts.map +1 -0
- package/dist/core/compress/BlackboardCompressor.js +342 -0
- package/dist/core/compress/BlackboardCompressor.js.map +1 -0
- package/dist/core/compress/CompressionPipeline.d.ts +93 -0
- package/dist/core/compress/CompressionPipeline.d.ts.map +1 -0
- package/dist/core/compress/CompressionPipeline.js +1143 -0
- package/dist/core/compress/CompressionPipeline.js.map +1 -0
- package/dist/core/compress/CompressionTypes.d.ts +103 -0
- package/dist/core/compress/CompressionTypes.d.ts.map +1 -0
- package/dist/core/compress/CompressionTypes.js +5 -0
- package/dist/core/compress/CompressionTypes.js.map +1 -0
- package/dist/core/compress/ContextDAG.d.ts +149 -0
- package/dist/core/compress/ContextDAG.d.ts.map +1 -0
- package/dist/core/compress/ContextDAG.js +323 -0
- package/dist/core/compress/ContextDAG.js.map +1 -0
- package/dist/core/compress/ContextTokenCalculator.d.ts +46 -0
- package/dist/core/compress/ContextTokenCalculator.d.ts.map +1 -0
- package/dist/core/compress/ContextTokenCalculator.js +216 -0
- package/dist/core/compress/ContextTokenCalculator.js.map +1 -0
- package/dist/core/compress/MessageByteTruncator.d.ts +65 -0
- package/dist/core/compress/MessageByteTruncator.d.ts.map +1 -0
- package/dist/core/compress/MessageByteTruncator.js +178 -0
- package/dist/core/compress/MessageByteTruncator.js.map +1 -0
- package/dist/core/constants.d.ts +67 -0
- package/dist/core/constants.d.ts.map +1 -0
- package/dist/core/constants.js +67 -0
- package/dist/core/constants.js.map +1 -0
- package/dist/core/errors.d.ts +9 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/errors.js +20 -0
- package/dist/core/errors.js.map +1 -0
- package/dist/core/git/GitEnv.d.ts +10 -0
- package/dist/core/git/GitEnv.d.ts.map +1 -0
- package/dist/core/git/GitEnv.js +47 -0
- package/dist/core/git/GitEnv.js.map +1 -0
- package/dist/core/git/GitPlatformApi.d.ts +90 -0
- package/dist/core/git/GitPlatformApi.d.ts.map +1 -0
- package/dist/core/git/GitPlatformApi.js +552 -0
- package/dist/core/git/GitPlatformApi.js.map +1 -0
- package/dist/core/git/RealGitService.d.ts +184 -0
- package/dist/core/git/RealGitService.d.ts.map +1 -0
- package/dist/core/git/RealGitService.js +430 -0
- package/dist/core/git/RealGitService.js.map +1 -0
- package/dist/core/hooks/executor.d.ts +51 -0
- package/dist/core/hooks/executor.d.ts.map +1 -0
- package/dist/core/hooks/executor.js +317 -0
- package/dist/core/hooks/executor.js.map +1 -0
- package/dist/core/hooks/index.d.ts +9 -0
- package/dist/core/hooks/index.d.ts.map +1 -0
- package/dist/core/hooks/index.js +12 -0
- package/dist/core/hooks/index.js.map +1 -0
- package/dist/core/hooks/registry.d.ts +71 -0
- package/dist/core/hooks/registry.d.ts.map +1 -0
- package/dist/core/hooks/registry.js +231 -0
- package/dist/core/hooks/registry.js.map +1 -0
- package/dist/core/hooks/session_hooks.d.ts +54 -0
- package/dist/core/hooks/session_hooks.d.ts.map +1 -0
- package/dist/core/hooks/session_hooks.js +104 -0
- package/dist/core/hooks/session_hooks.js.map +1 -0
- package/dist/core/hooks/types.d.ts +136 -0
- package/dist/core/hooks/types.d.ts.map +1 -0
- package/dist/core/hooks/types.js +49 -0
- package/dist/core/hooks/types.js.map +1 -0
- package/dist/core/index.d.ts +23 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +22 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/ipc/IPCDrainQueue.d.ts +58 -0
- package/dist/core/ipc/IPCDrainQueue.d.ts.map +1 -0
- package/dist/core/ipc/IPCDrainQueue.js +166 -0
- package/dist/core/ipc/IPCDrainQueue.js.map +1 -0
- package/dist/core/mcp-share/McpBundle.d.ts +43 -0
- package/dist/core/mcp-share/McpBundle.d.ts.map +1 -0
- package/dist/core/mcp-share/McpBundle.js +100 -0
- package/dist/core/mcp-share/McpBundle.js.map +1 -0
- package/dist/core/mcp-share/McpShare.d.ts +110 -0
- package/dist/core/mcp-share/McpShare.d.ts.map +1 -0
- package/dist/core/mcp-share/McpShare.js +311 -0
- package/dist/core/mcp-share/McpShare.js.map +1 -0
- package/dist/core/plugins/PluginManifest.d.ts +128 -0
- package/dist/core/plugins/PluginManifest.d.ts.map +1 -0
- package/dist/core/plugins/PluginManifest.js +166 -0
- package/dist/core/plugins/PluginManifest.js.map +1 -0
- package/dist/core/plugins/PluginStore.d.ts +76 -0
- package/dist/core/plugins/PluginStore.d.ts.map +1 -0
- package/dist/core/plugins/PluginStore.js +511 -0
- package/dist/core/plugins/PluginStore.js.map +1 -0
- package/dist/core/session/SessionCleanup.d.ts +15 -0
- package/dist/core/session/SessionCleanup.d.ts.map +1 -0
- package/dist/core/session/SessionCleanup.js +24 -0
- package/dist/core/session/SessionCleanup.js.map +1 -0
- package/dist/core/session/SessionFactory.d.ts +14 -0
- package/dist/core/session/SessionFactory.d.ts.map +1 -0
- package/dist/core/session/SessionFactory.js +15 -0
- package/dist/core/session/SessionFactory.js.map +1 -0
- package/dist/core/session/SessionFork.d.ts +31 -0
- package/dist/core/session/SessionFork.d.ts.map +1 -0
- package/dist/core/session/SessionFork.js +78 -0
- package/dist/core/session/SessionFork.js.map +1 -0
- package/dist/core/session/SessionInitialization.d.ts +23 -0
- package/dist/core/session/SessionInitialization.d.ts.map +1 -0
- package/dist/core/session/SessionInitialization.js +55 -0
- package/dist/core/session/SessionInitialization.js.map +1 -0
- package/dist/core/session/SessionStateSync.d.ts +14 -0
- package/dist/core/session/SessionStateSync.d.ts.map +1 -0
- package/dist/core/session/SessionStateSync.js +23 -0
- package/dist/core/session/SessionStateSync.js.map +1 -0
- package/dist/core/session/TurnCoordinator.d.ts +3 -0
- package/dist/core/session/TurnCoordinator.d.ts.map +1 -0
- package/dist/core/session/TurnCoordinator.js +2 -0
- package/dist/core/session/TurnCoordinator.js.map +1 -0
- package/dist/core/terminalRestore.d.ts +36 -0
- package/dist/core/terminalRestore.d.ts.map +1 -0
- package/dist/core/terminalRestore.js +52 -0
- package/dist/core/terminalRestore.js.map +1 -0
- package/dist/core/transport/LocalTransport.d.ts +11 -0
- package/dist/core/transport/LocalTransport.d.ts.map +1 -0
- package/dist/core/transport/LocalTransport.js +20 -0
- package/dist/core/transport/LocalTransport.js.map +1 -0
- package/dist/core/transport/RemoteWorkerRegistry.d.ts +25 -0
- package/dist/core/transport/RemoteWorkerRegistry.d.ts.map +1 -0
- package/dist/core/transport/RemoteWorkerRegistry.js +77 -0
- package/dist/core/transport/RemoteWorkerRegistry.js.map +1 -0
- package/dist/core/transport/Transport.d.ts +18 -0
- package/dist/core/transport/Transport.d.ts.map +1 -0
- package/dist/core/transport/Transport.js +17 -0
- package/dist/core/transport/Transport.js.map +1 -0
- package/dist/core/transport/WebSocketTransport.d.ts +41 -0
- package/dist/core/transport/WebSocketTransport.d.ts.map +1 -0
- package/dist/core/transport/WebSocketTransport.js +124 -0
- package/dist/core/transport/WebSocketTransport.js.map +1 -0
- package/dist/core/verify/BughuntVerificationRunner.d.ts +45 -0
- package/dist/core/verify/BughuntVerificationRunner.d.ts.map +1 -0
- package/dist/core/verify/BughuntVerificationRunner.js +109 -0
- package/dist/core/verify/BughuntVerificationRunner.js.map +1 -0
- package/dist/core/verify/TargetServiceManager.d.ts +24 -0
- package/dist/core/verify/TargetServiceManager.d.ts.map +1 -0
- package/dist/core/verify/TargetServiceManager.js +115 -0
- package/dist/core/verify/TargetServiceManager.js.map +1 -0
- package/dist/core/workflow/ExecutionGraph.d.ts +83 -0
- package/dist/core/workflow/ExecutionGraph.d.ts.map +1 -0
- package/dist/core/workflow/ExecutionGraph.js +275 -0
- package/dist/core/workflow/ExecutionGraph.js.map +1 -0
- package/dist/core/workflow/ScheduleTriggerSync.d.ts +22 -0
- package/dist/core/workflow/ScheduleTriggerSync.d.ts.map +1 -0
- package/dist/core/workflow/ScheduleTriggerSync.js +141 -0
- package/dist/core/workflow/ScheduleTriggerSync.js.map +1 -0
- package/dist/core/workflow/VariableResolver.d.ts +83 -0
- package/dist/core/workflow/VariableResolver.d.ts.map +1 -0
- package/dist/core/workflow/VariableResolver.js +277 -0
- package/dist/core/workflow/VariableResolver.js.map +1 -0
- package/dist/core/workflow/WorkflowAnalyzer.d.ts +40 -0
- package/dist/core/workflow/WorkflowAnalyzer.d.ts.map +1 -0
- package/dist/core/workflow/WorkflowAnalyzer.js +381 -0
- package/dist/core/workflow/WorkflowAnalyzer.js.map +1 -0
- package/dist/core/workflow/WorkflowEngine.d.ts +158 -0
- package/dist/core/workflow/WorkflowEngine.d.ts.map +1 -0
- package/dist/core/workflow/WorkflowEngine.js +1249 -0
- package/dist/core/workflow/WorkflowEngine.js.map +1 -0
- package/dist/core/workflow/WorkflowManager.d.ts +129 -0
- package/dist/core/workflow/WorkflowManager.d.ts.map +1 -0
- package/dist/core/workflow/WorkflowManager.js +525 -0
- package/dist/core/workflow/WorkflowManager.js.map +1 -0
- package/dist/core/workflow/executors/AgentNodeExecutor.d.ts +21 -0
- package/dist/core/workflow/executors/AgentNodeExecutor.d.ts.map +1 -0
- package/dist/core/workflow/executors/AgentNodeExecutor.js +44 -0
- package/dist/core/workflow/executors/AgentNodeExecutor.js.map +1 -0
- package/dist/core/workflow/executors/BaseNodeExecutor.d.ts +24 -0
- package/dist/core/workflow/executors/BaseNodeExecutor.d.ts.map +1 -0
- package/dist/core/workflow/executors/BaseNodeExecutor.js +30 -0
- package/dist/core/workflow/executors/BaseNodeExecutor.js.map +1 -0
- package/dist/core/workflow/executors/ConditionNodeExecutor.d.ts +25 -0
- package/dist/core/workflow/executors/ConditionNodeExecutor.d.ts.map +1 -0
- package/dist/core/workflow/executors/ConditionNodeExecutor.js +118 -0
- package/dist/core/workflow/executors/ConditionNodeExecutor.js.map +1 -0
- package/dist/core/workflow/executors/DataNodeExecutor.d.ts +26 -0
- package/dist/core/workflow/executors/DataNodeExecutor.d.ts.map +1 -0
- package/dist/core/workflow/executors/DataNodeExecutor.js +315 -0
- package/dist/core/workflow/executors/DataNodeExecutor.js.map +1 -0
- package/dist/core/workflow/executors/ParallelNodeExecutor.d.ts +17 -0
- package/dist/core/workflow/executors/ParallelNodeExecutor.d.ts.map +1 -0
- package/dist/core/workflow/executors/ParallelNodeExecutor.js +58 -0
- package/dist/core/workflow/executors/ParallelNodeExecutor.js.map +1 -0
- package/dist/core/workflow/executors/ToolNodeExecutor.d.ts +16 -0
- package/dist/core/workflow/executors/ToolNodeExecutor.d.ts.map +1 -0
- package/dist/core/workflow/executors/ToolNodeExecutor.js +83 -0
- package/dist/core/workflow/executors/ToolNodeExecutor.js.map +1 -0
- package/dist/core/workflow/expressionEvaluator.d.ts +27 -0
- package/dist/core/workflow/expressionEvaluator.d.ts.map +1 -0
- package/dist/core/workflow/expressionEvaluator.js +35 -0
- package/dist/core/workflow/expressionEvaluator.js.map +1 -0
- package/dist/core/workflow/safeExpressionEvaluator.d.ts +28 -0
- package/dist/core/workflow/safeExpressionEvaluator.d.ts.map +1 -0
- package/dist/core/workflow/safeExpressionEvaluator.js +298 -0
- package/dist/core/workflow/safeExpressionEvaluator.js.map +1 -0
- package/dist/core/workflow/types.d.ts +258 -0
- package/dist/core/workflow/types.d.ts.map +1 -0
- package/dist/core/workflow/types.js +7 -0
- package/dist/core/workflow/types.js.map +1 -0
- package/dist/core/workflow/variableScope.d.ts +20 -0
- package/dist/core/workflow/variableScope.d.ts.map +1 -0
- package/dist/core/workflow/variableScope.js +42 -0
- package/dist/core/workflow/variableScope.js.map +1 -0
- package/dist/facade/AgentLoop.d.ts +91 -0
- package/dist/facade/AgentLoop.d.ts.map +1 -0
- package/dist/facade/AgentLoop.js +140 -0
- package/dist/facade/AgentLoop.js.map +1 -0
- package/dist/i18n.d.ts +871 -0
- package/dist/i18n.d.ts.map +1 -0
- package/dist/i18n.js +1912 -0
- package/dist/i18n.js.map +1 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +29 -0
- package/dist/index.js.map +1 -0
- package/dist/llm/AnthropicContentGenerator.d.ts +66 -0
- package/dist/llm/AnthropicContentGenerator.d.ts.map +1 -0
- package/dist/llm/AnthropicContentGenerator.js +973 -0
- package/dist/llm/AnthropicContentGenerator.js.map +1 -0
- package/dist/llm/AnthropicToolSchema.d.ts +4 -0
- package/dist/llm/AnthropicToolSchema.d.ts.map +1 -0
- package/dist/llm/AnthropicToolSchema.js +179 -0
- package/dist/llm/AnthropicToolSchema.js.map +1 -0
- package/dist/llm/CircuitBreaker.d.ts +77 -0
- package/dist/llm/CircuitBreaker.d.ts.map +1 -0
- package/dist/llm/CircuitBreaker.js +185 -0
- package/dist/llm/CircuitBreaker.js.map +1 -0
- package/dist/llm/Client.d.ts +59 -0
- package/dist/llm/Client.d.ts.map +1 -0
- package/dist/llm/Client.js +174 -0
- package/dist/llm/Client.js.map +1 -0
- package/dist/llm/ContentGenerationPipeline.d.ts +104 -0
- package/dist/llm/ContentGenerationPipeline.d.ts.map +1 -0
- package/dist/llm/ContentGenerationPipeline.js +85 -0
- package/dist/llm/ContentGenerationPipeline.js.map +1 -0
- package/dist/llm/ContentGenerator.d.ts +137 -0
- package/dist/llm/ContentGenerator.d.ts.map +1 -0
- package/dist/llm/ContentGenerator.js +49 -0
- package/dist/llm/ContentGenerator.js.map +1 -0
- package/dist/llm/CostService.d.ts +121 -0
- package/dist/llm/CostService.d.ts.map +1 -0
- package/dist/llm/CostService.js +287 -0
- package/dist/llm/CostService.js.map +1 -0
- package/dist/llm/LoggingContentGenerator.d.ts +25 -0
- package/dist/llm/LoggingContentGenerator.d.ts.map +1 -0
- package/dist/llm/LoggingContentGenerator.js +82 -0
- package/dist/llm/LoggingContentGenerator.js.map +1 -0
- package/dist/llm/ModelGateway.d.ts +88 -0
- package/dist/llm/ModelGateway.d.ts.map +1 -0
- package/dist/llm/ModelGateway.js +261 -0
- package/dist/llm/ModelGateway.js.map +1 -0
- package/dist/llm/ModelsDevRegistry.d.ts +159 -0
- package/dist/llm/ModelsDevRegistry.d.ts.map +1 -0
- package/dist/llm/ModelsDevRegistry.js +301 -0
- package/dist/llm/ModelsDevRegistry.js.map +1 -0
- package/dist/llm/OpenAIContentGenerator.d.ts +57 -0
- package/dist/llm/OpenAIContentGenerator.d.ts.map +1 -0
- package/dist/llm/OpenAIContentGenerator.js +644 -0
- package/dist/llm/OpenAIContentGenerator.js.map +1 -0
- package/dist/llm/RetryEngine.d.ts +89 -0
- package/dist/llm/RetryEngine.d.ts.map +1 -0
- package/dist/llm/RetryEngine.js +121 -0
- package/dist/llm/RetryEngine.js.map +1 -0
- package/dist/llm/StreamingToolCallParser.d.ts +113 -0
- package/dist/llm/StreamingToolCallParser.d.ts.map +1 -0
- package/dist/llm/StreamingToolCallParser.js +294 -0
- package/dist/llm/StreamingToolCallParser.js.map +1 -0
- package/dist/llm/VercelAIContentGenerator.d.ts +71 -0
- package/dist/llm/VercelAIContentGenerator.d.ts.map +1 -0
- package/dist/llm/VercelAIContentGenerator.js +471 -0
- package/dist/llm/VercelAIContentGenerator.js.map +1 -0
- package/dist/llm/errors.d.ts +44 -0
- package/dist/llm/errors.d.ts.map +1 -0
- package/dist/llm/errors.js +713 -0
- package/dist/llm/errors.js.map +1 -0
- package/dist/llm/http_dispatcher.d.ts +51 -0
- package/dist/llm/http_dispatcher.d.ts.map +1 -0
- package/dist/llm/http_dispatcher.js +151 -0
- package/dist/llm/http_dispatcher.js.map +1 -0
- package/dist/llm/image_blob_store.d.ts +8 -0
- package/dist/llm/image_blob_store.d.ts.map +1 -0
- package/dist/llm/image_blob_store.js +135 -0
- package/dist/llm/image_blob_store.js.map +1 -0
- package/dist/llm/local_vision_fallback.d.ts +37 -0
- package/dist/llm/local_vision_fallback.d.ts.map +1 -0
- package/dist/llm/local_vision_fallback.js +296 -0
- package/dist/llm/local_vision_fallback.js.map +1 -0
- package/dist/llm/message_sanitizer.d.ts +109 -0
- package/dist/llm/message_sanitizer.d.ts.map +1 -0
- package/dist/llm/message_sanitizer.js +536 -0
- package/dist/llm/message_sanitizer.js.map +1 -0
- package/dist/llm/model_capabilities.d.ts +131 -0
- package/dist/llm/model_capabilities.d.ts.map +1 -0
- package/dist/llm/model_capabilities.js +484 -0
- package/dist/llm/model_capabilities.js.map +1 -0
- package/dist/llm/model_capability_config.d.ts +19 -0
- package/dist/llm/model_capability_config.d.ts.map +1 -0
- package/dist/llm/model_capability_config.js +16 -0
- package/dist/llm/model_capability_config.js.map +1 -0
- package/dist/llm/promptCacheKey.d.ts +27 -0
- package/dist/llm/promptCacheKey.d.ts.map +1 -0
- package/dist/llm/promptCacheKey.js +53 -0
- package/dist/llm/promptCacheKey.js.map +1 -0
- package/dist/llm/provider_runtime.d.ts +64 -0
- package/dist/llm/provider_runtime.d.ts.map +1 -0
- package/dist/llm/provider_runtime.js +181 -0
- package/dist/llm/provider_runtime.js.map +1 -0
- package/dist/llm/providers/anthropic.d.ts +7 -0
- package/dist/llm/providers/anthropic.d.ts.map +1 -0
- package/dist/llm/providers/anthropic.js +12 -0
- package/dist/llm/providers/anthropic.js.map +1 -0
- package/dist/llm/providers/bedrock.d.ts +7 -0
- package/dist/llm/providers/bedrock.d.ts.map +1 -0
- package/dist/llm/providers/bedrock.js +14 -0
- package/dist/llm/providers/bedrock.js.map +1 -0
- package/dist/llm/providers/custom.d.ts +10 -0
- package/dist/llm/providers/custom.d.ts.map +1 -0
- package/dist/llm/providers/custom.js +16 -0
- package/dist/llm/providers/custom.js.map +1 -0
- package/dist/llm/providers/google.d.ts +7 -0
- package/dist/llm/providers/google.d.ts.map +1 -0
- package/dist/llm/providers/google.js +12 -0
- package/dist/llm/providers/google.js.map +1 -0
- package/dist/llm/providers/index.d.ts +31 -0
- package/dist/llm/providers/index.d.ts.map +1 -0
- package/dist/llm/providers/index.js +36 -0
- package/dist/llm/providers/index.js.map +1 -0
- package/dist/llm/providers/openai.d.ts +7 -0
- package/dist/llm/providers/openai.d.ts.map +1 -0
- package/dist/llm/providers/openai.js +12 -0
- package/dist/llm/providers/openai.js.map +1 -0
- package/dist/llm/reasoningSampling.d.ts +55 -0
- package/dist/llm/reasoningSampling.d.ts.map +1 -0
- package/dist/llm/reasoningSampling.js +72 -0
- package/dist/llm/reasoningSampling.js.map +1 -0
- package/dist/llm/tesseractResolver.d.ts +41 -0
- package/dist/llm/tesseractResolver.d.ts.map +1 -0
- package/dist/llm/tesseractResolver.js +103 -0
- package/dist/llm/tesseractResolver.js.map +1 -0
- package/dist/llm/tokenLimits.d.ts +32 -0
- package/dist/llm/tokenLimits.d.ts.map +1 -0
- package/dist/llm/tokenLimits.js +91 -0
- package/dist/llm/tokenLimits.js.map +1 -0
- package/dist/llm/token_counter.d.ts +82 -0
- package/dist/llm/token_counter.d.ts.map +1 -0
- package/dist/llm/token_counter.js +184 -0
- package/dist/llm/token_counter.js.map +1 -0
- package/dist/llm/types.d.ts +192 -0
- package/dist/llm/types.d.ts.map +1 -0
- package/dist/llm/types.js +10 -0
- package/dist/llm/types.js.map +1 -0
- package/dist/llm/usageExtractor.d.ts +36 -0
- package/dist/llm/usageExtractor.d.ts.map +1 -0
- package/dist/llm/usageExtractor.js +156 -0
- package/dist/llm/usageExtractor.js.map +1 -0
- package/dist/mcp-servers/browser-server.d.ts +12 -0
- package/dist/mcp-servers/browser-server.d.ts.map +1 -0
- package/dist/mcp-servers/browser-server.js +264 -0
- package/dist/mcp-servers/browser-server.js.map +1 -0
- package/dist/mcp-servers/code-intelligence-server.d.ts +8 -0
- package/dist/mcp-servers/code-intelligence-server.d.ts.map +1 -0
- package/dist/mcp-servers/code-intelligence-server.js +218 -0
- package/dist/mcp-servers/code-intelligence-server.js.map +1 -0
- package/dist/mcp-servers/memory-server.d.ts +9 -0
- package/dist/mcp-servers/memory-server.d.ts.map +1 -0
- package/dist/mcp-servers/memory-server.js +142 -0
- package/dist/mcp-servers/memory-server.js.map +1 -0
- package/dist/mcp-servers/session-server.d.ts +8 -0
- package/dist/mcp-servers/session-server.d.ts.map +1 -0
- package/dist/mcp-servers/session-server.js +113 -0
- package/dist/mcp-servers/session-server.js.map +1 -0
- package/dist/mcp-servers/shared.d.ts +41 -0
- package/dist/mcp-servers/shared.d.ts.map +1 -0
- package/dist/mcp-servers/shared.js +34 -0
- package/dist/mcp-servers/shared.js.map +1 -0
- package/dist/memory/AssetUsageStore.d.ts +63 -0
- package/dist/memory/AssetUsageStore.d.ts.map +1 -0
- package/dist/memory/AssetUsageStore.js +117 -0
- package/dist/memory/AssetUsageStore.js.map +1 -0
- package/dist/memory/AutoDreamTrigger.d.ts +37 -0
- package/dist/memory/AutoDreamTrigger.d.ts.map +1 -0
- package/dist/memory/AutoDreamTrigger.js +79 -0
- package/dist/memory/AutoDreamTrigger.js.map +1 -0
- package/dist/memory/DistillCommand.d.ts +89 -0
- package/dist/memory/DistillCommand.d.ts.map +1 -0
- package/dist/memory/DistillCommand.js +418 -0
- package/dist/memory/DistillCommand.js.map +1 -0
- package/dist/memory/DreamCommand.d.ts +54 -0
- package/dist/memory/DreamCommand.d.ts.map +1 -0
- package/dist/memory/DreamCommand.js +289 -0
- package/dist/memory/DreamCommand.js.map +1 -0
- package/dist/memory/MemoryDeduplicator.d.ts +38 -0
- package/dist/memory/MemoryDeduplicator.d.ts.map +1 -0
- package/dist/memory/MemoryDeduplicator.js +125 -0
- package/dist/memory/MemoryDeduplicator.js.map +1 -0
- package/dist/memory/MemoryEmbedding.d.ts +25 -0
- package/dist/memory/MemoryEmbedding.d.ts.map +1 -0
- package/dist/memory/MemoryEmbedding.js +104 -0
- package/dist/memory/MemoryEmbedding.js.map +1 -0
- package/dist/memory/MemoryFTS.d.ts +55 -0
- package/dist/memory/MemoryFTS.d.ts.map +1 -0
- package/dist/memory/MemoryFTS.js +333 -0
- package/dist/memory/MemoryFTS.js.map +1 -0
- package/dist/memory/MemoryGC.d.ts +40 -0
- package/dist/memory/MemoryGC.d.ts.map +1 -0
- package/dist/memory/MemoryGC.js +146 -0
- package/dist/memory/MemoryGC.js.map +1 -0
- package/dist/memory/MemoryMaintenance.d.ts +31 -0
- package/dist/memory/MemoryMaintenance.d.ts.map +1 -0
- package/dist/memory/MemoryMaintenance.js +111 -0
- package/dist/memory/MemoryMaintenance.js.map +1 -0
- package/dist/memory/MemoryMaintenanceEvents.d.ts +24 -0
- package/dist/memory/MemoryMaintenanceEvents.d.ts.map +1 -0
- package/dist/memory/MemoryMaintenanceEvents.js +47 -0
- package/dist/memory/MemoryMaintenanceEvents.js.map +1 -0
- package/dist/memory/MemoryMaintenanceStatus.d.ts +61 -0
- package/dist/memory/MemoryMaintenanceStatus.d.ts.map +1 -0
- package/dist/memory/MemoryMaintenanceStatus.js +165 -0
- package/dist/memory/MemoryMaintenanceStatus.js.map +1 -0
- package/dist/memory/MemoryManager.d.ts +80 -0
- package/dist/memory/MemoryManager.d.ts.map +1 -0
- package/dist/memory/MemoryManager.js +310 -0
- package/dist/memory/MemoryManager.js.map +1 -0
- package/dist/memory/MemoryReconciler.d.ts +27 -0
- package/dist/memory/MemoryReconciler.d.ts.map +1 -0
- package/dist/memory/MemoryReconciler.js +163 -0
- package/dist/memory/MemoryReconciler.js.map +1 -0
- package/dist/memory/MemoryService.d.ts +82 -0
- package/dist/memory/MemoryService.d.ts.map +1 -0
- package/dist/memory/MemoryService.js +114 -0
- package/dist/memory/MemoryService.js.map +1 -0
- package/dist/memory/TrajectoryReader.d.ts +39 -0
- package/dist/memory/TrajectoryReader.d.ts.map +1 -0
- package/dist/memory/TrajectoryReader.js +150 -0
- package/dist/memory/TrajectoryReader.js.map +1 -0
- package/dist/memory/types.d.ts +122 -0
- package/dist/memory/types.d.ts.map +1 -0
- package/dist/memory/types.js +10 -0
- package/dist/memory/types.js.map +1 -0
- package/dist/plugins/hooks/ChatTransformHook.d.ts +57 -0
- package/dist/plugins/hooks/ChatTransformHook.d.ts.map +1 -0
- package/dist/plugins/hooks/ChatTransformHook.js +59 -0
- package/dist/plugins/hooks/ChatTransformHook.js.map +1 -0
- package/dist/plugins/hooks/ToolHooks.d.ts +125 -0
- package/dist/plugins/hooks/ToolHooks.d.ts.map +1 -0
- package/dist/plugins/hooks/ToolHooks.js +106 -0
- package/dist/plugins/hooks/ToolHooks.js.map +1 -0
- package/dist/plugins/hooks/index.d.ts +8 -0
- package/dist/plugins/hooks/index.d.ts.map +1 -0
- package/dist/plugins/hooks/index.js +6 -0
- package/dist/plugins/hooks/index.js.map +1 -0
- package/dist/runtime/LoggingRuntime.d.ts +35 -0
- package/dist/runtime/LoggingRuntime.d.ts.map +1 -0
- package/dist/runtime/LoggingRuntime.js +87 -0
- package/dist/runtime/LoggingRuntime.js.map +1 -0
- package/dist/runtime/SessionManagerRuntime.d.ts +475 -0
- package/dist/runtime/SessionManagerRuntime.d.ts.map +1 -0
- package/dist/runtime/SessionManagerRuntime.js +2299 -0
- package/dist/runtime/SessionManagerRuntime.js.map +1 -0
- package/dist/runtime/SessionRuntime.d.ts +62 -0
- package/dist/runtime/SessionRuntime.d.ts.map +1 -0
- package/dist/runtime/SessionRuntime.js +241 -0
- package/dist/runtime/SessionRuntime.js.map +1 -0
- package/dist/tools/LazyToolProxy.d.ts +33 -0
- package/dist/tools/LazyToolProxy.d.ts.map +1 -0
- package/dist/tools/LazyToolProxy.js +59 -0
- package/dist/tools/LazyToolProxy.js.map +1 -0
- package/dist/tools/LspClient.d.ts +94 -0
- package/dist/tools/LspClient.d.ts.map +1 -0
- package/dist/tools/LspClient.js +429 -0
- package/dist/tools/LspClient.js.map +1 -0
- package/dist/tools/MetaTool.d.ts +22 -0
- package/dist/tools/MetaTool.d.ts.map +1 -0
- package/dist/tools/MetaTool.js +21 -0
- package/dist/tools/MetaTool.js.map +1 -0
- package/dist/tools/Registry.d.ts +156 -0
- package/dist/tools/Registry.d.ts.map +1 -0
- package/dist/tools/Registry.js +1484 -0
- package/dist/tools/Registry.js.map +1 -0
- package/dist/tools/SchemaUtils.d.ts +5 -0
- package/dist/tools/SchemaUtils.d.ts.map +1 -0
- package/dist/tools/SchemaUtils.js +215 -0
- package/dist/tools/SchemaUtils.js.map +1 -0
- package/dist/tools/Tool.d.ts +90 -0
- package/dist/tools/Tool.d.ts.map +1 -0
- package/dist/tools/Tool.js +128 -0
- package/dist/tools/Tool.js.map +1 -0
- package/dist/tools/ToolMetadata.d.ts +35 -0
- package/dist/tools/ToolMetadata.d.ts.map +1 -0
- package/dist/tools/ToolMetadata.js +139 -0
- package/dist/tools/ToolMetadata.js.map +1 -0
- package/dist/tools/UserToolFactory.d.ts +34 -0
- package/dist/tools/UserToolFactory.d.ts.map +1 -0
- package/dist/tools/UserToolFactory.js +249 -0
- package/dist/tools/UserToolFactory.js.map +1 -0
- package/dist/tools/implementations/AddEdgeTool.d.ts +22 -0
- package/dist/tools/implementations/AddEdgeTool.d.ts.map +1 -0
- package/dist/tools/implementations/AddEdgeTool.js +43 -0
- package/dist/tools/implementations/AddEdgeTool.js.map +1 -0
- package/dist/tools/implementations/AstQueryTool.d.ts +40 -0
- package/dist/tools/implementations/AstQueryTool.d.ts.map +1 -0
- package/dist/tools/implementations/AstQueryTool.js +142 -0
- package/dist/tools/implementations/AstQueryTool.js.map +1 -0
- package/dist/tools/implementations/AttemptCompletionTool.d.ts +178 -0
- package/dist/tools/implementations/AttemptCompletionTool.d.ts.map +1 -0
- package/dist/tools/implementations/AttemptCompletionTool.js +384 -0
- package/dist/tools/implementations/AttemptCompletionTool.js.map +1 -0
- package/dist/tools/implementations/BlackboardTool.d.ts +80 -0
- package/dist/tools/implementations/BlackboardTool.d.ts.map +1 -0
- package/dist/tools/implementations/BlackboardTool.js +87 -0
- package/dist/tools/implementations/BlackboardTool.js.map +1 -0
- package/dist/tools/implementations/BrowserActionTool.d.ts +109 -0
- package/dist/tools/implementations/BrowserActionTool.d.ts.map +1 -0
- package/dist/tools/implementations/BrowserActionTool.js +265 -0
- package/dist/tools/implementations/BrowserActionTool.js.map +1 -0
- package/dist/tools/implementations/BrowserManager.d.ts +191 -0
- package/dist/tools/implementations/BrowserManager.d.ts.map +1 -0
- package/dist/tools/implementations/BrowserManager.js +619 -0
- package/dist/tools/implementations/BrowserManager.js.map +1 -0
- package/dist/tools/implementations/BrowserVisualVerifyTool.d.ts +56 -0
- package/dist/tools/implementations/BrowserVisualVerifyTool.d.ts.map +1 -0
- package/dist/tools/implementations/BrowserVisualVerifyTool.js +269 -0
- package/dist/tools/implementations/BrowserVisualVerifyTool.js.map +1 -0
- package/dist/tools/implementations/BughuntScanToolWrappers.d.ts +28 -0
- package/dist/tools/implementations/BughuntScanToolWrappers.d.ts.map +1 -0
- package/dist/tools/implementations/BughuntScanToolWrappers.js +183 -0
- package/dist/tools/implementations/BughuntScanToolWrappers.js.map +1 -0
- package/dist/tools/implementations/BughuntScanTools.d.ts +48 -0
- package/dist/tools/implementations/BughuntScanTools.d.ts.map +1 -0
- package/dist/tools/implementations/BughuntScanTools.js +502 -0
- package/dist/tools/implementations/BughuntScanTools.js.map +1 -0
- package/dist/tools/implementations/BughuntTaintScanner.d.ts +11 -0
- package/dist/tools/implementations/BughuntTaintScanner.d.ts.map +1 -0
- package/dist/tools/implementations/BughuntTaintScanner.js +82 -0
- package/dist/tools/implementations/BughuntTaintScanner.js.map +1 -0
- package/dist/tools/implementations/CodeSearch.d.ts +55 -0
- package/dist/tools/implementations/CodeSearch.d.ts.map +1 -0
- package/dist/tools/implementations/CodeSearch.js +564 -0
- package/dist/tools/implementations/CodeSearch.js.map +1 -0
- package/dist/tools/implementations/CodeSearchTool.d.ts +17 -0
- package/dist/tools/implementations/CodeSearchTool.d.ts.map +1 -0
- package/dist/tools/implementations/CodeSearchTool.js +35 -0
- package/dist/tools/implementations/CodeSearchTool.js.map +1 -0
- package/dist/tools/implementations/DeclareAssumptionTool.d.ts +21 -0
- package/dist/tools/implementations/DeclareAssumptionTool.d.ts.map +1 -0
- package/dist/tools/implementations/DeclareAssumptionTool.js +60 -0
- package/dist/tools/implementations/DeclareAssumptionTool.js.map +1 -0
- package/dist/tools/implementations/DeclareIntentTool.d.ts +14 -0
- package/dist/tools/implementations/DeclareIntentTool.d.ts.map +1 -0
- package/dist/tools/implementations/DeclareIntentTool.js +41 -0
- package/dist/tools/implementations/DeclareIntentTool.js.map +1 -0
- package/dist/tools/implementations/DesignAssetTool.d.ts +25 -0
- package/dist/tools/implementations/DesignAssetTool.d.ts.map +1 -0
- package/dist/tools/implementations/DesignAssetTool.js +197 -0
- package/dist/tools/implementations/DesignAssetTool.js.map +1 -0
- package/dist/tools/implementations/EditDocxTool.d.ts +60 -0
- package/dist/tools/implementations/EditDocxTool.d.ts.map +1 -0
- package/dist/tools/implementations/EditDocxTool.js +344 -0
- package/dist/tools/implementations/EditDocxTool.js.map +1 -0
- package/dist/tools/implementations/EditPptxTool.d.ts +100 -0
- package/dist/tools/implementations/EditPptxTool.d.ts.map +1 -0
- package/dist/tools/implementations/EditPptxTool.js +447 -0
- package/dist/tools/implementations/EditPptxTool.js.map +1 -0
- package/dist/tools/implementations/EditXlsxTool.d.ts +58 -0
- package/dist/tools/implementations/EditXlsxTool.d.ts.map +1 -0
- package/dist/tools/implementations/EditXlsxTool.js +210 -0
- package/dist/tools/implementations/EditXlsxTool.js.map +1 -0
- package/dist/tools/implementations/ExecutionSandbox.d.ts +51 -0
- package/dist/tools/implementations/ExecutionSandbox.d.ts.map +1 -0
- package/dist/tools/implementations/ExecutionSandbox.js +415 -0
- package/dist/tools/implementations/ExecutionSandbox.js.map +1 -0
- package/dist/tools/implementations/FileCreate.d.ts +15 -0
- package/dist/tools/implementations/FileCreate.d.ts.map +1 -0
- package/dist/tools/implementations/FileCreate.js +68 -0
- package/dist/tools/implementations/FileCreate.js.map +1 -0
- package/dist/tools/implementations/FileParser.d.ts +41 -0
- package/dist/tools/implementations/FileParser.d.ts.map +1 -0
- package/dist/tools/implementations/FileParser.js +524 -0
- package/dist/tools/implementations/FileParser.js.map +1 -0
- package/dist/tools/implementations/FileRead.d.ts +14 -0
- package/dist/tools/implementations/FileRead.d.ts.map +1 -0
- package/dist/tools/implementations/FileRead.js +311 -0
- package/dist/tools/implementations/FileRead.js.map +1 -0
- package/dist/tools/implementations/GenerateCanvasTool.d.ts +109 -0
- package/dist/tools/implementations/GenerateCanvasTool.d.ts.map +1 -0
- package/dist/tools/implementations/GenerateCanvasTool.js +364 -0
- package/dist/tools/implementations/GenerateCanvasTool.js.map +1 -0
- package/dist/tools/implementations/GenerateDocxTool.d.ts +36 -0
- package/dist/tools/implementations/GenerateDocxTool.d.ts.map +1 -0
- package/dist/tools/implementations/GenerateDocxTool.js +327 -0
- package/dist/tools/implementations/GenerateDocxTool.js.map +1 -0
- package/dist/tools/implementations/GenerateHtmlDocumentTool.d.ts +149 -0
- package/dist/tools/implementations/GenerateHtmlDocumentTool.d.ts.map +1 -0
- package/dist/tools/implementations/GenerateHtmlDocumentTool.js +111 -0
- package/dist/tools/implementations/GenerateHtmlDocumentTool.js.map +1 -0
- package/dist/tools/implementations/GenerateHtmlPresentationTool.d.ts +20 -0
- package/dist/tools/implementations/GenerateHtmlPresentationTool.d.ts.map +1 -0
- package/dist/tools/implementations/GenerateHtmlPresentationTool.js +77 -0
- package/dist/tools/implementations/GenerateHtmlPresentationTool.js.map +1 -0
- package/dist/tools/implementations/GeneratePdfTool.d.ts +48 -0
- package/dist/tools/implementations/GeneratePdfTool.d.ts.map +1 -0
- package/dist/tools/implementations/GeneratePdfTool.js +301 -0
- package/dist/tools/implementations/GeneratePdfTool.js.map +1 -0
- package/dist/tools/implementations/GeneratePptxTool.d.ts +91 -0
- package/dist/tools/implementations/GeneratePptxTool.d.ts.map +1 -0
- package/dist/tools/implementations/GeneratePptxTool.js +570 -0
- package/dist/tools/implementations/GeneratePptxTool.js.map +1 -0
- package/dist/tools/implementations/GenerateSlidevTool.d.ts +26 -0
- package/dist/tools/implementations/GenerateSlidevTool.d.ts.map +1 -0
- package/dist/tools/implementations/GenerateSlidevTool.js +128 -0
- package/dist/tools/implementations/GenerateSlidevTool.js.map +1 -0
- package/dist/tools/implementations/GenerateXlsxTool.d.ts +63 -0
- package/dist/tools/implementations/GenerateXlsxTool.d.ts.map +1 -0
- package/dist/tools/implementations/GenerateXlsxTool.js +202 -0
- package/dist/tools/implementations/GenerateXlsxTool.js.map +1 -0
- package/dist/tools/implementations/GetTerminalOutput.d.ts +15 -0
- package/dist/tools/implementations/GetTerminalOutput.d.ts.map +1 -0
- package/dist/tools/implementations/GetTerminalOutput.js +97 -0
- package/dist/tools/implementations/GetTerminalOutput.js.map +1 -0
- package/dist/tools/implementations/GitTool.d.ts +70 -0
- package/dist/tools/implementations/GitTool.d.ts.map +1 -0
- package/dist/tools/implementations/GitTool.js +321 -0
- package/dist/tools/implementations/GitTool.js.map +1 -0
- package/dist/tools/implementations/GlobTool.d.ts +16 -0
- package/dist/tools/implementations/GlobTool.d.ts.map +1 -0
- package/dist/tools/implementations/GlobTool.js +85 -0
- package/dist/tools/implementations/GlobTool.js.map +1 -0
- package/dist/tools/implementations/HttpRequestTool.d.ts +33 -0
- package/dist/tools/implementations/HttpRequestTool.d.ts.map +1 -0
- package/dist/tools/implementations/HttpRequestTool.js +197 -0
- package/dist/tools/implementations/HttpRequestTool.js.map +1 -0
- package/dist/tools/implementations/InspectDocxTool.d.ts +14 -0
- package/dist/tools/implementations/InspectDocxTool.d.ts.map +1 -0
- package/dist/tools/implementations/InspectDocxTool.js +78 -0
- package/dist/tools/implementations/InspectDocxTool.js.map +1 -0
- package/dist/tools/implementations/InspectPptxTool.d.ts +14 -0
- package/dist/tools/implementations/InspectPptxTool.d.ts.map +1 -0
- package/dist/tools/implementations/InspectPptxTool.js +81 -0
- package/dist/tools/implementations/InspectPptxTool.js.map +1 -0
- package/dist/tools/implementations/ListDir.d.ts +15 -0
- package/dist/tools/implementations/ListDir.d.ts.map +1 -0
- package/dist/tools/implementations/ListDir.js +156 -0
- package/dist/tools/implementations/ListDir.js.map +1 -0
- package/dist/tools/implementations/LspTool.d.ts +27 -0
- package/dist/tools/implementations/LspTool.d.ts.map +1 -0
- package/dist/tools/implementations/LspTool.js +111 -0
- package/dist/tools/implementations/LspTool.js.map +1 -0
- package/dist/tools/implementations/McpTool.d.ts +41 -0
- package/dist/tools/implementations/McpTool.d.ts.map +1 -0
- package/dist/tools/implementations/McpTool.js +103 -0
- package/dist/tools/implementations/McpTool.js.map +1 -0
- package/dist/tools/implementations/MemoryTool.d.ts +90 -0
- package/dist/tools/implementations/MemoryTool.d.ts.map +1 -0
- package/dist/tools/implementations/MemoryTool.js +167 -0
- package/dist/tools/implementations/MemoryTool.js.map +1 -0
- package/dist/tools/implementations/NodeReplTool.d.ts +20 -0
- package/dist/tools/implementations/NodeReplTool.d.ts.map +1 -0
- package/dist/tools/implementations/NodeReplTool.js +109 -0
- package/dist/tools/implementations/NodeReplTool.js.map +1 -0
- package/dist/tools/implementations/OCRTool.d.ts +33 -0
- package/dist/tools/implementations/OCRTool.d.ts.map +1 -0
- package/dist/tools/implementations/OCRTool.js +253 -0
- package/dist/tools/implementations/OCRTool.js.map +1 -0
- package/dist/tools/implementations/OfficeAssetTool.d.ts +42 -0
- package/dist/tools/implementations/OfficeAssetTool.d.ts.map +1 -0
- package/dist/tools/implementations/OfficeAssetTool.js +210 -0
- package/dist/tools/implementations/OfficeAssetTool.js.map +1 -0
- package/dist/tools/implementations/OfficeOpsTool.d.ts +33 -0
- package/dist/tools/implementations/OfficeOpsTool.d.ts.map +1 -0
- package/dist/tools/implementations/OfficeOpsTool.js +221 -0
- package/dist/tools/implementations/OfficeOpsTool.js.map +1 -0
- package/dist/tools/implementations/OfficeReviewTool.d.ts +75 -0
- package/dist/tools/implementations/OfficeReviewTool.d.ts.map +1 -0
- package/dist/tools/implementations/OfficeReviewTool.js +125 -0
- package/dist/tools/implementations/OfficeReviewTool.js.map +1 -0
- package/dist/tools/implementations/OfficeRuntimeTool.d.ts +40 -0
- package/dist/tools/implementations/OfficeRuntimeTool.d.ts.map +1 -0
- package/dist/tools/implementations/OfficeRuntimeTool.js +266 -0
- package/dist/tools/implementations/OfficeRuntimeTool.js.map +1 -0
- package/dist/tools/implementations/OfficeXmlBuilder.d.ts +226 -0
- package/dist/tools/implementations/OfficeXmlBuilder.d.ts.map +1 -0
- package/dist/tools/implementations/OfficeXmlBuilder.js +560 -0
- package/dist/tools/implementations/OfficeXmlBuilder.js.map +1 -0
- package/dist/tools/implementations/ParallelReadBatchTool.d.ts +21 -0
- package/dist/tools/implementations/ParallelReadBatchTool.d.ts.map +1 -0
- package/dist/tools/implementations/ParallelReadBatchTool.js +90 -0
- package/dist/tools/implementations/ParallelReadBatchTool.js.map +1 -0
- package/dist/tools/implementations/ParseFileTool.d.ts +20 -0
- package/dist/tools/implementations/ParseFileTool.d.ts.map +1 -0
- package/dist/tools/implementations/ParseFileTool.js +59 -0
- package/dist/tools/implementations/ParseFileTool.js.map +1 -0
- package/dist/tools/implementations/PythonExec.d.ts +38 -0
- package/dist/tools/implementations/PythonExec.d.ts.map +1 -0
- package/dist/tools/implementations/PythonExec.js +204 -0
- package/dist/tools/implementations/PythonExec.js.map +1 -0
- package/dist/tools/implementations/PythonExecTool.d.ts +15 -0
- package/dist/tools/implementations/PythonExecTool.d.ts.map +1 -0
- package/dist/tools/implementations/PythonExecTool.js +54 -0
- package/dist/tools/implementations/PythonExecTool.js.map +1 -0
- package/dist/tools/implementations/ReadGraphTool.d.ts +31 -0
- package/dist/tools/implementations/ReadGraphTool.d.ts.map +1 -0
- package/dist/tools/implementations/ReadGraphTool.js +259 -0
- package/dist/tools/implementations/ReadGraphTool.js.map +1 -0
- package/dist/tools/implementations/ScreenshotTool.d.ts +27 -0
- package/dist/tools/implementations/ScreenshotTool.d.ts.map +1 -0
- package/dist/tools/implementations/ScreenshotTool.js +124 -0
- package/dist/tools/implementations/ScreenshotTool.js.map +1 -0
- package/dist/tools/implementations/SendMessageTool.d.ts +21 -0
- package/dist/tools/implementations/SendMessageTool.d.ts.map +1 -0
- package/dist/tools/implementations/SendMessageTool.js +75 -0
- package/dist/tools/implementations/SendMessageTool.js.map +1 -0
- package/dist/tools/implementations/SessionArtifacts.d.ts +22 -0
- package/dist/tools/implementations/SessionArtifacts.d.ts.map +1 -0
- package/dist/tools/implementations/SessionArtifacts.js +141 -0
- package/dist/tools/implementations/SessionArtifacts.js.map +1 -0
- package/dist/tools/implementations/SessionInfoTool.d.ts +10 -0
- package/dist/tools/implementations/SessionInfoTool.d.ts.map +1 -0
- package/dist/tools/implementations/SessionInfoTool.js +38 -0
- package/dist/tools/implementations/SessionInfoTool.js.map +1 -0
- package/dist/tools/implementations/Shell.d.ts +77 -0
- package/dist/tools/implementations/Shell.d.ts.map +1 -0
- package/dist/tools/implementations/Shell.js +772 -0
- package/dist/tools/implementations/Shell.js.map +1 -0
- package/dist/tools/implementations/StructuredPatchTool.d.ts +57 -0
- package/dist/tools/implementations/StructuredPatchTool.d.ts.map +1 -0
- package/dist/tools/implementations/StructuredPatchTool.js +970 -0
- package/dist/tools/implementations/StructuredPatchTool.js.map +1 -0
- package/dist/tools/implementations/SupersedeNodeTool.d.ts +19 -0
- package/dist/tools/implementations/SupersedeNodeTool.d.ts.map +1 -0
- package/dist/tools/implementations/SupersedeNodeTool.js +50 -0
- package/dist/tools/implementations/SupersedeNodeTool.js.map +1 -0
- package/dist/tools/implementations/TeamCreate.d.ts +20 -0
- package/dist/tools/implementations/TeamCreate.d.ts.map +1 -0
- package/dist/tools/implementations/TeamCreate.js +99 -0
- package/dist/tools/implementations/TeamCreate.js.map +1 -0
- package/dist/tools/implementations/TeamDelete.d.ts +11 -0
- package/dist/tools/implementations/TeamDelete.d.ts.map +1 -0
- package/dist/tools/implementations/TeamDelete.js +55 -0
- package/dist/tools/implementations/TeamDelete.js.map +1 -0
- package/dist/tools/implementations/TeamEdit.d.ts +35 -0
- package/dist/tools/implementations/TeamEdit.d.ts.map +1 -0
- package/dist/tools/implementations/TeamEdit.js +254 -0
- package/dist/tools/implementations/TeamEdit.js.map +1 -0
- package/dist/tools/implementations/TeamInboxCheck.d.ts +22 -0
- package/dist/tools/implementations/TeamInboxCheck.d.ts.map +1 -0
- package/dist/tools/implementations/TeamInboxCheck.js +111 -0
- package/dist/tools/implementations/TeamInboxCheck.js.map +1 -0
- package/dist/tools/implementations/TeamInboxTool.d.ts +13 -0
- package/dist/tools/implementations/TeamInboxTool.d.ts.map +1 -0
- package/dist/tools/implementations/TeamInboxTool.js +17 -0
- package/dist/tools/implementations/TeamInboxTool.js.map +1 -0
- package/dist/tools/implementations/TeamListMembers.d.ts +16 -0
- package/dist/tools/implementations/TeamListMembers.d.ts.map +1 -0
- package/dist/tools/implementations/TeamListMembers.js +34 -0
- package/dist/tools/implementations/TeamListMembers.js.map +1 -0
- package/dist/tools/implementations/TeamManageTool.d.ts +33 -0
- package/dist/tools/implementations/TeamManageTool.d.ts.map +1 -0
- package/dist/tools/implementations/TeamManageTool.js +68 -0
- package/dist/tools/implementations/TeamManageTool.js.map +1 -0
- package/dist/tools/implementations/TeamMessageTool.d.ts +94 -0
- package/dist/tools/implementations/TeamMessageTool.d.ts.map +1 -0
- package/dist/tools/implementations/TeamMessageTool.js +89 -0
- package/dist/tools/implementations/TeamMessageTool.js.map +1 -0
- package/dist/tools/implementations/TeamSendMessage.d.ts +57 -0
- package/dist/tools/implementations/TeamSendMessage.d.ts.map +1 -0
- package/dist/tools/implementations/TeamSendMessage.js +290 -0
- package/dist/tools/implementations/TeamSendMessage.js.map +1 -0
- package/dist/tools/implementations/TeamStatus.d.ts +18 -0
- package/dist/tools/implementations/TeamStatus.d.ts.map +1 -0
- package/dist/tools/implementations/TeamStatus.js +106 -0
- package/dist/tools/implementations/TeamStatus.js.map +1 -0
- package/dist/tools/implementations/TeamTaskBoard.d.ts +22 -0
- package/dist/tools/implementations/TeamTaskBoard.d.ts.map +1 -0
- package/dist/tools/implementations/TeamTaskBoard.js +119 -0
- package/dist/tools/implementations/TeamTaskBoard.js.map +1 -0
- package/dist/tools/implementations/TerminalControl.d.ts +27 -0
- package/dist/tools/implementations/TerminalControl.d.ts.map +1 -0
- package/dist/tools/implementations/TerminalControl.js +198 -0
- package/dist/tools/implementations/TerminalControl.js.map +1 -0
- package/dist/tools/implementations/TerminalSessionManager.d.ts +196 -0
- package/dist/tools/implementations/TerminalSessionManager.d.ts.map +1 -0
- package/dist/tools/implementations/TerminalSessionManager.js +525 -0
- package/dist/tools/implementations/TerminalSessionManager.js.map +1 -0
- package/dist/tools/implementations/ToolDiscoveryTool.d.ts +24 -0
- package/dist/tools/implementations/ToolDiscoveryTool.d.ts.map +1 -0
- package/dist/tools/implementations/ToolDiscoveryTool.js +138 -0
- package/dist/tools/implementations/ToolDiscoveryTool.js.map +1 -0
- package/dist/tools/implementations/ToolPreflightTool.d.ts +17 -0
- package/dist/tools/implementations/ToolPreflightTool.d.ts.map +1 -0
- package/dist/tools/implementations/ToolPreflightTool.js +27 -0
- package/dist/tools/implementations/ToolPreflightTool.js.map +1 -0
- package/dist/tools/implementations/TreeSitterSecurityEngine.d.ts +67 -0
- package/dist/tools/implementations/TreeSitterSecurityEngine.d.ts.map +1 -0
- package/dist/tools/implementations/TreeSitterSecurityEngine.js +355 -0
- package/dist/tools/implementations/TreeSitterSecurityEngine.js.map +1 -0
- package/dist/tools/implementations/ValidateOfficeTool.d.ts +33 -0
- package/dist/tools/implementations/ValidateOfficeTool.d.ts.map +1 -0
- package/dist/tools/implementations/ValidateOfficeTool.js +50 -0
- package/dist/tools/implementations/ValidateOfficeTool.js.map +1 -0
- package/dist/tools/implementations/VisualContactSheetTool.d.ts +32 -0
- package/dist/tools/implementations/VisualContactSheetTool.d.ts.map +1 -0
- package/dist/tools/implementations/VisualContactSheetTool.js +234 -0
- package/dist/tools/implementations/VisualContactSheetTool.js.map +1 -0
- package/dist/tools/implementations/WebCommon.d.ts +12 -0
- package/dist/tools/implementations/WebCommon.d.ts.map +1 -0
- package/dist/tools/implementations/WebCommon.js +286 -0
- package/dist/tools/implementations/WebCommon.js.map +1 -0
- package/dist/tools/implementations/WebFetch.d.ts +38 -0
- package/dist/tools/implementations/WebFetch.d.ts.map +1 -0
- package/dist/tools/implementations/WebFetch.js +294 -0
- package/dist/tools/implementations/WebFetch.js.map +1 -0
- package/dist/tools/implementations/WebSearch.d.ts +45 -0
- package/dist/tools/implementations/WebSearch.d.ts.map +1 -0
- package/dist/tools/implementations/WebSearch.js +432 -0
- package/dist/tools/implementations/WebSearch.js.map +1 -0
- package/dist/tools/implementations/WorkNoteTool.d.ts +71 -0
- package/dist/tools/implementations/WorkNoteTool.d.ts.map +1 -0
- package/dist/tools/implementations/WorkNoteTool.js +238 -0
- package/dist/tools/implementations/WorkNoteTool.js.map +1 -0
- package/dist/tools/implementations/WriteFactTool.d.ts +34 -0
- package/dist/tools/implementations/WriteFactTool.d.ts.map +1 -0
- package/dist/tools/implementations/WriteFactTool.js +43 -0
- package/dist/tools/implementations/WriteFactTool.js.map +1 -0
- package/dist/tools/implementations/office/ConditionalFormattingBuilder.d.ts +149 -0
- package/dist/tools/implementations/office/ConditionalFormattingBuilder.d.ts.map +1 -0
- package/dist/tools/implementations/office/ConditionalFormattingBuilder.js +259 -0
- package/dist/tools/implementations/office/ConditionalFormattingBuilder.js.map +1 -0
- package/dist/tools/implementations/office/ExcelWorkbook.d.ts +21 -0
- package/dist/tools/implementations/office/ExcelWorkbook.d.ts.map +1 -0
- package/dist/tools/implementations/office/ExcelWorkbook.js +114 -0
- package/dist/tools/implementations/office/ExcelWorkbook.js.map +1 -0
- package/dist/tools/implementations/office/OfficeAuditLog.d.ts +28 -0
- package/dist/tools/implementations/office/OfficeAuditLog.d.ts.map +1 -0
- package/dist/tools/implementations/office/OfficeAuditLog.js +221 -0
- package/dist/tools/implementations/office/OfficeAuditLog.js.map +1 -0
- package/dist/tools/implementations/office/OfficePdfRenderer.d.ts +33 -0
- package/dist/tools/implementations/office/OfficePdfRenderer.d.ts.map +1 -0
- package/dist/tools/implementations/office/OfficePdfRenderer.js +194 -0
- package/dist/tools/implementations/office/OfficePdfRenderer.js.map +1 -0
- package/dist/tools/implementations/office/OfficePreviewExtractor.d.ts +6 -0
- package/dist/tools/implementations/office/OfficePreviewExtractor.d.ts.map +1 -0
- package/dist/tools/implementations/office/OfficePreviewExtractor.js +493 -0
- package/dist/tools/implementations/office/OfficePreviewExtractor.js.map +1 -0
- package/dist/tools/implementations/office/OfficePreviewModel.d.ts +96 -0
- package/dist/tools/implementations/office/OfficePreviewModel.d.ts.map +1 -0
- package/dist/tools/implementations/office/OfficePreviewModel.js +2 -0
- package/dist/tools/implementations/office/OfficePreviewModel.js.map +1 -0
- package/dist/tools/implementations/office/OfficeReview.d.ts +94 -0
- package/dist/tools/implementations/office/OfficeReview.d.ts.map +1 -0
- package/dist/tools/implementations/office/OfficeReview.js +496 -0
- package/dist/tools/implementations/office/OfficeReview.js.map +1 -0
- package/dist/tools/implementations/office/OfficeRuntime.d.ts +13 -0
- package/dist/tools/implementations/office/OfficeRuntime.d.ts.map +1 -0
- package/dist/tools/implementations/office/OfficeRuntime.js +22 -0
- package/dist/tools/implementations/office/OfficeRuntime.js.map +1 -0
- package/dist/tools/implementations/office/OfficeTemplateRegistry.d.ts +76 -0
- package/dist/tools/implementations/office/OfficeTemplateRegistry.d.ts.map +1 -0
- package/dist/tools/implementations/office/OfficeTemplateRegistry.js +624 -0
- package/dist/tools/implementations/office/OfficeTemplateRegistry.js.map +1 -0
- package/dist/tools/implementations/office/OfficeValidator.d.ts +33 -0
- package/dist/tools/implementations/office/OfficeValidator.d.ts.map +1 -0
- package/dist/tools/implementations/office/OfficeValidator.js +651 -0
- package/dist/tools/implementations/office/OfficeValidator.js.map +1 -0
- package/dist/tools/implementations/office/OoxmlTextReplace.d.ts +12 -0
- package/dist/tools/implementations/office/OoxmlTextReplace.d.ts.map +1 -0
- package/dist/tools/implementations/office/OoxmlTextReplace.js +107 -0
- package/dist/tools/implementations/office/OoxmlTextReplace.js.map +1 -0
- package/dist/tools/implementations/office/XlsxStyleBuilder.d.ts +85 -0
- package/dist/tools/implementations/office/XlsxStyleBuilder.d.ts.map +1 -0
- package/dist/tools/implementations/office/XlsxStyleBuilder.js +156 -0
- package/dist/tools/implementations/office/XlsxStyleBuilder.js.map +1 -0
- package/dist/tools/implementations/office/html/HtmlOfficeEngine.d.ts +53 -0
- package/dist/tools/implementations/office/html/HtmlOfficeEngine.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/HtmlOfficeEngine.js +90 -0
- package/dist/tools/implementations/office/html/HtmlOfficeEngine.js.map +1 -0
- package/dist/tools/implementations/office/html/assemble.d.ts +52 -0
- package/dist/tools/implementations/office/html/assemble.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/assemble.js +183 -0
- package/dist/tools/implementations/office/html/assemble.js.map +1 -0
- package/dist/tools/implementations/office/html/components.d.ts +132 -0
- package/dist/tools/implementations/office/html/components.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/components.js +182 -0
- package/dist/tools/implementations/office/html/components.js.map +1 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToDocx.d.ts +19 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToDocx.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToDocx.js +180 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToDocx.js.map +1 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToPdf.d.ts +38 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToPdf.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToPdf.js +118 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToPdf.js.map +1 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToPptx.d.ts +28 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToPptx.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToPptx.js +79 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToPptx.js.map +1 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToXlsx.d.ts +20 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToXlsx.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToXlsx.js +101 -0
- package/dist/tools/implementations/office/html/exporters/HtmlToXlsx.js.map +1 -0
- package/dist/tools/implementations/office/html/provenance.d.ts +25 -0
- package/dist/tools/implementations/office/html/provenance.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/provenance.js +51 -0
- package/dist/tools/implementations/office/html/provenance.js.map +1 -0
- package/dist/tools/implementations/office/html/themes.d.ts +60 -0
- package/dist/tools/implementations/office/html/themes.d.ts.map +1 -0
- package/dist/tools/implementations/office/html/themes.js +183 -0
- package/dist/tools/implementations/office/html/themes.js.map +1 -0
- package/dist/tools/implementations/rules/RuleLoader.d.ts +27 -0
- package/dist/tools/implementations/rules/RuleLoader.d.ts.map +1 -0
- package/dist/tools/implementations/rules/RuleLoader.js +69 -0
- package/dist/tools/implementations/rules/RuleLoader.js.map +1 -0
- package/dist/tools/implementations/rules/schema.d.ts +236 -0
- package/dist/tools/implementations/rules/schema.d.ts.map +1 -0
- package/dist/tools/implementations/rules/schema.js +119 -0
- package/dist/tools/implementations/rules/schema.js.map +1 -0
- package/dist/tools/implementations/rules/seed.d.ts +18 -0
- package/dist/tools/implementations/rules/seed.d.ts.map +1 -0
- package/dist/tools/implementations/rules/seed.js +252 -0
- package/dist/tools/implementations/rules/seed.js.map +1 -0
- package/dist/tools/implementations/rules/taintFacts.d.ts +26 -0
- package/dist/tools/implementations/rules/taintFacts.d.ts.map +1 -0
- package/dist/tools/implementations/rules/taintFacts.js +48 -0
- package/dist/tools/implementations/rules/taintFacts.js.map +1 -0
- package/dist/tools/implementations/scanners/ScannerAdapter.d.ts +35 -0
- package/dist/tools/implementations/scanners/ScannerAdapter.d.ts.map +1 -0
- package/dist/tools/implementations/scanners/ScannerAdapter.js +2 -0
- package/dist/tools/implementations/scanners/ScannerAdapter.js.map +1 -0
- package/dist/tools/implementations/utils.d.ts +76 -0
- package/dist/tools/implementations/utils.d.ts.map +1 -0
- package/dist/tools/implementations/utils.js +468 -0
- package/dist/tools/implementations/utils.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowAddNodeTool.d.ts +128 -0
- package/dist/tools/implementations/workflow/WorkflowAddNodeTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowAddNodeTool.js +399 -0
- package/dist/tools/implementations/workflow/WorkflowAddNodeTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowApplyTool.d.ts +98 -0
- package/dist/tools/implementations/workflow/WorkflowApplyTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowApplyTool.js +329 -0
- package/dist/tools/implementations/workflow/WorkflowApplyTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowAuditTool.d.ts +12 -0
- package/dist/tools/implementations/workflow/WorkflowAuditTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowAuditTool.js +51 -0
- package/dist/tools/implementations/workflow/WorkflowAuditTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowConnectTool.d.ts +21 -0
- package/dist/tools/implementations/workflow/WorkflowConnectTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowConnectTool.js +175 -0
- package/dist/tools/implementations/workflow/WorkflowConnectTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowCreateTool.d.ts +17 -0
- package/dist/tools/implementations/workflow/WorkflowCreateTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowCreateTool.js +78 -0
- package/dist/tools/implementations/workflow/WorkflowCreateTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowExecuteTool.d.ts +20 -0
- package/dist/tools/implementations/workflow/WorkflowExecuteTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowExecuteTool.js +178 -0
- package/dist/tools/implementations/workflow/WorkflowExecuteTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowGetStatusTool.d.ts +12 -0
- package/dist/tools/implementations/workflow/WorkflowGetStatusTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowGetStatusTool.js +87 -0
- package/dist/tools/implementations/workflow/WorkflowGetStatusTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowInspectTool.d.ts +11 -0
- package/dist/tools/implementations/workflow/WorkflowInspectTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowInspectTool.js +186 -0
- package/dist/tools/implementations/workflow/WorkflowInspectTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowSchemaUtils.d.ts +49 -0
- package/dist/tools/implementations/workflow/WorkflowSchemaUtils.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowSchemaUtils.js +186 -0
- package/dist/tools/implementations/workflow/WorkflowSchemaUtils.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowTool.d.ts +129 -0
- package/dist/tools/implementations/workflow/WorkflowTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowTool.js +141 -0
- package/dist/tools/implementations/workflow/WorkflowTool.js.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowValidateTool.d.ts +11 -0
- package/dist/tools/implementations/workflow/WorkflowValidateTool.d.ts.map +1 -0
- package/dist/tools/implementations/workflow/WorkflowValidateTool.js +238 -0
- package/dist/tools/implementations/workflow/WorkflowValidateTool.js.map +1 -0
- package/dist/tools/index.d.ts +49 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +364 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/officeToolContract.d.ts +2 -0
- package/dist/tools/officeToolContract.d.ts.map +1 -0
- package/dist/tools/officeToolContract.js +2 -0
- package/dist/tools/officeToolContract.js.map +1 -0
- package/dist/tools/slidev/SlidevExporter.d.ts +15 -0
- package/dist/tools/slidev/SlidevExporter.d.ts.map +1 -0
- package/dist/tools/slidev/SlidevExporter.js +112 -0
- package/dist/tools/slidev/SlidevExporter.js.map +1 -0
- package/dist/tools/slidev/SlidevProjectBuilder.d.ts +22 -0
- package/dist/tools/slidev/SlidevProjectBuilder.d.ts.map +1 -0
- package/dist/tools/slidev/SlidevProjectBuilder.js +139 -0
- package/dist/tools/slidev/SlidevProjectBuilder.js.map +1 -0
- package/dist/types/canonical.d.ts +124 -0
- package/dist/types/canonical.d.ts.map +1 -0
- package/dist/types/canonical.js +8 -0
- package/dist/types/canonical.js.map +1 -0
- package/dist/utils/SmartTruncator.d.ts +22 -0
- package/dist/utils/SmartTruncator.d.ts.map +1 -0
- package/dist/utils/SmartTruncator.js +88 -0
- package/dist/utils/SmartTruncator.js.map +1 -0
- package/dist/utils/getPty.d.ts +42 -0
- package/dist/utils/getPty.d.ts.map +1 -0
- package/dist/utils/getPty.js +57 -0
- package/dist/utils/getPty.js.map +1 -0
- package/dist/utils/platform.d.ts +137 -0
- package/dist/utils/platform.d.ts.map +1 -0
- package/dist/utils/platform.js +374 -0
- package/dist/utils/platform.js.map +1 -0
- package/dist/utils/sleep.d.ts +8 -0
- package/dist/utils/sleep.d.ts.map +1 -0
- package/dist/utils/sleep.js +10 -0
- package/dist/utils/sleep.js.map +1 -0
- package/dist/utils/textTable.d.ts +27 -0
- package/dist/utils/textTable.d.ts.map +1 -0
- package/dist/utils/textTable.js +55 -0
- package/dist/utils/textTable.js.map +1 -0
- package/dist/version.d.ts +12 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +42 -0
- package/dist/version.js.map +1 -0
- package/dist/web-server/FileChangesApi.d.ts +131 -0
- package/dist/web-server/FileChangesApi.d.ts.map +1 -0
- package/dist/web-server/FileChangesApi.js +552 -0
- package/dist/web-server/FileChangesApi.js.map +1 -0
- package/dist/web-server/GitEnv.d.ts +6 -0
- package/dist/web-server/GitEnv.d.ts.map +1 -0
- package/dist/web-server/GitEnv.js +6 -0
- package/dist/web-server/GitEnv.js.map +1 -0
- package/dist/web-server/GitService.d.ts +151 -0
- package/dist/web-server/GitService.d.ts.map +1 -0
- package/dist/web-server/GitService.js +1172 -0
- package/dist/web-server/GitService.js.map +1 -0
- package/dist/web-server/LocalLlmGatewayRoutes.d.ts +45 -0
- package/dist/web-server/LocalLlmGatewayRoutes.d.ts.map +1 -0
- package/dist/web-server/LocalLlmGatewayRoutes.js +812 -0
- package/dist/web-server/LocalLlmGatewayRoutes.js.map +1 -0
- package/package.json +114 -0
package/dist/i18n.d.ts
ADDED
|
@@ -0,0 +1,871 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* i18n 国际化模块
|
|
3
|
+
*
|
|
4
|
+
* 所有用户可见的字符串都从此模块获取,按区域切换。
|
|
5
|
+
* 新增字符串时,必须同时提供 zh 和 en 两种语言。
|
|
6
|
+
*/
|
|
7
|
+
export type Language = 'zh' | 'en';
|
|
8
|
+
/**
|
|
9
|
+
* 所有可翻译的 key 的完整枚举
|
|
10
|
+
*/
|
|
11
|
+
export type I18nKey = 'error.connect_timeout' | 'error.request_timeout' | 'error.stream_timeout' | 'error.network_error' | 'error.provider_error' | 'error.rate_limited' | 'error.context_overflow' | 'error.auth_error' | 'error.quota_exhausted' | 'error.parse_error' | 'error.unknown_error' | 'progress.connecting' | 'progress.waiting_response' | 'progress.processing' | 'leader.waiting_model' | 'leader.organizing_context' | 'leader.planning_next' | 'leader.still_working' | 'turn.waiting_permission' | 'turn.waiting_permission_tool' | 'turn.waiting_review' | 'turn.waiting_user_answer' | 'turn.waiting_user_answer_preview' | 'turn.session_idle_waiting_instruction' | 'turn.waiting_user_input' | 'turn.user_intervention' | 'turn.user_intervention_preview' | 'turn.processing_user_input' | 'turn.processing_user_input_preview' | 'turn.waiting_workers' | 'turn.worker_recovery' | 'turn.leader_processing_dispatchable' | 'turn.leader_processing_session' | 'turn.session_idle' | 'permission.status.waiting_approval' | 'leader.status.processing_user_input' | 'llm.request_failed' | 'llm.stream_failed' | 'llm.stream_timeout' | 'llm.empty_messages' | 'llm.anthropic.request_failed' | 'llm.anthropic.stream_failed' | 'agent.llm_retrying' | 'leader.llm_retrying' | 'context.empty_response_retry' | 'cli.welcome' | 'cli.init_detect_no_config' | 'cli.provider_prompt' | 'cli.provider_option_openai' | 'cli.provider_option_anthropic' | 'cli.provider_option_auto' | 'cli.provider_choice_prompt' | 'cli.auto_detect_config' | 'cli.auto_detect_hint' | 'cli.api_key_prompt' | 'cli.api_key_step' | 'cli.base_url_prompt' | 'cli.detected_provider' | 'cli.model_select_step' | 'cli.model_select_hint' | 'cli.model_leader_prompt' | 'cli.model_agent_prompt' | 'cli.model_custom_input' | 'cli.model_same_as_leader' | 'cli.model_diff_agent_prompt' | 'cli.model_selected' | 'cli.current_config' | 'cli.config_save_failed' | 'cli.config_saved' | 'cli.check_permissions_hint' | 'cli.command_start' | 'cli.command_init' | 'cli.command_list' | 'cli.command_demo' | 'cli.command_doctor' | 'cli.command_about' | 'cli.session_not_found' | 'cli.session_resume_hint' | 'cli.session_resumed' | 'cli.session_count' | 'cli.session_status_active' | 'cli.session_status_completed' | 'cli.about_title' | 'cli.about_version' | 'cli.about_footer' | 'cli.about_author_title' | 'cli.about_author_body' | 'cli.about_license_title' | 'cli.about_license_body' | 'cli.about_tech_title' | 'cli.about_tech_dynamic' | 'cli.about_tech_session' | 'cli.about_tech_skills' | 'cli.about_tech_typesafe' | 'cli.about_tech_permission' | 'cli.about_vision_title' | 'cli.about_vision_body' | 'cmd.language.current' | 'cmd.language.changed' | 'cmd.language.invalid' | 'tui.leader.awaiting_input' | 'tui.leader.label' | 'tui.main.log_label' | 'tui.exit.goodbye' | 'tui.exit.ctrl_c_again' | 'tui.exit.input_cleared' | 'tui.command.clear_failed' | 'tui.command.compact_requested' | 'tui.command.compact_failed' | 'tui.command.language_changed' | 'tui.command.language_usage' | 'tui.command.intervene_usage' | 'tui.command.intervene_sent' | 'tui.command.intervene_failed' | 'tui.command.git_load_failed' | 'tui.command.config_usage' | 'tui.command.reset_view' | 'tui.command.error' | 'tui.input.target.plan' | 'tui.input.target.leader' | 'tui.input.route.plan' | 'tui.input.route.leader' | 'tui.input.route.agent' | 'tui.input.placeholder.plan' | 'tui.input.placeholder.leader' | 'tui.input.placeholder.agent' | 'tui.input.route.intervene' | 'tui.input.route.command' | 'tui.input.route.queued' | 'tui.input.route.leader_busy' | 'tui.input.route.leader_busy_queue' | 'tui.input.badge.intervene' | 'tui.input.badge.command' | 'tui.input.badge.queued' | 'tui.input.badge.processing' | 'tui.input.badge.direct' | 'tui.input.continue' | 'tui.input.processing' | 'tui.input.cancel_hint' | 'tui.shortcut.compact' | 'tui.shortcut.medium' | 'tui.shortcut.full' | 'tui.mode.header' | 'tui.mode.feedback' | 'tui.mode.feedback.success' | 'tui.mode.feedback.error' | 'tui.mode.collaboration' | 'tui.mode.route' | 'tui.mode.autonomy' | 'tui.mode.permission' | 'tui.mode.compact.collaboration' | 'tui.mode.compact.route' | 'tui.mode.compact.autonomy' | 'tui.mode.compact.permission' | 'tui.mode.collaboration.solo' | 'tui.mode.collaboration.team' | 'tui.mode.route.auto' | 'tui.mode.route.direct' | 'tui.mode.route.hybrid' | 'tui.mode.route.delegate' | 'tui.mode.route.unknown' | 'tui.mode.route.autoHint' | 'tui.mode.route.directHint' | 'tui.mode.route.delegateHint' | 'tui.mode.autonomy.review_first' | 'tui.mode.autonomy.balanced' | 'tui.mode.autonomy.autonomous' | 'tui.mode.permission.yolo' | 'tui.mode.permission.networked' | 'tui.mode.permission.dev' | 'tui.mode.permission.strict' | 'tui.mode.switched.collaboration' | 'tui.mode.switched.route' | 'tui.mode.switched.autonomy' | 'tui.mode.switched.permission' | 'tui.mode.error.collaboration' | 'tui.mode.error.route' | 'tui.mode.error.autonomy' | 'tui.mode.error.permission' | 'tui.selection.copied' | 'tui.paste.unresolved' | 'tui.paste.expanded' | 'tui.interrupt.done' | 'tui.terminal.too_narrow' | 'tui.terminal.too_narrow_hint' | 'tui.terminal.current_size' | 'tui.permission.request_title' | 'tui.permission.approve_hint' | 'tui.permission.hint.file' | 'tui.permission.hint.shell' | 'tui.permission.hint.generic' | 'tui.permission.check.file' | 'tui.permission.check.shell' | 'tui.permission.check.network' | 'tui.permission.check.generic' | 'tui.permission.risk.file' | 'tui.permission.risk.shell' | 'tui.permission.risk.read' | 'tui.permission.risk.search' | 'tui.permission.risk.network' | 'tui.permission.risk.generic' | 'tui.permission.summary.empty' | 'tui.permission.summary.call' | 'tui.permission.summary.result' | 'tui.permission.section.overview' | 'tui.permission.section.risk' | 'tui.permission.section.preview' | 'tui.permission.section.approval' | 'tui.permission.label.source' | 'tui.permission.label.tool' | 'tui.permission.label.reason' | 'tui.permission.label.checklist' | 'tui.permission.label.risk' | 'tui.permission.label.recent_call' | 'tui.permission.label.recent_result' | 'tui.permission.label.latest_result' | 'tui.permission.label.action' | 'tui.permission.label.tip' | 'tui.permission.action.approve_deny' | 'tui.permission.panel_title' | 'tui.permission.panel_footer' | 'tui.permission.state_updated' | 'tui.permission.request_log' | 'tui.leader.heartbeat.waiting_model' | 'tui.leader.heartbeat.organizing_context' | 'tui.leader.heartbeat.planning_next' | 'tui.leader.heartbeat.autonomous_recovery' | 'tui.leader.heartbeat.autonomous_orchestration' | 'tui.leader.heartbeat.working' | 'tui.leader.heartbeat.cancel_hint' | 'tui.leader.heartbeat.long_stall' | 'tui.leader.heartbeat.critical_stall' | 'tui.leader.heartbeat.tool_executing' | 'tui.meta.age.seconds' | 'tui.meta.age.minutes_seconds' | 'tui.meta.age.minutes' | 'tui.meta.tool' | 'tui.meta.output' | 'tui.meta.heartbeat' | 'tui.meta.progress' | 'tui.meta.backend' | 'tui.meta.external_session' | 'tui.meta.recovery' | 'tui.meta.approvals' | 'tui.meta.stream_outputs' | 'tui.meta.tasks' | 'tui.meta.cwd' | 'tui.meta.tabs' | 'tui.meta.permission' | 'tui.meta.route' | 'tui.meta.collaboration' | 'tui.meta.autonomy' | 'tui.meta.unconfigured' | 'tui.meta.control' | 'tui.meta.control_eternal' | 'tui.meta.control_manual' | 'tui.meta.eternal' | 'tui.meta.queue' | 'tui.meta.model' | 'tui.meta.tokens' | 'tui.meta.running' | 'tui.meta.done' | 'tui.meta.duration' | 'tui.runtime.empty_output' | 'tui.runtime.queue' | 'tui.runtime.approval' | 'tui.runtime.output' | 'tui.runtime.terminal' | 'tui.runtime.progress' | 'tui.runtime.pending' | 'tui.runtime.approval_line' | 'tui.runtime.output_line' | 'tui.runtime.terminal_line' | 'tui.runtime.terminal.suspended' | 'tui.runtime.terminal.running' | 'tui.panel.loading' | 'tui.panel.help.close' | 'tui.sidebar.chat' | 'tui.sidebar.tasks' | 'tui.sidebar.blueprint' | 'tui.sidebar.agents' | 'tui.sidebar.graph' | 'tui.sidebar.git' | 'tui.sidebar.memory' | 'tui.sidebar.memory_running' | 'tui.sidebar.memory_due' | 'tui.sidebar.settings' | 'tui.sidebar.status' | 'tui.sidebar.report' | 'tui.sidebar.cost' | 'tui.sidebar.mode' | 'tui.sidebar.workers' | 'tui.sidebar.context' | 'tui.sidebar.tokens' | 'tui.sidebar.model' | 'tui.settings.title' | 'tui.settings.help' | 'tui.settings.help_nav' | 'tui.settings.help_edit' | 'tui.settings.group.llm' | 'tui.settings.group.agents' | 'tui.settings.group.security' | 'tui.settings.group.ui' | 'tui.graph.title' | 'tui.graph.empty_disabled' | 'tui.graph.empty' | 'tui.graph.more_edges' | 'tui.graph.meta' | 'tui.git.not_repo' | 'tui.git.no_upstream' | 'tui.git.summary' | 'tui.git.staged' | 'tui.git.unstaged' | 'tui.git.untracked' | 'tui.git.recent_commits' | 'tui.git.diff_header' | 'tui.git.help' | 'tui.report.title' | 'tui.report.help' | 'tui.modal.resume_title' | 'tui.modal.history_title' | 'tui.modal.picker_help' | 'tui.agent.running_task' | 'tui.agent.started_task' | 'tui.agent.completed' | 'tui.agent.completed_self' | 'tui.agent.tool_call' | 'tui.agent.tool_result' | 'tui.agent.failed' | 'tui.agent.heartbeat_wait' | 'tui.agent.task_created' | 'tui.leader.interrupted' | 'tui.leader.session_completed' | 'tui.plan.approved' | 'tui.plan.rejected' | 'tui.plan.rewrite_wait' | 'tui.plan.resubmit_wait' | 'tui.plan.review_wait' | 'tui.plan.submitted' | 'tui.event.session_created' | 'tui.event.session_failed' | 'tui.event.session_deleted' | 'tui.event.skills_project' | 'tui.event.skills_plugin' | 'tui.event.skill_source.project' | 'tui.event.skill_source.plugin' | 'tui.event.skill_source.global' | 'tui.event.skill_source.builtin' | 'tui.event.question_required' | 'tui.event.control_eternal' | 'tui.event.control_manual' | 'tui.event.collaboration_mode_changed' | 'tui.event.route_changed' | 'tui.event.autonomy_mode_changed' | 'tui.event.permission_mode_changed' | 'tui.event.blackboard_disabled' | 'tui.event.llm_retry' | 'tui.event.llm_retry_attempt' | 'tui.event.network_fluctuation' | 'tui.event.agent_crashed' | 'tui.event.intervention' | 'tui.event.context_overflow' | 'tui.event.building_args' | 'tui.event.partial_json' | 'tui.event.session_synced' | 'tui.event.session_switched' | 'tui.event.wiki_started' | 'tui.event.wiki_completed' | 'tui.event.wiki_failed' | 'tui.event.unknown_error' | 'tui.event.context_compressed' | 'tui.event.queue_cleared' | 'tui.event.agent_stopped' | 'tui.diff.hidden' | 'tui.tool.call' | 'tui.tool.result' | 'tui.message.collapse_long' | 'tui.message.hidden_top' | 'tui.message.hidden_bottom' | 'tui.copy.success' | 'tui.copy.code_copied' | 'tui.copy.no_code' | 'tui.mouse.tracking_on' | 'tui.mouse.tracking_off' | 'tui.clipboard.image_not_found' | 'tui.clipboard.image_pasted' | 'slash.help.title' | 'slash.help.image_upload' | 'slash.help.image_example' | 'slash.help.shortcuts' | 'slash.help.ctrl_c' | 'slash.help.ctrl_s' | 'slash.help.ctrl_q' | 'slash.help.ctrl_x' | 'slash.help.ctrl_e' | 'slash.help.ctrl_n' | 'slash.help.ctrl_w' | 'slash.help.ctrl_g' | 'slash.help.ctrl_digits' | 'slash.help.history' | 'slash.help.mouse_wheel' | 'slash.help.skill' | 'slash.category.session' | 'slash.category.view' | 'slash.category.permission' | 'slash.category.project' | 'slash.category.model' | 'slash.category.tools' | 'slash.category.misc' | 'tui.task.no_tasks' | 'tui.task.depends_on' | 'tui.task.switch_hint' | 'tui.task.total' | 'tui.task.pending' | 'tui.task.in_progress' | 'tui.task.completed' | 'tui.team.title' | 'tui.team.no_agents' | 'tui.team.auto_refresh' | 'tui.team.never' | 'tui.team.seconds_ago' | 'tui.team.minutes_ago' | 'tui.team.hours_ago' | 'tui.team.pid' | 'tui.team.session' | 'tui.team.recovery' | 'tui.team.stderr' | 'tui.team.depends' | 'tui.team.stop_hint' | 'tui.notification.title' | 'tui.notification.empty' | 'tui.notification.unread' | 'tui.main.no_session' | 'tui.session.status_label' | 'tui.session.status_field' | 'tui.session.workspace' | 'tui.permissions.label' | 'tui.message.above_hint' | 'tui.message.no_messages' | 'tui.dag.status.completed' | 'tui.dag.status.in_progress' | 'tui.dag.status.pending' | 'tui.dag.status.blocked' | 'tui.dag.status.failed' | 'tui.dag.status.cancelled' | 'tui.dag.role.research' | 'tui.dag.role.coding' | 'tui.dag.role.review' | 'tui.dag.role.verify' | 'tui.dag.role.frontend' | 'tui.dag.role.backend' | 'tui.dag.role.qa' | 'tui.dag.role.ux_designer' | 'tui.dag.empty' | 'tui.dag.meta' | 'tui.dag.dependency' | 'tui.dag.progress' | 'tui.suggestions.help' | 'tui.error.component_crashed_log' | 'tui.error.component_stack_log' | 'tui.error.component_error' | 'tui.error.component_retry_hint' | 'tui.agent.runtime_title' | 'tui.agent.heartbeat_ok' | 'tui.agent.wait_progress' | 'tui.leader.agents_working_one' | 'tui.leader.agents_working_many' | 'tui.agent.spawn_task_desc' | 'tui.modal.task.field.status' | 'tui.modal.task.field.type' | 'tui.modal.task.field.dependency' | 'tui.modal.task.field.directory' | 'tui.modal.task.detail_title' | 'tui.modal.task.subject' | 'tui.modal.task.working_directory' | 'tui.modal.task.write_scope' | 'tui.plan.dependency' | 'tui.plan.status' | 'tui.plan.batch' | 'tui.plan.title' | 'tui.plan.goal' | 'tui.plan.analysis' | 'tui.plan.approach' | 'tui.plan.risks' | 'tui.plan.tasks' | 'tui.plan.strategy' | 'tui.plan.verification' | 'tui.plan.approve_hint' | 'tui.welcome.tagline' | 'tui.welcome.motto' | 'cli.farewell.motto' | 'cli.farewell.session' | 'cli.farewell.resume' | 'tui.welcome.shortcuts' | 'tui.welcome.shortcut.cmd' | 'tui.welcome.shortcut.interrupt' | 'tui.welcome.shortcut.dag' | 'tui.welcome.shortcut.tab' | 'tui.webui.not_available' | 'tui.webui.opened' | 'tui.webui.open_failed' | 'tui.worknotes.title' | 'tui.worknotes.empty' | 'tui.worknotes.count' | 'tui.picker.empty' | 'tui.picker.showing' | 'tui.picker.above' | 'tui.picker.below' | 'tui.agents.running' | 'tui.agents.done' | 'tui.agents.paused' | 'tui.agents.failed' | 'tui.cmdpicker.filter' | 'tui.cmdpicker.filter_hint' | 'tui.cmdpicker.help' | 'tui.rewind.title' | 'tui.rewind.help_pick' | 'tui.rewind.help_scope' | 'tui.rewind.help_confirm' | 'tui.rewind.empty' | 'tui.rewind.working_label' | 'tui.rewind.files_unit' | 'tui.rewind.just_now' | 'tui.rewind.minutes_ago' | 'tui.rewind.hours_ago' | 'tui.rewind.days_ago' | 'tui.rewind.target' | 'tui.rewind.impact_title' | 'tui.rewind.code_label' | 'tui.rewind.conv_label' | 'tui.rewind.messages_to_delete' | 'tui.rewind.no_messages' | 'tui.rewind.cross_session_warn' | 'tui.rewind.db_only_hint' | 'tui.rewind.scope_all' | 'tui.rewind.scope_all_desc' | 'tui.rewind.scope_code' | 'tui.rewind.scope_code_desc' | 'tui.rewind.scope_conversation' | 'tui.rewind.scope_conversation_desc' | 'tui.rewind.confirm_plan' | 'tui.rewind.plan_code' | 'tui.rewind.plan_conv' | 'tui.rewind.plan_conv_none' | 'tui.rewind.will_interrupt' | 'tui.rewind.confirm_label' | 'tui.rewind.cancel' | 'cmd.rewind.no_session' | 'cmd.rewind.no_workspace' | 'cmd.rewind.load_failed' | 'cmd.rewind.empty' | 'cmd.rewind.pick_loaded' | 'cmd.rewind.working_entry' | 'cmd.rewind.cp_not_found' | 'cmd.rewind.scope_loaded' | 'cmd.rewind.bad_scope' | 'cmd.rewind.db_only_conversation' | 'cmd.rewind.confirm_ready' | 'cmd.rewind.need_confirm' | 'cmd.rewind.exec_failed' | 'cmd.rewind.done_working' | 'cmd.rewind.done' | 'cmd.rewind.usage' | 'tui.question.title' | 'tui.question.tab_hint' | 'tui.question.submit' | 'tui.question.cancel' | 'tui.question.other' | 'tui.question.other_placeholder' | 'tui.question.answered' | 'tui.question.answered_count' | 'tui.question.help_single' | 'tui.question.help_multi' | 'tui.question.type_answer' | 'tui.question.help_multi_step' | 'tui.question.help_single_step' | 'tui.question.help_text_step' | 'tui.question.selected_count' | 'tui.question.multi_title' | 'error.session_not_found' | 'error.role_not_found' | 'error.filellock_timeout' | 'error.filerdlock_timeout' | 'error.filewrlock_timeout' | 'error.filellock_timeout_waiting' | 'error.filelock_need_readlock' | 'error.filelock_need_writelock' | 'error.task_out_of_scope' | 'error.worktree_not_git' | 'error.worktree_path_exists' | 'error.worktree_create_failed' | 'error.config_validation' | 'error.worker_write_failed' | 'error.redirect_unsafe' | 'error.redirect_limit' | 'error.redirect_no_location' | 'error.redirect_invalid' | 'error.redirect_invalid_url' | 'error.summary_empty_response' | 'error.skill_not_registered' | 'error.path_access_denied' | 'error.path_out_of_bounds' | 'error.write_out_of_scope' | 'error.ocr_file_not_found' | 'error.ocr_svg_unsupported' | 'error.ocr_invalid_data_uri' | 'error.ocr_unknown_source' | 'external_agent.role.claude_coding.description' | 'external_agent.role.codex_coding.description' | 'external_agent.disabled' | 'external_agent.command_not_found' | 'external_agent.model_missing' | 'external_agent.api_key_missing' | 'external_agent.base_url_missing' | 'external_agent.claude_incompatible' | 'external_agent.codex_incompatible' | 'external_agent.timeout' | 'external_agent.idle_timeout' | 'external_agent.terminated' | 'external_agent.exit_nonzero' | 'cli.instance_running' | 'cli.port_in_use' | 'cli.available_skills' | 'cli.no_skills';
|
|
12
|
+
export interface I18nStrings {
|
|
13
|
+
'error.connect_timeout': string;
|
|
14
|
+
'error.request_timeout': string;
|
|
15
|
+
'error.stream_timeout': string;
|
|
16
|
+
'error.network_error': string;
|
|
17
|
+
'error.provider_error': string;
|
|
18
|
+
'error.rate_limited': string;
|
|
19
|
+
'error.context_overflow': string;
|
|
20
|
+
'error.auth_error': string;
|
|
21
|
+
'error.quota_exhausted': string;
|
|
22
|
+
'error.parse_error': string;
|
|
23
|
+
'error.unknown_error': string;
|
|
24
|
+
'progress.connecting': string;
|
|
25
|
+
'progress.waiting_response': string;
|
|
26
|
+
'progress.processing': (seconds: number) => string;
|
|
27
|
+
'leader.waiting_model': (seconds: number, cancelHint: string) => string;
|
|
28
|
+
'leader.organizing_context': (seconds: number, cancelHint: string) => string;
|
|
29
|
+
'leader.planning_next': (seconds: number, cancelHint: string) => string;
|
|
30
|
+
'leader.still_working': (seconds: number, cancelHint: string) => string;
|
|
31
|
+
'turn.waiting_permission': string;
|
|
32
|
+
'turn.waiting_permission_tool': (toolName: string) => string;
|
|
33
|
+
'turn.waiting_review': string;
|
|
34
|
+
'turn.waiting_user_answer': string;
|
|
35
|
+
'turn.waiting_user_answer_preview': (preview: string) => string;
|
|
36
|
+
'turn.session_idle_waiting_instruction': string;
|
|
37
|
+
'turn.waiting_user_input': string;
|
|
38
|
+
'turn.user_intervention': string;
|
|
39
|
+
'turn.user_intervention_preview': (preview: string) => string;
|
|
40
|
+
'turn.processing_user_input': string;
|
|
41
|
+
'turn.processing_user_input_preview': (preview: string) => string;
|
|
42
|
+
'turn.waiting_workers': (count: number) => string;
|
|
43
|
+
'turn.worker_recovery': (count: number) => string;
|
|
44
|
+
'turn.leader_processing_dispatchable': (count: number) => string;
|
|
45
|
+
'turn.leader_processing_session': string;
|
|
46
|
+
'turn.session_idle': string;
|
|
47
|
+
'permission.status.waiting_approval': string;
|
|
48
|
+
'leader.status.processing_user_input': string;
|
|
49
|
+
'llm.request_failed': string;
|
|
50
|
+
'llm.stream_failed': string;
|
|
51
|
+
'llm.stream_timeout': string;
|
|
52
|
+
'llm.empty_messages': string;
|
|
53
|
+
'llm.anthropic.request_failed': string;
|
|
54
|
+
'llm.anthropic.stream_failed': string;
|
|
55
|
+
'agent.llm_retrying': (attempt: number, maxRetries: number) => string;
|
|
56
|
+
'leader.llm_retrying': (attempt: number, maxRetries: number) => string;
|
|
57
|
+
'context.empty_response_retry': string;
|
|
58
|
+
'cli.welcome': string;
|
|
59
|
+
'cli.init_detect_no_config': string;
|
|
60
|
+
'cli.provider_prompt': string;
|
|
61
|
+
'cli.provider_option_openai': string;
|
|
62
|
+
'cli.provider_option_anthropic': string;
|
|
63
|
+
'cli.provider_option_auto': string;
|
|
64
|
+
'cli.provider_choice_prompt': string;
|
|
65
|
+
'cli.auto_detect_config': string;
|
|
66
|
+
'cli.auto_detect_hint': string;
|
|
67
|
+
'cli.api_key_prompt': string;
|
|
68
|
+
'cli.api_key_step': string;
|
|
69
|
+
'cli.base_url_prompt': string;
|
|
70
|
+
'cli.detected_provider': string;
|
|
71
|
+
'cli.model_select_step': string;
|
|
72
|
+
'cli.model_select_hint': string;
|
|
73
|
+
'cli.model_leader_prompt': string;
|
|
74
|
+
'cli.model_agent_prompt': string;
|
|
75
|
+
'cli.model_custom_input': string;
|
|
76
|
+
'cli.model_same_as_leader': string;
|
|
77
|
+
'cli.model_diff_agent_prompt': string;
|
|
78
|
+
'cli.model_selected': (model: string) => string;
|
|
79
|
+
'cli.current_config': string;
|
|
80
|
+
'cli.config_save_failed': string;
|
|
81
|
+
'cli.config_saved': string;
|
|
82
|
+
'cli.check_permissions_hint': string;
|
|
83
|
+
'cli.command_start': string;
|
|
84
|
+
'cli.command_init': string;
|
|
85
|
+
'cli.command_list': string;
|
|
86
|
+
'cli.command_demo': string;
|
|
87
|
+
'cli.command_doctor': string;
|
|
88
|
+
'cli.command_about': string;
|
|
89
|
+
'cli.session_not_found': string;
|
|
90
|
+
'cli.session_resume_hint': string;
|
|
91
|
+
'cli.session_resumed': string;
|
|
92
|
+
'cli.session_count': (count: number) => string;
|
|
93
|
+
'cli.session_status_active': string;
|
|
94
|
+
'cli.session_status_completed': string;
|
|
95
|
+
'cli.about_title': string;
|
|
96
|
+
'cli.about_version': string;
|
|
97
|
+
'cli.about_footer': string;
|
|
98
|
+
'cli.about_author_title': string;
|
|
99
|
+
'cli.about_author_body': string;
|
|
100
|
+
'cli.about_license_title': string;
|
|
101
|
+
'cli.about_license_body': string;
|
|
102
|
+
'cli.about_tech_title': string;
|
|
103
|
+
'cli.about_tech_dynamic': string;
|
|
104
|
+
'cli.about_tech_session': string;
|
|
105
|
+
'cli.about_tech_skills': string;
|
|
106
|
+
'cli.about_tech_typesafe': string;
|
|
107
|
+
'cli.about_tech_permission': string;
|
|
108
|
+
'cli.about_vision_title': string;
|
|
109
|
+
'cli.about_vision_body': string;
|
|
110
|
+
'cmd.language.current': (lang: string) => string;
|
|
111
|
+
'cmd.language.changed': (lang: string) => string;
|
|
112
|
+
'cmd.language.invalid': (lang: string) => string;
|
|
113
|
+
'tui.leader.awaiting_input': string;
|
|
114
|
+
'tui.leader.label': string;
|
|
115
|
+
'tui.main.log_label': string;
|
|
116
|
+
'tui.exit.goodbye': string;
|
|
117
|
+
'tui.exit.ctrl_c_again': string;
|
|
118
|
+
'tui.exit.input_cleared': string;
|
|
119
|
+
'tui.command.clear_failed': (message: string) => string;
|
|
120
|
+
'tui.command.compact_requested': string;
|
|
121
|
+
'tui.command.compact_failed': (message: string) => string;
|
|
122
|
+
'tui.command.language_changed': (lang: string) => string;
|
|
123
|
+
'tui.command.language_usage': string;
|
|
124
|
+
'tui.command.intervene_usage': string;
|
|
125
|
+
'tui.command.intervene_sent': (agent: string) => string;
|
|
126
|
+
'tui.command.intervene_failed': (message: string) => string;
|
|
127
|
+
'tui.command.git_load_failed': (message: string) => string;
|
|
128
|
+
'tui.command.config_usage': string;
|
|
129
|
+
'tui.command.reset_view': string;
|
|
130
|
+
'tui.command.error': (message: string) => string;
|
|
131
|
+
'tui.input.target.plan': string;
|
|
132
|
+
'tui.input.target.leader': string;
|
|
133
|
+
'tui.input.route.plan': string;
|
|
134
|
+
'tui.input.route.leader': string;
|
|
135
|
+
'tui.input.route.agent': (agent: string) => string;
|
|
136
|
+
'tui.input.placeholder.plan': string;
|
|
137
|
+
'tui.input.placeholder.leader': string;
|
|
138
|
+
'tui.input.placeholder.agent': (agent: string) => string;
|
|
139
|
+
'tui.input.route.intervene': (agent: string) => string;
|
|
140
|
+
'tui.input.route.command': (target: string) => string;
|
|
141
|
+
'tui.input.route.queued': (target: string) => string;
|
|
142
|
+
'tui.input.route.leader_busy': string;
|
|
143
|
+
'tui.input.route.leader_busy_queue': string;
|
|
144
|
+
'tui.input.badge.intervene': string;
|
|
145
|
+
'tui.input.badge.command': string;
|
|
146
|
+
'tui.input.badge.queued': (count: number) => string;
|
|
147
|
+
'tui.input.badge.processing': string;
|
|
148
|
+
'tui.input.badge.direct': string;
|
|
149
|
+
'tui.input.continue': string;
|
|
150
|
+
'tui.input.processing': string;
|
|
151
|
+
'tui.input.cancel_hint': string;
|
|
152
|
+
'tui.shortcut.compact': string;
|
|
153
|
+
'tui.shortcut.medium': string;
|
|
154
|
+
'tui.shortcut.full': string;
|
|
155
|
+
'tui.mode.header': string;
|
|
156
|
+
'tui.mode.feedback': (message: string) => string;
|
|
157
|
+
'tui.mode.feedback.success': (message: string) => string;
|
|
158
|
+
'tui.mode.feedback.error': (message: string) => string;
|
|
159
|
+
'tui.mode.collaboration': (current: string, next: string) => string;
|
|
160
|
+
'tui.mode.route': (current: string, next: string) => string;
|
|
161
|
+
'tui.mode.autonomy': (current: string, next: string) => string;
|
|
162
|
+
'tui.mode.permission': (current: string, next: string) => string;
|
|
163
|
+
'tui.mode.compact.collaboration': (current: string) => string;
|
|
164
|
+
'tui.mode.compact.route': (current: string) => string;
|
|
165
|
+
'tui.mode.compact.autonomy': (current: string) => string;
|
|
166
|
+
'tui.mode.compact.permission': (current: string) => string;
|
|
167
|
+
'tui.mode.collaboration.solo': string;
|
|
168
|
+
'tui.mode.collaboration.team': string;
|
|
169
|
+
'tui.mode.route.auto': string;
|
|
170
|
+
'tui.mode.route.direct': string;
|
|
171
|
+
'tui.mode.route.hybrid': string;
|
|
172
|
+
'tui.mode.route.delegate': string;
|
|
173
|
+
'tui.mode.route.unknown': string;
|
|
174
|
+
'tui.mode.route.autoHint': string;
|
|
175
|
+
'tui.mode.route.directHint': string;
|
|
176
|
+
'tui.mode.route.delegateHint': string;
|
|
177
|
+
'tui.mode.autonomy.review_first': string;
|
|
178
|
+
'tui.mode.autonomy.balanced': string;
|
|
179
|
+
'tui.mode.autonomy.autonomous': string;
|
|
180
|
+
'tui.mode.permission.yolo': string;
|
|
181
|
+
'tui.mode.permission.networked': string;
|
|
182
|
+
'tui.mode.permission.dev': string;
|
|
183
|
+
'tui.mode.permission.strict': string;
|
|
184
|
+
'tui.mode.switched.collaboration': (mode: string) => string;
|
|
185
|
+
'tui.mode.switched.route': (mode: string) => string;
|
|
186
|
+
'tui.mode.switched.autonomy': (mode: string) => string;
|
|
187
|
+
'tui.mode.switched.permission': (mode: string) => string;
|
|
188
|
+
'tui.mode.error.collaboration': (mode: string, message: string) => string;
|
|
189
|
+
'tui.mode.error.route': (mode: string, message: string) => string;
|
|
190
|
+
'tui.mode.error.autonomy': (mode: string, message: string) => string;
|
|
191
|
+
'tui.mode.error.permission': (mode: string, message: string) => string;
|
|
192
|
+
'tui.selection.copied': string;
|
|
193
|
+
'tui.paste.unresolved': string;
|
|
194
|
+
'tui.paste.expanded': (count: number, chars: number) => string;
|
|
195
|
+
'tui.interrupt.done': string;
|
|
196
|
+
'tui.terminal.too_narrow': string;
|
|
197
|
+
'tui.terminal.too_narrow_hint': string;
|
|
198
|
+
'tui.terminal.current_size': (cols: number, rows: number) => string;
|
|
199
|
+
'tui.permission.request_title': (source: string, workerName: string, toolName: string) => string;
|
|
200
|
+
'tui.permission.approve_hint': (hint: string) => string;
|
|
201
|
+
'tui.permission.hint.file': string;
|
|
202
|
+
'tui.permission.hint.shell': string;
|
|
203
|
+
'tui.permission.hint.generic': string;
|
|
204
|
+
'tui.permission.check.file': string;
|
|
205
|
+
'tui.permission.check.shell': string;
|
|
206
|
+
'tui.permission.check.network': string;
|
|
207
|
+
'tui.permission.check.generic': string;
|
|
208
|
+
'tui.permission.risk.file': string;
|
|
209
|
+
'tui.permission.risk.shell': string;
|
|
210
|
+
'tui.permission.risk.read': string;
|
|
211
|
+
'tui.permission.risk.search': string;
|
|
212
|
+
'tui.permission.risk.network': string;
|
|
213
|
+
'tui.permission.risk.generic': string;
|
|
214
|
+
'tui.permission.summary.empty': string;
|
|
215
|
+
'tui.permission.summary.call': (summary: string) => string;
|
|
216
|
+
'tui.permission.summary.result': (summary: string) => string;
|
|
217
|
+
'tui.permission.section.overview': string;
|
|
218
|
+
'tui.permission.section.risk': string;
|
|
219
|
+
'tui.permission.section.preview': string;
|
|
220
|
+
'tui.permission.section.approval': string;
|
|
221
|
+
'tui.permission.label.source': string;
|
|
222
|
+
'tui.permission.label.tool': string;
|
|
223
|
+
'tui.permission.label.reason': string;
|
|
224
|
+
'tui.permission.label.checklist': string;
|
|
225
|
+
'tui.permission.label.risk': string;
|
|
226
|
+
'tui.permission.label.recent_call': string;
|
|
227
|
+
'tui.permission.label.recent_result': string;
|
|
228
|
+
'tui.permission.label.latest_result': string;
|
|
229
|
+
'tui.permission.label.action': string;
|
|
230
|
+
'tui.permission.label.tip': string;
|
|
231
|
+
'tui.permission.action.approve_deny': string;
|
|
232
|
+
'tui.permission.panel_title': string;
|
|
233
|
+
'tui.permission.panel_footer': string;
|
|
234
|
+
'tui.permission.state_updated': (summary: string) => string;
|
|
235
|
+
'tui.permission.request_log': (requestId: string, source: string, workerName: string, toolName: string, reason: string, previewHint: string) => string;
|
|
236
|
+
'tui.leader.heartbeat.waiting_model': string;
|
|
237
|
+
'tui.leader.heartbeat.organizing_context': string;
|
|
238
|
+
'tui.leader.heartbeat.planning_next': string;
|
|
239
|
+
'tui.leader.heartbeat.autonomous_recovery': string;
|
|
240
|
+
'tui.leader.heartbeat.autonomous_orchestration': string;
|
|
241
|
+
'tui.leader.heartbeat.working': string;
|
|
242
|
+
'tui.leader.heartbeat.cancel_hint': string;
|
|
243
|
+
'tui.leader.heartbeat.long_stall': (status: string, seconds: number) => string;
|
|
244
|
+
'tui.leader.heartbeat.critical_stall': (status: string, seconds: number) => string;
|
|
245
|
+
'tui.leader.heartbeat.tool_executing': (tool: string, seconds: number) => string;
|
|
246
|
+
'tui.meta.age.seconds': (seconds: number) => string;
|
|
247
|
+
'tui.meta.age.minutes_seconds': (minutes: number, seconds: number) => string;
|
|
248
|
+
'tui.meta.age.minutes': (minutes: number) => string;
|
|
249
|
+
'tui.meta.tool': (tool: string, age: string) => string;
|
|
250
|
+
'tui.meta.output': (age: string) => string;
|
|
251
|
+
'tui.meta.heartbeat': (age: string) => string;
|
|
252
|
+
'tui.meta.progress': (message: string) => string;
|
|
253
|
+
'tui.meta.backend': (backend: string) => string;
|
|
254
|
+
'tui.meta.external_session': (id: string) => string;
|
|
255
|
+
'tui.meta.recovery': (action: string) => string;
|
|
256
|
+
'tui.meta.approvals': (count: number) => string;
|
|
257
|
+
'tui.meta.stream_outputs': (count: number) => string;
|
|
258
|
+
'tui.meta.tasks': (total: number, inProgress: number, pending: number, blocked: number, completed: number, failed: number) => string;
|
|
259
|
+
'tui.meta.cwd': (workspace: string) => string;
|
|
260
|
+
'tui.meta.tabs': (tabs: string, hiddenCount: number) => string;
|
|
261
|
+
'tui.meta.permission': (summary: string) => string;
|
|
262
|
+
'tui.meta.route': (mode: string, preference: string) => string;
|
|
263
|
+
'tui.meta.collaboration': (mode: string, activeTeamName: string) => string;
|
|
264
|
+
'tui.meta.autonomy': (mode: string, lifecyclePhase: string, modeGeneration: number) => string;
|
|
265
|
+
'tui.meta.unconfigured': string;
|
|
266
|
+
'tui.meta.control': (mode: string) => string;
|
|
267
|
+
'tui.meta.control_eternal': string;
|
|
268
|
+
'tui.meta.control_manual': string;
|
|
269
|
+
'tui.meta.eternal': (status: string, idleCount: number, patrolCount: number) => string;
|
|
270
|
+
'tui.meta.queue': (count: number) => string;
|
|
271
|
+
'tui.meta.model': (model: string) => string;
|
|
272
|
+
'tui.meta.tokens': (tokens: string) => string;
|
|
273
|
+
'tui.meta.running': (count: number) => string;
|
|
274
|
+
'tui.meta.done': (done: number, total: number) => string;
|
|
275
|
+
'tui.meta.duration': (duration: string) => string;
|
|
276
|
+
'tui.runtime.empty_output': string;
|
|
277
|
+
'tui.runtime.queue': (count: number) => string;
|
|
278
|
+
'tui.runtime.approval': (count: number) => string;
|
|
279
|
+
'tui.runtime.output': (count: number) => string;
|
|
280
|
+
'tui.runtime.terminal': (count: number) => string;
|
|
281
|
+
'tui.runtime.progress': (message: string) => string;
|
|
282
|
+
'tui.runtime.pending': (message: string) => string;
|
|
283
|
+
'tui.runtime.approval_line': (toolName: string, reason: string, hint: string) => string;
|
|
284
|
+
'tui.runtime.output_line': (toolName: string, stream: string, pidText: string, summary: string) => string;
|
|
285
|
+
'tui.runtime.terminal_line': (terminalId: string, pidText: string, status: string) => string;
|
|
286
|
+
'tui.runtime.terminal.suspended': string;
|
|
287
|
+
'tui.runtime.terminal.running': string;
|
|
288
|
+
'tui.panel.loading': string;
|
|
289
|
+
'tui.panel.help.close': string;
|
|
290
|
+
'tui.sidebar.chat': string;
|
|
291
|
+
'tui.sidebar.tasks': string;
|
|
292
|
+
'tui.sidebar.blueprint': string;
|
|
293
|
+
'tui.sidebar.agents': string;
|
|
294
|
+
'tui.sidebar.graph': string;
|
|
295
|
+
'tui.sidebar.git': string;
|
|
296
|
+
'tui.sidebar.memory': string;
|
|
297
|
+
'tui.sidebar.memory_running': string;
|
|
298
|
+
'tui.sidebar.memory_due': string;
|
|
299
|
+
'tui.sidebar.settings': string;
|
|
300
|
+
'tui.sidebar.status': string;
|
|
301
|
+
'tui.sidebar.report': string;
|
|
302
|
+
'tui.sidebar.cost': string;
|
|
303
|
+
'tui.sidebar.mode': string;
|
|
304
|
+
'tui.sidebar.workers': string;
|
|
305
|
+
'tui.sidebar.context': string;
|
|
306
|
+
'tui.sidebar.tokens': string;
|
|
307
|
+
'tui.sidebar.model': string;
|
|
308
|
+
'tui.settings.title': string;
|
|
309
|
+
'tui.settings.help': string;
|
|
310
|
+
'tui.settings.help_nav': string;
|
|
311
|
+
'tui.settings.help_edit': string;
|
|
312
|
+
'tui.settings.group.llm': string;
|
|
313
|
+
'tui.settings.group.agents': string;
|
|
314
|
+
'tui.settings.group.security': string;
|
|
315
|
+
'tui.settings.group.ui': string;
|
|
316
|
+
'tui.graph.title': string;
|
|
317
|
+
'tui.graph.empty_disabled': string;
|
|
318
|
+
'tui.graph.empty': string;
|
|
319
|
+
'tui.graph.more_edges': (count: number) => string;
|
|
320
|
+
'tui.graph.meta': (nodes: number, factsConfirmed: number, factsTotal: number, openIntents: number, edges: number) => string;
|
|
321
|
+
'tui.git.not_repo': string;
|
|
322
|
+
'tui.git.no_upstream': string;
|
|
323
|
+
'tui.git.summary': (staged: number, unstaged: number, untracked: number, conflicted: number) => string;
|
|
324
|
+
'tui.git.staged': string;
|
|
325
|
+
'tui.git.unstaged': string;
|
|
326
|
+
'tui.git.untracked': string;
|
|
327
|
+
'tui.git.recent_commits': string;
|
|
328
|
+
'tui.git.diff_header': (start: number, end: number, total: number) => string;
|
|
329
|
+
'tui.git.help': string;
|
|
330
|
+
'tui.report.title': string;
|
|
331
|
+
'tui.report.help': string;
|
|
332
|
+
'tui.modal.resume_title': (count: number) => string;
|
|
333
|
+
'tui.modal.history_title': (count: number) => string;
|
|
334
|
+
'tui.modal.picker_help': string;
|
|
335
|
+
'tui.agent.running_task': (taskId: string) => string;
|
|
336
|
+
'tui.agent.started_task': (taskId: string, backend: string) => string;
|
|
337
|
+
'tui.agent.completed': (agentName: string, iterations: string, toolCalls: string) => string;
|
|
338
|
+
'tui.agent.completed_self': (iterations: string, toolCalls: string) => string;
|
|
339
|
+
'tui.agent.tool_call': (tool: string) => string;
|
|
340
|
+
'tui.agent.tool_result': (tool: string) => string;
|
|
341
|
+
'tui.agent.failed': (error: string, recovery: string) => string;
|
|
342
|
+
'tui.agent.heartbeat_wait': string;
|
|
343
|
+
'tui.agent.task_created': (taskId: string, subject: string) => string;
|
|
344
|
+
'tui.leader.interrupted': (stoppedAgents: number) => string;
|
|
345
|
+
'tui.leader.session_completed': (sessionId: string) => string;
|
|
346
|
+
'tui.plan.approved': string;
|
|
347
|
+
'tui.plan.rejected': (feedback: string) => string;
|
|
348
|
+
'tui.plan.rewrite_wait': string;
|
|
349
|
+
'tui.plan.resubmit_wait': string;
|
|
350
|
+
'tui.plan.review_wait': string;
|
|
351
|
+
'tui.plan.submitted': string;
|
|
352
|
+
'tui.event.session_created': (sessionId: string) => string;
|
|
353
|
+
'tui.event.session_failed': (sessionId: string, error: string) => string;
|
|
354
|
+
'tui.event.session_deleted': (sessionId: string) => string;
|
|
355
|
+
'tui.event.skills_project': (count: number) => string;
|
|
356
|
+
'tui.event.skills_plugin': (count: number) => string;
|
|
357
|
+
'tui.event.skill_source.project': string;
|
|
358
|
+
'tui.event.skill_source.plugin': string;
|
|
359
|
+
'tui.event.skill_source.global': string;
|
|
360
|
+
'tui.event.skill_source.builtin': string;
|
|
361
|
+
'tui.event.question_required': string;
|
|
362
|
+
'tui.event.control_eternal': string;
|
|
363
|
+
'tui.event.control_manual': string;
|
|
364
|
+
'tui.event.collaboration_mode_changed': (mode: string) => string;
|
|
365
|
+
'tui.event.route_changed': (mode: string) => string;
|
|
366
|
+
'tui.event.autonomy_mode_changed': (mode: string) => string;
|
|
367
|
+
'tui.event.permission_mode_changed': (mode: string) => string;
|
|
368
|
+
'tui.event.blackboard_disabled': (reason: string) => string;
|
|
369
|
+
'tui.event.llm_retry': (attempt: string, kind: string, message: string) => string;
|
|
370
|
+
'tui.event.llm_retry_attempt': (attempt: number) => string;
|
|
371
|
+
'tui.event.network_fluctuation': string;
|
|
372
|
+
'tui.event.agent_crashed': (agentName: string, detail: string) => string;
|
|
373
|
+
'tui.event.intervention': (agentName: string, messageType: string, content: string) => string;
|
|
374
|
+
'tui.event.context_overflow': (tokens: string, threshold: string) => string;
|
|
375
|
+
'tui.event.building_args': (tool: string) => string;
|
|
376
|
+
'tui.event.partial_json': (partial: string) => string;
|
|
377
|
+
'tui.event.session_synced': (sessionId: string) => string;
|
|
378
|
+
'tui.event.session_switched': string;
|
|
379
|
+
'tui.event.wiki_started': string;
|
|
380
|
+
'tui.event.wiki_completed': (docs: number | null) => string;
|
|
381
|
+
'tui.event.wiki_failed': (error: string) => string;
|
|
382
|
+
'tui.event.unknown_error': string;
|
|
383
|
+
'tui.event.context_compressed': (oldTokens: string, newTokens: string) => string;
|
|
384
|
+
'tui.event.queue_cleared': (count: number) => string;
|
|
385
|
+
'tui.event.agent_stopped': (name: string) => string;
|
|
386
|
+
'tui.diff.hidden': (count: number) => string;
|
|
387
|
+
'tui.tool.call': (toolName: string, preview: string) => string;
|
|
388
|
+
'tui.tool.result': (toolName: string, preview: string) => string;
|
|
389
|
+
'tui.message.collapse_long': string;
|
|
390
|
+
'tui.message.hidden_top': (count: number) => string;
|
|
391
|
+
'tui.message.hidden_bottom': (count: number) => string;
|
|
392
|
+
'tui.copy.success': string;
|
|
393
|
+
'tui.copy.code_copied': (lines: number) => string;
|
|
394
|
+
'tui.copy.no_code': string;
|
|
395
|
+
'tui.mouse.tracking_on': string;
|
|
396
|
+
'tui.mouse.tracking_off': string;
|
|
397
|
+
'tui.clipboard.image_not_found': string;
|
|
398
|
+
'tui.clipboard.image_pasted': (path: string) => string;
|
|
399
|
+
'slash.help.title': string;
|
|
400
|
+
'slash.help.image_upload': string;
|
|
401
|
+
'slash.help.image_example': string;
|
|
402
|
+
'slash.help.shortcuts': string;
|
|
403
|
+
'slash.help.ctrl_c': string;
|
|
404
|
+
'slash.help.ctrl_s': string;
|
|
405
|
+
'slash.help.ctrl_q': string;
|
|
406
|
+
'slash.help.ctrl_x': string;
|
|
407
|
+
'slash.help.ctrl_e': string;
|
|
408
|
+
'slash.help.ctrl_n': string;
|
|
409
|
+
'slash.help.ctrl_w': string;
|
|
410
|
+
'slash.help.ctrl_g': string;
|
|
411
|
+
'slash.help.ctrl_digits': string;
|
|
412
|
+
'slash.help.history': string;
|
|
413
|
+
'slash.help.mouse_wheel': string;
|
|
414
|
+
'slash.help.skill': string;
|
|
415
|
+
'slash.category.session': string;
|
|
416
|
+
'slash.category.view': string;
|
|
417
|
+
'slash.category.permission': string;
|
|
418
|
+
'slash.category.project': string;
|
|
419
|
+
'slash.category.model': string;
|
|
420
|
+
'slash.category.tools': string;
|
|
421
|
+
'slash.category.misc': string;
|
|
422
|
+
'tui.task.no_tasks': string;
|
|
423
|
+
'tui.task.depends_on': string;
|
|
424
|
+
'tui.task.switch_hint': string;
|
|
425
|
+
'tui.task.total': string;
|
|
426
|
+
'tui.task.pending': string;
|
|
427
|
+
'tui.task.in_progress': string;
|
|
428
|
+
'tui.task.completed': string;
|
|
429
|
+
'tui.team.title': string;
|
|
430
|
+
'tui.team.no_agents': string;
|
|
431
|
+
'tui.team.auto_refresh': string;
|
|
432
|
+
'tui.team.never': string;
|
|
433
|
+
'tui.team.seconds_ago': (seconds: number) => string;
|
|
434
|
+
'tui.team.minutes_ago': (minutes: number) => string;
|
|
435
|
+
'tui.team.hours_ago': (hours: number) => string;
|
|
436
|
+
'tui.team.pid': string;
|
|
437
|
+
'tui.team.session': string;
|
|
438
|
+
'tui.team.recovery': string;
|
|
439
|
+
'tui.team.stderr': string;
|
|
440
|
+
'tui.team.depends': string;
|
|
441
|
+
'tui.team.stop_hint': string;
|
|
442
|
+
'tui.notification.title': string;
|
|
443
|
+
'tui.notification.empty': string;
|
|
444
|
+
'tui.notification.unread': string;
|
|
445
|
+
'tui.main.no_session': string;
|
|
446
|
+
'tui.session.status_label': string;
|
|
447
|
+
'tui.session.status_field': string;
|
|
448
|
+
'tui.session.workspace': string;
|
|
449
|
+
'tui.permissions.label': string;
|
|
450
|
+
'tui.message.above_hint': (count: number) => string;
|
|
451
|
+
'tui.message.no_messages': string;
|
|
452
|
+
'tui.dag.status.completed': string;
|
|
453
|
+
'tui.dag.status.in_progress': string;
|
|
454
|
+
'tui.dag.status.pending': string;
|
|
455
|
+
'tui.dag.status.blocked': string;
|
|
456
|
+
'tui.dag.status.failed': string;
|
|
457
|
+
'tui.dag.status.cancelled': string;
|
|
458
|
+
'tui.dag.role.research': string;
|
|
459
|
+
'tui.dag.role.coding': string;
|
|
460
|
+
'tui.dag.role.review': string;
|
|
461
|
+
'tui.dag.role.verify': string;
|
|
462
|
+
'tui.dag.role.frontend': string;
|
|
463
|
+
'tui.dag.role.backend': string;
|
|
464
|
+
'tui.dag.role.qa': string;
|
|
465
|
+
'tui.dag.role.ux_designer': string;
|
|
466
|
+
'tui.dag.empty': string;
|
|
467
|
+
'tui.dag.meta': (tasks: number, levels: number, agents: number, page: string) => string;
|
|
468
|
+
'tui.dag.dependency': string;
|
|
469
|
+
'tui.dag.progress': string;
|
|
470
|
+
'tui.suggestions.help': string;
|
|
471
|
+
'tui.error.component_crashed_log': (name: string) => string;
|
|
472
|
+
'tui.error.component_stack_log': string;
|
|
473
|
+
'tui.error.component_error': (name: string) => string;
|
|
474
|
+
'tui.error.component_retry_hint': string;
|
|
475
|
+
'tui.agent.runtime_title': string;
|
|
476
|
+
'tui.agent.heartbeat_ok': (phase: string) => string;
|
|
477
|
+
'tui.agent.wait_progress': string;
|
|
478
|
+
'tui.leader.agents_working_one': (agent: string) => string;
|
|
479
|
+
'tui.leader.agents_working_many': (count: number) => string;
|
|
480
|
+
'tui.agent.spawn_task_desc': (taskId: string) => string;
|
|
481
|
+
'tui.modal.task.field.status': string;
|
|
482
|
+
'tui.modal.task.field.type': string;
|
|
483
|
+
'tui.modal.task.field.dependency': string;
|
|
484
|
+
'tui.modal.task.field.directory': string;
|
|
485
|
+
'tui.modal.task.detail_title': (taskId: string) => string;
|
|
486
|
+
'tui.modal.task.subject': string;
|
|
487
|
+
'tui.modal.task.working_directory': string;
|
|
488
|
+
'tui.modal.task.write_scope': string;
|
|
489
|
+
'tui.plan.dependency': (deps: string) => string;
|
|
490
|
+
'tui.plan.status': (status: string) => string;
|
|
491
|
+
'tui.plan.batch': (index: number, group: string) => string;
|
|
492
|
+
'tui.plan.title': string;
|
|
493
|
+
'tui.plan.goal': string;
|
|
494
|
+
'tui.plan.analysis': string;
|
|
495
|
+
'tui.plan.approach': string;
|
|
496
|
+
'tui.plan.risks': string;
|
|
497
|
+
'tui.plan.tasks': string;
|
|
498
|
+
'tui.plan.strategy': string;
|
|
499
|
+
'tui.plan.verification': string;
|
|
500
|
+
'tui.plan.approve_hint': string;
|
|
501
|
+
'tui.welcome.tagline': string;
|
|
502
|
+
'tui.welcome.motto': string;
|
|
503
|
+
'cli.farewell.motto': string;
|
|
504
|
+
'cli.farewell.session': string;
|
|
505
|
+
'cli.farewell.resume': string;
|
|
506
|
+
'tui.welcome.shortcuts': string;
|
|
507
|
+
'tui.welcome.shortcut.cmd': string;
|
|
508
|
+
'tui.webui.not_available': string;
|
|
509
|
+
'tui.webui.opened': (url: string) => string;
|
|
510
|
+
'tui.webui.open_failed': string;
|
|
511
|
+
'tui.welcome.shortcut.interrupt': string;
|
|
512
|
+
'tui.welcome.shortcut.dag': string;
|
|
513
|
+
'tui.welcome.shortcut.tab': string;
|
|
514
|
+
'tui.worknotes.title': string;
|
|
515
|
+
'tui.worknotes.empty': string;
|
|
516
|
+
'tui.worknotes.count': (count: number) => string;
|
|
517
|
+
'tui.picker.empty': string;
|
|
518
|
+
'tui.picker.showing': (start: number, end: number, total: number) => string;
|
|
519
|
+
'tui.picker.above': (count: number) => string;
|
|
520
|
+
'tui.picker.below': (count: number) => string;
|
|
521
|
+
'tui.agents.running': (count: number) => string;
|
|
522
|
+
'tui.agents.done': (count: number) => string;
|
|
523
|
+
'tui.agents.paused': (count: number) => string;
|
|
524
|
+
'tui.agents.failed': (count: number) => string;
|
|
525
|
+
'tui.cmdpicker.filter': string;
|
|
526
|
+
'tui.cmdpicker.filter_hint': string;
|
|
527
|
+
'tui.cmdpicker.help': string;
|
|
528
|
+
'tui.rewind.title': string;
|
|
529
|
+
'tui.rewind.help_pick': string;
|
|
530
|
+
'tui.rewind.help_scope': string;
|
|
531
|
+
'tui.rewind.help_confirm': string;
|
|
532
|
+
'tui.rewind.empty': string;
|
|
533
|
+
'tui.rewind.working_label': string;
|
|
534
|
+
'tui.rewind.files_unit': string;
|
|
535
|
+
'tui.rewind.just_now': string;
|
|
536
|
+
'tui.rewind.minutes_ago': (n: number) => string;
|
|
537
|
+
'tui.rewind.hours_ago': (n: number) => string;
|
|
538
|
+
'tui.rewind.days_ago': (n: number) => string;
|
|
539
|
+
'tui.rewind.target': string;
|
|
540
|
+
'tui.rewind.impact_title': string;
|
|
541
|
+
'tui.rewind.code_label': string;
|
|
542
|
+
'tui.rewind.conv_label': string;
|
|
543
|
+
'tui.rewind.messages_to_delete': (n: number) => string;
|
|
544
|
+
'tui.rewind.no_messages': string;
|
|
545
|
+
'tui.rewind.cross_session_warn': (ids: string) => string;
|
|
546
|
+
'tui.rewind.db_only_hint': string;
|
|
547
|
+
'tui.rewind.scope_all': string;
|
|
548
|
+
'tui.rewind.scope_all_desc': string;
|
|
549
|
+
'tui.rewind.scope_code': string;
|
|
550
|
+
'tui.rewind.scope_code_desc': string;
|
|
551
|
+
'tui.rewind.scope_conversation': string;
|
|
552
|
+
'tui.rewind.scope_conversation_desc': string;
|
|
553
|
+
'tui.rewind.confirm_plan': string;
|
|
554
|
+
'tui.rewind.plan_code': (n: number) => string;
|
|
555
|
+
'tui.rewind.plan_conv': (n: number) => string;
|
|
556
|
+
'tui.rewind.plan_conv_none': string;
|
|
557
|
+
'tui.rewind.will_interrupt': string;
|
|
558
|
+
'tui.rewind.confirm_label': string;
|
|
559
|
+
'tui.rewind.cancel': string;
|
|
560
|
+
'cmd.rewind.no_session': string;
|
|
561
|
+
'cmd.rewind.no_workspace': string;
|
|
562
|
+
'cmd.rewind.load_failed': (err: string) => string;
|
|
563
|
+
'cmd.rewind.empty': string;
|
|
564
|
+
'cmd.rewind.pick_loaded': (count: number) => string;
|
|
565
|
+
'cmd.rewind.working_entry': (count: number) => string;
|
|
566
|
+
'cmd.rewind.cp_not_found': (id: string) => string;
|
|
567
|
+
'cmd.rewind.scope_loaded': (label: string) => string;
|
|
568
|
+
'cmd.rewind.bad_scope': (raw: string) => string;
|
|
569
|
+
'cmd.rewind.db_only_conversation': string;
|
|
570
|
+
'cmd.rewind.confirm_ready': string;
|
|
571
|
+
'cmd.rewind.need_confirm': string;
|
|
572
|
+
'cmd.rewind.exec_failed': (err: string) => string;
|
|
573
|
+
'cmd.rewind.done_working': string;
|
|
574
|
+
'cmd.rewind.done': (scope: string, label: string, truncated: number) => string;
|
|
575
|
+
'cmd.rewind.usage': string;
|
|
576
|
+
'tui.question.title': string;
|
|
577
|
+
'tui.question.tab_hint': string;
|
|
578
|
+
'tui.question.submit': string;
|
|
579
|
+
'tui.question.cancel': string;
|
|
580
|
+
'tui.question.other': string;
|
|
581
|
+
'tui.question.other_placeholder': string;
|
|
582
|
+
'tui.question.answered': string;
|
|
583
|
+
'tui.question.answered_count': (answered: number, total: number) => string;
|
|
584
|
+
'tui.question.help_single': string;
|
|
585
|
+
'tui.question.help_multi': string;
|
|
586
|
+
'tui.question.type_answer': string;
|
|
587
|
+
'tui.question.help_multi_step': (isFinal: boolean) => string;
|
|
588
|
+
'tui.question.help_single_step': (isFinal: boolean) => string;
|
|
589
|
+
'tui.question.help_text_step': (isFinal: boolean) => string;
|
|
590
|
+
'tui.question.selected_count': (count: number) => string;
|
|
591
|
+
'tui.question.multi_title': (count: number) => string;
|
|
592
|
+
'tui.settings.feedback.invalid_number': string;
|
|
593
|
+
'tui.settings.feedback.validation_failed': string;
|
|
594
|
+
'tui.settings.feedback.write_failed': string;
|
|
595
|
+
'tui.settings.feedback.saved': (label: string) => string;
|
|
596
|
+
'tui.settings.feedback.schema_failed': string;
|
|
597
|
+
'tui.settings.feedback.save_failed': string;
|
|
598
|
+
'tui.settings.feedback.value_set': (label: string, value: string) => string;
|
|
599
|
+
'tui.stream.phrases': string[];
|
|
600
|
+
'tui.stream.tool.write': string;
|
|
601
|
+
'tui.stream.tool.edit': string;
|
|
602
|
+
'tui.stream.tool.notebookedit': string;
|
|
603
|
+
'tui.stream.tool.read': string;
|
|
604
|
+
'tui.stream.tool.bash': string;
|
|
605
|
+
'tui.stream.tool.powershell': string;
|
|
606
|
+
'tui.stream.tool.grep': string;
|
|
607
|
+
'tui.stream.tool.glob': string;
|
|
608
|
+
'tui.stream.tool.webfetch': string;
|
|
609
|
+
'tui.stream.tool.websearch': string;
|
|
610
|
+
'tui.stream.tool.agent': string;
|
|
611
|
+
'tui.stream.tool.skill': string;
|
|
612
|
+
'tui.stream.tool.default': (tool: string) => string;
|
|
613
|
+
'tui.stream.phase.running_tool': (tool: string) => string;
|
|
614
|
+
'tui.stream.phase.waiting_model': string;
|
|
615
|
+
'tui.stream.phase.retrying': string;
|
|
616
|
+
'tui.stream.phase.compacting': (tool?: string) => string;
|
|
617
|
+
'tui.stream.phase.streaming': string;
|
|
618
|
+
'tui.stream.phase.tool_executing': (tool: string) => string;
|
|
619
|
+
'tui.stream.building_params': (partial: string) => string;
|
|
620
|
+
'tui.stream.chunk': (index: string | number, total: string | number) => string;
|
|
621
|
+
'tui.stream.tokens_up': (n: string) => string;
|
|
622
|
+
'tui.stream.tokens_down': (n: string) => string;
|
|
623
|
+
'tui.stream.llm_summary': (tool?: string) => string;
|
|
624
|
+
'tui.stream.compacting_conversation': string;
|
|
625
|
+
'tui.stream.esc_interrupt': string;
|
|
626
|
+
'tui.memory.title': string;
|
|
627
|
+
'tui.memory.loading_hint': string;
|
|
628
|
+
'tui.memory.never': string;
|
|
629
|
+
'tui.memory.kind.dream': string;
|
|
630
|
+
'tui.memory.kind.distill': string;
|
|
631
|
+
'tui.memory.pipeline_due': string;
|
|
632
|
+
'tui.memory.pipeline_scheduled': string;
|
|
633
|
+
'tui.memory.pipeline_interval': (interval: number, lookback: number) => string;
|
|
634
|
+
'tui.memory.pipeline_last': (date: string) => string;
|
|
635
|
+
'tui.memory.memory_lines': (lines: number, bytes: string) => string;
|
|
636
|
+
'tui.memory.memory_not_created': string;
|
|
637
|
+
'tui.memory.checkpoints_assets': (checkpoints: number, assets: number) => string;
|
|
638
|
+
'tui.memory.recent_assets': string;
|
|
639
|
+
'tui.memory.no_assets': string;
|
|
640
|
+
'tui.memory.run_hint': string;
|
|
641
|
+
'tui.tips': string[];
|
|
642
|
+
'tui.tool.unserializable': string;
|
|
643
|
+
'tui.tool.summary.calling': (tool: string) => string;
|
|
644
|
+
'tui.tool.summary.reading': (path: string, lineInfo: string) => string;
|
|
645
|
+
'tui.tool.summary.listing': (path: string) => string;
|
|
646
|
+
'tui.tool.summary.fetching': (url: string) => string;
|
|
647
|
+
'tui.tool.summary.searching': (query: string) => string;
|
|
648
|
+
'tui.tool.summary.writing': (path: string) => string;
|
|
649
|
+
'tui.tool.summary.running': (cmd: string) => string;
|
|
650
|
+
'tui.tool.summary.args': (keys: string) => string;
|
|
651
|
+
'tui.tool.summary.creating': (path: string) => string;
|
|
652
|
+
'tui.tool.summary.patching': (path: string, hunks: number) => string;
|
|
653
|
+
'tui.tool.summary.globbing': (pattern: string) => string;
|
|
654
|
+
'tui.tool.summary.searching_code': (detail: string) => string;
|
|
655
|
+
'tui.tool.summary.python': (code: string) => string;
|
|
656
|
+
'tui.tool.summary.http': (method: string, url: string) => string;
|
|
657
|
+
'tui.tool.summary.browser': (action: string, target: string) => string;
|
|
658
|
+
'tui.tool.summary.browser_verify': (url: string) => string;
|
|
659
|
+
'tui.tool.summary.screenshot': (url: string) => string;
|
|
660
|
+
'tui.tool.summary.git': (action: string) => string;
|
|
661
|
+
'tui.tool.summary.creating_task': (subject: string) => string;
|
|
662
|
+
'tui.tool.summary.updating_task': (taskId: string) => string;
|
|
663
|
+
'tui.tool.summary.updating_status': (taskId: string, status: string) => string;
|
|
664
|
+
'tui.tool.summary.dispatching': (taskId: string, agent: string) => string;
|
|
665
|
+
'tui.tool.summary.exploring': (goal: string) => string;
|
|
666
|
+
'tui.tool.summary.agent_op': (op: string, agent: string) => string;
|
|
667
|
+
'tui.tool.summary.messaging': (recipient: string) => string;
|
|
668
|
+
'tui.tool.summary.writing_note': (summary: string) => string;
|
|
669
|
+
'tui.tool.summary.plan': (action: string, detail: string) => string;
|
|
670
|
+
'tui.tool.summary.memory_op': (action: string) => string;
|
|
671
|
+
'tui.tool.summary.asking': (question: string) => string;
|
|
672
|
+
'tui.tool.summary.finish': (summary: string) => string;
|
|
673
|
+
'tui.tool.summary.download_link': (path: string) => string;
|
|
674
|
+
'tui.tool.summary.defining_role': (role: string) => string;
|
|
675
|
+
'tui.tool.result.line_single': (line: number) => string;
|
|
676
|
+
'tui.tool.result.line_range': (a: number, b: number) => string;
|
|
677
|
+
'tui.tool.result.read_lines': (range: string, total: number) => string;
|
|
678
|
+
'tui.tool.result.read_chars': (chars: number) => string;
|
|
679
|
+
'tui.tool.result.no_output': string;
|
|
680
|
+
'tui.tool.result.listed': (entries: number, files: number, dirs: number) => string;
|
|
681
|
+
'tui.tool.result.fetched': (chars: number) => string;
|
|
682
|
+
'tui.tool.result.searched': (count: number) => string;
|
|
683
|
+
'tui.tool.result.generic': (chars: number) => string;
|
|
684
|
+
'tui.tool.result.created': string;
|
|
685
|
+
'tui.tool.result.patched': (added: number, removed: number) => string;
|
|
686
|
+
'tui.tool.result.searched_code': (count: number) => string;
|
|
687
|
+
'tui.tool.result.git': string;
|
|
688
|
+
'tui.tool.result.dispatched': string;
|
|
689
|
+
'tui.tool.result.browser': string;
|
|
690
|
+
'tui.tool.result.executed': (lines: number) => string;
|
|
691
|
+
'tui.tool.result.http': (status: string | number) => string;
|
|
692
|
+
'tui.tool.result.task_done': string;
|
|
693
|
+
'tui.leader.status.completed': string;
|
|
694
|
+
'tui.leader.status.leading': string;
|
|
695
|
+
'tui.leader.status.thinking': string;
|
|
696
|
+
'tui.leader.status.observing': string;
|
|
697
|
+
'tui.leader.status.executing': string;
|
|
698
|
+
'tui.leader.status.replanning': string;
|
|
699
|
+
'tui.leader.status.wrapping_up': string;
|
|
700
|
+
'tui.leader.status_log': (status: string) => string;
|
|
701
|
+
'tui.leader.mode_changed': (mode: string, reason: string) => string;
|
|
702
|
+
'tui.agent.status.calling': (tool: string) => string;
|
|
703
|
+
'tui.agent.status.observing': string;
|
|
704
|
+
'tui.agent.status.working': string;
|
|
705
|
+
'tui.agent.status.thinking': string;
|
|
706
|
+
'tui.agent.launched_count': (count: number) => string;
|
|
707
|
+
'tui.event.orchestration_rejected': (eventType: string, reason: string) => string;
|
|
708
|
+
'tui.event.skills_ready': (count: number) => string;
|
|
709
|
+
'tui.event.skill_invoked': (name: string, sourceTag: string, summary: string) => string;
|
|
710
|
+
'tui.event.soul_updated': (path: string, count: number) => string;
|
|
711
|
+
'tui.meta.eternal_goal': (goal: string) => string;
|
|
712
|
+
'tui.meta.pid': (pid: number) => string;
|
|
713
|
+
'tui.meta.stderr': (text: string) => string;
|
|
714
|
+
'tui.meta.shell': (text: string) => string;
|
|
715
|
+
'tui.diff.hunk': (n: number) => string;
|
|
716
|
+
'tui.runtime.shell': (text: string) => string;
|
|
717
|
+
'tui.channel.trimmed': (n: number) => string;
|
|
718
|
+
'tui.error.not_a_tty': string;
|
|
719
|
+
'tui.error.not_a_tty_hint': string;
|
|
720
|
+
'tui.modal.tool_result': string;
|
|
721
|
+
'tui.modal.tool_calling': (tool: string) => string;
|
|
722
|
+
'tui.code.empty': string;
|
|
723
|
+
'tui.modal.task.header.id': string;
|
|
724
|
+
'tui.modal.task.header.status': string;
|
|
725
|
+
'tui.modal.task.header.type': string;
|
|
726
|
+
'tui.modal.task.header.agent': string;
|
|
727
|
+
'tui.modal.task.header.subject': string;
|
|
728
|
+
'tui.modal.task.field.agent': string;
|
|
729
|
+
'tui.modal.session.header.session': string;
|
|
730
|
+
'tui.modal.session.header.status': string;
|
|
731
|
+
'tui.modal.session.header.time': string;
|
|
732
|
+
'tui.modal.session.header.preview': string;
|
|
733
|
+
'tui.modal.skill.header.skill': string;
|
|
734
|
+
'tui.modal.skill.header.source': string;
|
|
735
|
+
'tui.modal.skill.header.preview': string;
|
|
736
|
+
'tui.home.brand': string;
|
|
737
|
+
'tui.home.version_prefix': string;
|
|
738
|
+
'tui.home.input_hint': string;
|
|
739
|
+
'tui.header.tokens': string;
|
|
740
|
+
'tui.message.tool_default': string;
|
|
741
|
+
'tui.message.tool_done': string;
|
|
742
|
+
'tui.message.tool_running': string;
|
|
743
|
+
'tui.message.code_default': string;
|
|
744
|
+
'tui.message.thinking_summary': (count: number) => string;
|
|
745
|
+
'tui.dag.title': string;
|
|
746
|
+
'tui.dag.help': string;
|
|
747
|
+
'tui.dag.stat_total': string;
|
|
748
|
+
'tui.leader.mode_label': string;
|
|
749
|
+
'tui.leader.control_label': string;
|
|
750
|
+
'tui.leader.control_manual': string;
|
|
751
|
+
'tui.sidebar.brand': string;
|
|
752
|
+
'tui.sidebar.mode_chat': string;
|
|
753
|
+
'tui.sidebar.mode_plan': string;
|
|
754
|
+
'tui.sidebar.mode_agent': string;
|
|
755
|
+
'tui.git.title': string;
|
|
756
|
+
'tui.graph.edges_header': (count: number) => string;
|
|
757
|
+
'tui.worknotes.blockers': string;
|
|
758
|
+
'tui.question.other_label': string;
|
|
759
|
+
'tui.task.empty_dash': string;
|
|
760
|
+
'tui.settings.options': string;
|
|
761
|
+
'tui.agents.default_name': string;
|
|
762
|
+
'tui.session.status_active_default': string;
|
|
763
|
+
'tui.session.orchestration': string;
|
|
764
|
+
'tui.team.no_task': string;
|
|
765
|
+
'tui.team.tools_count': (count: number) => string;
|
|
766
|
+
'tui.code.being_written': string;
|
|
767
|
+
'tui.code.generating_more': string;
|
|
768
|
+
'tui.code.first_lines_hidden': (count: number) => string;
|
|
769
|
+
'tui.table.column_fallback': (index: number) => string;
|
|
770
|
+
'error.session_not_found': (id: string) => string;
|
|
771
|
+
'error.role_not_found': (role: string) => string;
|
|
772
|
+
'error.filellock_timeout': (path: string, secs: number) => string;
|
|
773
|
+
'error.filerdlock_timeout': (path: string) => string;
|
|
774
|
+
'error.filewrlock_timeout': (path: string) => string;
|
|
775
|
+
'error.filellock_timeout_waiting': (path: string) => string;
|
|
776
|
+
'error.filelock_need_readlock': string;
|
|
777
|
+
'error.filelock_need_writelock': string;
|
|
778
|
+
'error.task_out_of_scope': (abs: string, root: string) => string;
|
|
779
|
+
'error.worktree_not_git': string;
|
|
780
|
+
'error.worktree_path_exists': (path: string) => string;
|
|
781
|
+
'error.worktree_create_failed': (stderr: string) => string;
|
|
782
|
+
'error.config_validation': string;
|
|
783
|
+
'error.worker_write_failed': (path: string, err: string) => string;
|
|
784
|
+
'error.redirect_unsafe': (reason: string) => string;
|
|
785
|
+
'error.redirect_limit': (max: number) => string;
|
|
786
|
+
'error.redirect_no_location': string;
|
|
787
|
+
'error.redirect_invalid': (reason: string) => string;
|
|
788
|
+
'error.redirect_invalid_url': (reason: string) => string;
|
|
789
|
+
'error.summary_empty_response': string;
|
|
790
|
+
'error.skill_not_registered': (name: string, available: string) => string;
|
|
791
|
+
'error.path_access_denied': string;
|
|
792
|
+
'error.path_out_of_bounds': string;
|
|
793
|
+
'error.write_out_of_scope': (path: string, roots: string) => string;
|
|
794
|
+
'error.ocr_file_not_found': (path: string) => string;
|
|
795
|
+
'error.ocr_svg_unsupported': string;
|
|
796
|
+
'error.ocr_invalid_data_uri': string;
|
|
797
|
+
'error.ocr_unknown_source': string;
|
|
798
|
+
'external_agent.role.claude_coding.description': string;
|
|
799
|
+
'external_agent.role.codex_coding.description': string;
|
|
800
|
+
'external_agent.disabled': (backend: string) => string;
|
|
801
|
+
'external_agent.command_not_found': (backend: string, command: string) => string;
|
|
802
|
+
'external_agent.model_missing': (backend: string) => string;
|
|
803
|
+
'external_agent.api_key_missing': (backend: string, model: string, envKey: string) => string;
|
|
804
|
+
'external_agent.base_url_missing': (backend: string, model: string) => string;
|
|
805
|
+
'external_agent.claude_incompatible': (model: string, provider: string, baseUrl: string) => string;
|
|
806
|
+
'external_agent.codex_incompatible': (model: string, provider: string, baseUrl: string) => string;
|
|
807
|
+
'external_agent.timeout': (backend: string, ms: number) => string;
|
|
808
|
+
'external_agent.idle_timeout': (backend: string, ms: number) => string;
|
|
809
|
+
'external_agent.terminated': (backend: string) => string;
|
|
810
|
+
'external_agent.exit_nonzero': (backend: string, code: number | null, signal: string, stderr: string) => string;
|
|
811
|
+
'cli.instance_running': (pid: number, port: number) => string;
|
|
812
|
+
'cli.port_in_use': (old: number, actual: number) => string;
|
|
813
|
+
'cli.available_skills': string;
|
|
814
|
+
'cli.no_skills': string;
|
|
815
|
+
}
|
|
816
|
+
/**
|
|
817
|
+
* 设置当前语言
|
|
818
|
+
*/
|
|
819
|
+
export declare function setLanguage(lang: Language): void;
|
|
820
|
+
/**
|
|
821
|
+
* 获取当前语言
|
|
822
|
+
*/
|
|
823
|
+
export declare function getLanguage(): Language;
|
|
824
|
+
/**
|
|
825
|
+
* 设置会话语言(用于 LLM 交互语言控制)
|
|
826
|
+
*/
|
|
827
|
+
export declare function setSessionLanguage(lang: Language): void;
|
|
828
|
+
/**
|
|
829
|
+
* 获取会话语言
|
|
830
|
+
*/
|
|
831
|
+
export declare function getSessionLanguage(): Language;
|
|
832
|
+
/**
|
|
833
|
+
* 规范化语言代码,接受 'zh'/'en'/'zh-CN'/'en-US' 等变体
|
|
834
|
+
*/
|
|
835
|
+
export declare function normalizeLanguage(raw: string): Language;
|
|
836
|
+
/**
|
|
837
|
+
* 便捷函数:获取错误标签
|
|
838
|
+
*/
|
|
839
|
+
export declare function errorLabel(key: I18nKey & `error.${string}`): string;
|
|
840
|
+
/**
|
|
841
|
+
* 仅供校验:返回 zh/en 两套 catalog 的 key 集合(含懒加载的 cli.* 合并结果),
|
|
842
|
+
* 用于 parity 测试,确保两语言一一对应、杜绝只加了一种语言的 key。
|
|
843
|
+
*/
|
|
844
|
+
export declare function getI18nCatalogKeys(): {
|
|
845
|
+
zh: string[];
|
|
846
|
+
en: string[];
|
|
847
|
+
};
|
|
848
|
+
/**
|
|
849
|
+
* 便捷函数:获取进度文本
|
|
850
|
+
*/
|
|
851
|
+
export declare function progressText(elapsedSec: number): string;
|
|
852
|
+
/**
|
|
853
|
+
* 获取翻译字符串 - 自动合并 CLI key 于首次调用
|
|
854
|
+
*
|
|
855
|
+
* 对于参数化的字符串(函数类型),调用时传入参数会自动展开。
|
|
856
|
+
* 对于简单字符串 key,第二个参数被忽略。
|
|
857
|
+
*/
|
|
858
|
+
export declare function t<K extends string>(key: K, ...args: unknown[]): string;
|
|
859
|
+
/**
|
|
860
|
+
* 获取数组型文案(如旋转短语列表)。
|
|
861
|
+
* key 不存在或值非数组时返回空数组。
|
|
862
|
+
*/
|
|
863
|
+
export declare function getList<K extends string>(key: K): string[];
|
|
864
|
+
/**
|
|
865
|
+
* 获取 LLM 语言指令
|
|
866
|
+
*
|
|
867
|
+
* 返回一个用于附加到 LLM 提示词的语言指令字符串,
|
|
868
|
+
* 指示模型用当前语言回复。
|
|
869
|
+
*/
|
|
870
|
+
export declare function getLlmLanguageDirective(): string;
|
|
871
|
+
//# sourceMappingURL=i18n.d.ts.map
|