@xenosystem/agent-interface-ui 0.1.24 → 0.1.26
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/adapters/agentHostPlatformBridge.d.ts.map +1 -1
- package/dist/adapters/agentHostPlatformBridge.js +96 -16
- package/dist/adapters/agentHostPlatformBridge.js.map +1 -1
- package/dist/adapters/hubAgentPlatformBridge.d.ts.map +1 -1
- package/dist/adapters/hubAgentPlatformBridge.js +2 -0
- package/dist/adapters/hubAgentPlatformBridge.js.map +1 -1
- package/dist/adapters/scopedBackupBridge.d.ts +4 -0
- package/dist/adapters/scopedBackupBridge.d.ts.map +1 -0
- package/dist/adapters/scopedBackupBridge.js +49 -0
- package/dist/adapters/scopedBackupBridge.js.map +1 -0
- package/dist/adapters/xenoAgentCompatibilityBridge.d.ts.map +1 -1
- package/dist/adapters/xenoAgentCompatibilityBridge.js +9 -1
- package/dist/adapters/xenoAgentCompatibilityBridge.js.map +1 -1
- package/dist/agent.css +13227 -0
- package/dist/components/agent/AgentIdentityGenerator.d.ts +16 -0
- package/dist/components/agent/AgentIdentityGenerator.d.ts.map +1 -0
- package/dist/components/agent/AgentIdentityGenerator.js +80 -0
- package/dist/components/agent/AgentIdentityGenerator.js.map +1 -0
- package/dist/components/agent/AgentInterface.d.ts +1 -0
- package/dist/components/agent/AgentInterface.d.ts.map +1 -1
- package/dist/components/agent/AgentInterface.js +1816 -643
- package/dist/components/agent/AgentInterface.js.map +1 -1
- package/dist/components/agent/AgentNotificationBanner.d.ts +10 -0
- package/dist/components/agent/AgentNotificationBanner.d.ts.map +1 -0
- package/dist/components/agent/AgentNotificationBanner.js +28 -0
- package/dist/components/agent/AgentNotificationBanner.js.map +1 -0
- package/dist/components/agent/AgentOnboarding.d.ts +16 -2
- package/dist/components/agent/AgentOnboarding.d.ts.map +1 -1
- package/dist/components/agent/AgentOnboarding.js +93 -201
- package/dist/components/agent/AgentOnboarding.js.map +1 -1
- package/dist/components/agent/AgentView.d.ts.map +1 -1
- package/dist/components/agent/AgentView.js +533 -308
- package/dist/components/agent/AgentView.js.map +1 -1
- package/dist/components/agent/AgentWorkbenchPanel.d.ts +3 -1
- package/dist/components/agent/AgentWorkbenchPanel.d.ts.map +1 -1
- package/dist/components/agent/AgentWorkbenchPanel.js +3 -2
- package/dist/components/agent/AgentWorkbenchPanel.js.map +1 -1
- package/dist/components/agent/AgentWorkspaceBrowserPanel.d.ts +4 -1
- package/dist/components/agent/AgentWorkspaceBrowserPanel.d.ts.map +1 -1
- package/dist/components/agent/AgentWorkspaceBrowserPanel.js +23 -195
- package/dist/components/agent/AgentWorkspaceBrowserPanel.js.map +1 -1
- package/dist/components/agent/AgentsWorkspaceView.d.ts +12 -0
- package/dist/components/agent/AgentsWorkspaceView.d.ts.map +1 -0
- package/dist/components/agent/AgentsWorkspaceView.js +129 -0
- package/dist/components/agent/AgentsWorkspaceView.js.map +1 -0
- package/dist/components/agent/DevelopmentCoordinationPanel.d.ts +7 -0
- package/dist/components/agent/DevelopmentCoordinationPanel.d.ts.map +1 -1
- package/dist/components/agent/DevelopmentCoordinationPanel.js +57 -49
- package/dist/components/agent/DevelopmentCoordinationPanel.js.map +1 -1
- package/dist/components/agent/KnowledgePanel.d.ts.map +1 -1
- package/dist/components/agent/KnowledgePanel.js +17 -67
- package/dist/components/agent/KnowledgePanel.js.map +1 -1
- package/dist/components/agent/LiveConversationCollaboration.d.ts +27 -0
- package/dist/components/agent/LiveConversationCollaboration.d.ts.map +1 -0
- package/dist/components/agent/LiveConversationCollaboration.js +127 -0
- package/dist/components/agent/LiveConversationCollaboration.js.map +1 -0
- package/dist/components/agent/MonacoDiffWorkbenchEditor.d.ts.map +1 -1
- package/dist/components/agent/MonacoDiffWorkbenchEditor.js +1 -1
- package/dist/components/agent/MonacoDiffWorkbenchEditor.js.map +1 -1
- package/dist/components/agent/MonacoWorkbenchEditor.d.ts.map +1 -1
- package/dist/components/agent/MonacoWorkbenchEditor.js +3 -3
- package/dist/components/agent/MonacoWorkbenchEditor.js.map +1 -1
- package/dist/components/agent/OwnedBrowserController.d.ts +55 -0
- package/dist/components/agent/OwnedBrowserController.d.ts.map +1 -0
- package/dist/components/agent/OwnedBrowserController.js +166 -0
- package/dist/components/agent/OwnedBrowserController.js.map +1 -0
- package/dist/components/agent/OwnedWorkforceView.d.ts +10 -0
- package/dist/components/agent/OwnedWorkforceView.d.ts.map +1 -0
- package/dist/components/agent/OwnedWorkforceView.js +256 -0
- package/dist/components/agent/OwnedWorkforceView.js.map +1 -0
- package/dist/components/agent/PluginManager.d.ts +34 -0
- package/dist/components/agent/PluginManager.d.ts.map +1 -1
- package/dist/components/agent/PluginManager.js +187 -126
- package/dist/components/agent/PluginManager.js.map +1 -1
- package/dist/components/agent/ProjectsWorkspaceView.d.ts +14 -0
- package/dist/components/agent/ProjectsWorkspaceView.d.ts.map +1 -0
- package/dist/components/agent/ProjectsWorkspaceView.js +176 -0
- package/dist/components/agent/ProjectsWorkspaceView.js.map +1 -0
- package/dist/components/agent/RunReviewPanel.d.ts +8 -13
- package/dist/components/agent/RunReviewPanel.d.ts.map +1 -1
- package/dist/components/agent/RunReviewPanel.js +120 -106
- package/dist/components/agent/RunReviewPanel.js.map +1 -1
- package/dist/components/agent/ScheduledWorkspaceView.d.ts +19 -0
- package/dist/components/agent/ScheduledWorkspaceView.d.ts.map +1 -0
- package/dist/components/agent/ScheduledWorkspaceView.js +150 -0
- package/dist/components/agent/ScheduledWorkspaceView.js.map +1 -0
- package/dist/components/agent/SdkSessionPanel.d.ts +25 -0
- package/dist/components/agent/SdkSessionPanel.d.ts.map +1 -0
- package/dist/components/agent/SdkSessionPanel.js +15 -0
- package/dist/components/agent/SdkSessionPanel.js.map +1 -0
- package/dist/components/agent/SlashCommandAutocomplete.d.ts +12 -0
- package/dist/components/agent/SlashCommandAutocomplete.d.ts.map +1 -0
- package/dist/components/agent/SlashCommandAutocomplete.js +33 -0
- package/dist/components/agent/SlashCommandAutocomplete.js.map +1 -0
- package/dist/components/agent/TeamsWorkspaceView.d.ts +12 -0
- package/dist/components/agent/TeamsWorkspaceView.d.ts.map +1 -0
- package/dist/components/agent/TeamsWorkspaceView.js +127 -0
- package/dist/components/agent/TeamsWorkspaceView.js.map +1 -0
- package/dist/components/agent/WorkspacePersistenceNotice.d.ts +3 -0
- package/dist/components/agent/WorkspacePersistenceNotice.d.ts.map +1 -0
- package/dist/components/agent/WorkspacePersistenceNotice.js +23 -0
- package/dist/components/agent/WorkspacePersistenceNotice.js.map +1 -0
- package/dist/components/agent/acp/AcpAgentConfigForm.d.ts +1 -0
- package/dist/components/agent/acp/AcpAgentConfigForm.d.ts.map +1 -1
- package/dist/components/agent/acp/AcpAgentConfigForm.js +47 -14
- package/dist/components/agent/acp/AcpAgentConfigForm.js.map +1 -1
- package/dist/components/agent/acp/AcpAgentDiagnosticsPanel.js +1 -1
- package/dist/components/agent/acp/AcpAgentDiagnosticsPanel.js.map +1 -1
- package/dist/components/agent/acp/AcpAgentManager.d.ts.map +1 -1
- package/dist/components/agent/acp/AcpAgentManager.js +18 -18
- package/dist/components/agent/acp/AcpAgentManager.js.map +1 -1
- package/dist/components/agent/acp/AcpAgentTestResultPanel.js +1 -1
- package/dist/components/agent/acp/AcpAgentTestResultPanel.js.map +1 -1
- package/dist/components/agent/acp/AcpApprovalPanel.js +2 -2
- package/dist/components/agent/acp/AcpApprovalPanel.js.map +1 -1
- package/dist/components/agent/acp/AcpCertificationPanel.js +1 -1
- package/dist/components/agent/acp/AcpCertificationPanel.js.map +1 -1
- package/dist/components/agent/acp/AcpLiveProviderWorkflowPanel.js +1 -1
- package/dist/components/agent/acp/AcpLiveProviderWorkflowPanel.js.map +1 -1
- package/dist/components/agent/acp/AcpProviderManagerPanel.js +1 -1
- package/dist/components/agent/acp/AcpProviderManagerPanel.js.map +1 -1
- package/dist/components/agent/acp/AcpProviderModelsPanel.js +1 -1
- package/dist/components/agent/acp/AcpProviderModelsPanel.js.map +1 -1
- package/dist/components/agent/acp/AcpSupportBundlePanel.js +1 -1
- package/dist/components/agent/acp/AcpSupportBundlePanel.js.map +1 -1
- package/dist/components/agent/collaborationWindow.d.ts +11 -0
- package/dist/components/agent/collaborationWindow.d.ts.map +1 -0
- package/dist/components/agent/collaborationWindow.js +10 -0
- package/dist/components/agent/collaborationWindow.js.map +1 -0
- package/dist/components/agent/conversationCollaborationAppendJournal.d.ts +25 -0
- package/dist/components/agent/conversationCollaborationAppendJournal.d.ts.map +1 -0
- package/dist/components/agent/conversationCollaborationAppendJournal.js +118 -0
- package/dist/components/agent/conversationCollaborationAppendJournal.js.map +1 -0
- package/dist/components/agent/conversationCollaborationController.d.ts +96 -0
- package/dist/components/agent/conversationCollaborationController.d.ts.map +1 -0
- package/dist/components/agent/conversationCollaborationController.js +597 -0
- package/dist/components/agent/conversationCollaborationController.js.map +1 -0
- package/dist/components/agent/destructiveConfirmation.d.ts +76 -0
- package/dist/components/agent/destructiveConfirmation.d.ts.map +1 -0
- package/dist/components/agent/destructiveConfirmation.js +231 -0
- package/dist/components/agent/destructiveConfirmation.js.map +1 -0
- package/dist/components/agent/developmentCoordinationController.d.ts +43 -0
- package/dist/components/agent/developmentCoordinationController.d.ts.map +1 -0
- package/dist/components/agent/developmentCoordinationController.js +94 -0
- package/dist/components/agent/developmentCoordinationController.js.map +1 -0
- package/dist/components/agent/developmentCoordinationProjection.d.ts +24 -0
- package/dist/components/agent/developmentCoordinationProjection.d.ts.map +1 -1
- package/dist/components/agent/developmentCoordinationProjection.js +34 -5
- package/dist/components/agent/developmentCoordinationProjection.js.map +1 -1
- package/dist/components/agent/editorOperationAuthority.d.ts +29 -0
- package/dist/components/agent/editorOperationAuthority.d.ts.map +1 -0
- package/dist/components/agent/editorOperationAuthority.js +73 -0
- package/dist/components/agent/editorOperationAuthority.js.map +1 -0
- package/dist/components/agent/knowledgePagination.d.ts +7 -0
- package/dist/components/agent/knowledgePagination.d.ts.map +1 -0
- package/dist/components/agent/knowledgePagination.js +7 -0
- package/dist/components/agent/knowledgePagination.js.map +1 -0
- package/dist/components/agent/knowledgePanelController.d.ts +32 -0
- package/dist/components/agent/knowledgePanelController.d.ts.map +1 -0
- package/dist/components/agent/knowledgePanelController.js +119 -0
- package/dist/components/agent/knowledgePanelController.js.map +1 -0
- package/dist/components/agent/monacoWorkbenchShared.js +1 -1
- package/dist/components/agent/onboardingModels.d.ts +31 -0
- package/dist/components/agent/onboardingModels.d.ts.map +1 -0
- package/dist/components/agent/onboardingModels.js +107 -0
- package/dist/components/agent/onboardingModels.js.map +1 -0
- package/dist/components/agent/personalConversationScope.d.ts +26 -0
- package/dist/components/agent/personalConversationScope.d.ts.map +1 -0
- package/dist/components/agent/personalConversationScope.js +43 -0
- package/dist/components/agent/personalConversationScope.js.map +1 -0
- package/dist/components/agent/reviewRequestScope.d.ts +16 -0
- package/dist/components/agent/reviewRequestScope.d.ts.map +1 -0
- package/dist/components/agent/reviewRequestScope.js +101 -0
- package/dist/components/agent/reviewRequestScope.js.map +1 -0
- package/dist/components/agent/scheduleCreationAttempt.d.ts +12 -0
- package/dist/components/agent/scheduleCreationAttempt.d.ts.map +1 -0
- package/dist/components/agent/scheduleCreationAttempt.js +30 -0
- package/dist/components/agent/scheduleCreationAttempt.js.map +1 -0
- package/dist/components/agent/settings/EntitySettingsLayout.d.ts +1 -1
- package/dist/components/agent/settings/EntitySettingsLayout.d.ts.map +1 -1
- package/dist/components/agent/settings/EntitySettingsLayout.js +64 -44
- package/dist/components/agent/settings/EntitySettingsLayout.js.map +1 -1
- package/dist/components/agent/settings/SettingsNavigation.d.ts.map +1 -1
- package/dist/components/agent/settings/SettingsNavigation.js +17 -17
- package/dist/components/agent/settings/SettingsNavigation.js.map +1 -1
- package/dist/components/agent/settings/entityArchiveState.d.ts +24 -0
- package/dist/components/agent/settings/entityArchiveState.d.ts.map +1 -0
- package/dist/components/agent/settings/entityArchiveState.js +12 -0
- package/dist/components/agent/settings/entityArchiveState.js.map +1 -0
- package/dist/components/agent/settings/sections/AccessMembersSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/AccessMembersSection.js +10 -25
- package/dist/components/agent/settings/sections/AccessMembersSection.js.map +1 -1
- package/dist/components/agent/settings/sections/AccountWorkspacePanel.d.ts +16 -0
- package/dist/components/agent/settings/sections/AccountWorkspacePanel.d.ts.map +1 -0
- package/dist/components/agent/settings/sections/AccountWorkspacePanel.js +265 -0
- package/dist/components/agent/settings/sections/AccountWorkspacePanel.js.map +1 -0
- package/dist/components/agent/settings/sections/AgentPermissionRulesPanel.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/AgentPermissionRulesPanel.js +47 -32
- package/dist/components/agent/settings/sections/AgentPermissionRulesPanel.js.map +1 -1
- package/dist/components/agent/settings/sections/DangerZoneSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/DangerZoneSection.js +30 -6
- package/dist/components/agent/settings/sections/DangerZoneSection.js.map +1 -1
- package/dist/components/agent/settings/sections/DefaultAgentConfigSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/DefaultAgentConfigSection.js +47 -37
- package/dist/components/agent/settings/sections/DefaultAgentConfigSection.js.map +1 -1
- package/dist/components/agent/settings/sections/EnvironmentSecretsSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/EnvironmentSecretsSection.js +30 -43
- package/dist/components/agent/settings/sections/EnvironmentSecretsSection.js.map +1 -1
- package/dist/components/agent/settings/sections/ExportBackupSection.d.ts +3 -1
- package/dist/components/agent/settings/sections/ExportBackupSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/ExportBackupSection.js +14 -12
- package/dist/components/agent/settings/sections/ExportBackupSection.js.map +1 -1
- package/dist/components/agent/settings/sections/GeneralSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/GeneralSection.js +47 -4
- package/dist/components/agent/settings/sections/GeneralSection.js.map +1 -1
- package/dist/components/agent/settings/sections/IntegrationsSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/IntegrationsSection.js +14 -21
- package/dist/components/agent/settings/sections/IntegrationsSection.js.map +1 -1
- package/dist/components/agent/settings/sections/NotificationsSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/NotificationsSection.js +125 -20
- package/dist/components/agent/settings/sections/NotificationsSection.js.map +1 -1
- package/dist/components/agent/settings/sections/ResourceLimitsSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/ResourceLimitsSection.js +7 -7
- package/dist/components/agent/settings/sections/ResourceLimitsSection.js.map +1 -1
- package/dist/components/agent/settings/sections/SecurityComplianceSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/SecurityComplianceSection.js +5 -4
- package/dist/components/agent/settings/sections/SecurityComplianceSection.js.map +1 -1
- package/dist/components/agent/settings/sections/UsageAnalyticsSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/UsageAnalyticsSection.js +2 -3
- package/dist/components/agent/settings/sections/UsageAnalyticsSection.js.map +1 -1
- package/dist/components/agent/settings/sections/WorkspaceDirectoryAccessSection.d.ts.map +1 -1
- package/dist/components/agent/settings/sections/WorkspaceDirectoryAccessSection.js +39 -26
- package/dist/components/agent/settings/sections/WorkspaceDirectoryAccessSection.js.map +1 -1
- package/dist/components/agent/settings/sections/WorkspaceKeysPanel.d.ts +6 -0
- package/dist/components/agent/settings/sections/WorkspaceKeysPanel.d.ts.map +1 -0
- package/dist/components/agent/settings/sections/WorkspaceKeysPanel.js +205 -0
- package/dist/components/agent/settings/sections/WorkspaceKeysPanel.js.map +1 -0
- package/dist/components/agent/settings/sections/environmentDraftAction.d.ts +3 -0
- package/dist/components/agent/settings/sections/environmentDraftAction.d.ts.map +1 -0
- package/dist/components/agent/settings/sections/environmentDraftAction.js +6 -0
- package/dist/components/agent/settings/sections/environmentDraftAction.js.map +1 -0
- package/dist/components/agent/settings/sections/membershipOperationProjection.d.ts +3 -0
- package/dist/components/agent/settings/sections/membershipOperationProjection.d.ts.map +1 -0
- package/dist/components/agent/settings/sections/membershipOperationProjection.js +9 -0
- package/dist/components/agent/settings/sections/membershipOperationProjection.js.map +1 -0
- package/dist/components/agent/settings/sections/workspaceKeyOperationProjection.d.ts +6 -0
- package/dist/components/agent/settings/sections/workspaceKeyOperationProjection.d.ts.map +1 -0
- package/dist/components/agent/settings/sections/workspaceKeyOperationProjection.js +8 -0
- package/dist/components/agent/settings/sections/workspaceKeyOperationProjection.js.map +1 -0
- package/dist/components/agent/settings/shared/InAppConfirmationDialog.d.ts +25 -0
- package/dist/components/agent/settings/shared/InAppConfirmationDialog.d.ts.map +1 -0
- package/dist/components/agent/settings/shared/InAppConfirmationDialog.js +89 -0
- package/dist/components/agent/settings/shared/InAppConfirmationDialog.js.map +1 -0
- package/dist/components/agent/settings/shared/InputField.d.ts +1 -1
- package/dist/components/agent/settings/shared/InputField.d.ts.map +1 -1
- package/dist/components/agent/settings/shared/InputField.js +4 -3
- package/dist/components/agent/settings/shared/InputField.js.map +1 -1
- package/dist/components/agent/settings/shared/MembersTable.d.ts +3 -3
- package/dist/components/agent/settings/shared/MembersTable.d.ts.map +1 -1
- package/dist/components/agent/settings/shared/MembersTable.js +1 -1
- package/dist/components/agent/settings/shared/MembersTable.js.map +1 -1
- package/dist/components/agent/settings/shared/ScopedAuditPanel.d.ts +5 -0
- package/dist/components/agent/settings/shared/ScopedAuditPanel.d.ts.map +1 -0
- package/dist/components/agent/settings/shared/ScopedAuditPanel.js +70 -0
- package/dist/components/agent/settings/shared/ScopedAuditPanel.js.map +1 -0
- package/dist/components/agent/settings/shared/SettingsCard.d.ts +2 -1
- package/dist/components/agent/settings/shared/SettingsCard.d.ts.map +1 -1
- package/dist/components/agent/settings/shared/SettingsCard.js +2 -2
- package/dist/components/agent/settings/shared/SettingsCard.js.map +1 -1
- package/dist/components/agent/settings/shared/ToggleSwitch.d.ts.map +1 -1
- package/dist/components/agent/settings/shared/ToggleSwitch.js +1 -1
- package/dist/components/agent/settings/shared/ToggleSwitch.js.map +1 -1
- package/dist/components/agent/settings/shared/UsageChart.d.ts +10 -0
- package/dist/components/agent/settings/shared/UsageChart.d.ts.map +1 -1
- package/dist/components/agent/settings/shared/UsageChart.js +16 -10
- package/dist/components/agent/settings/shared/UsageChart.js.map +1 -1
- package/dist/components/agent/settings/shared/WorkspaceRulesControl.d.ts +8 -0
- package/dist/components/agent/settings/shared/WorkspaceRulesControl.d.ts.map +1 -0
- package/dist/components/agent/settings/shared/WorkspaceRulesControl.js +26 -0
- package/dist/components/agent/settings/shared/WorkspaceRulesControl.js.map +1 -0
- package/dist/components/agent/settings/shared/useScopedConfirmation.d.ts +8 -0
- package/dist/components/agent/settings/shared/useScopedConfirmation.d.ts.map +1 -0
- package/dist/components/agent/settings/shared/useScopedConfirmation.js +53 -0
- package/dist/components/agent/settings/shared/useScopedConfirmation.js.map +1 -0
- package/dist/components/agent/settings/shared/useSettingsConfirmation.d.ts +8 -0
- package/dist/components/agent/settings/shared/useSettingsConfirmation.d.ts.map +1 -0
- package/dist/components/agent/settings/shared/useSettingsConfirmation.js +51 -0
- package/dist/components/agent/settings/shared/useSettingsConfirmation.js.map +1 -0
- package/dist/components/agent/settings/shared/workspaceRulesController.d.ts +28 -0
- package/dist/components/agent/settings/shared/workspaceRulesController.d.ts.map +1 -0
- package/dist/components/agent/settings/shared/workspaceRulesController.js +82 -0
- package/dist/components/agent/settings/shared/workspaceRulesController.js.map +1 -0
- package/dist/components/agent/sidebarEntityPins.d.ts +11 -0
- package/dist/components/agent/sidebarEntityPins.d.ts.map +1 -0
- package/dist/components/agent/sidebarEntityPins.js +37 -0
- package/dist/components/agent/sidebarEntityPins.js.map +1 -0
- package/dist/components/agent/workspaceHierarchy.d.ts +24 -0
- package/dist/components/agent/workspaceHierarchy.d.ts.map +1 -0
- package/dist/components/agent/workspaceHierarchy.js +50 -0
- package/dist/components/agent/workspaceHierarchy.js.map +1 -0
- package/dist/components/product/XenoAgentProductHeader.d.ts +4 -2
- package/dist/components/product/XenoAgentProductHeader.d.ts.map +1 -1
- package/dist/components/product/XenoAgentProductHeader.js +22 -4
- package/dist/components/product/XenoAgentProductHeader.js.map +1 -1
- package/dist/components/product/XenoAgentSessionTabs.js +1 -1
- package/dist/components/product/XenoAgentSessionTabs.js.map +1 -1
- package/dist/components/product/XenoAgentWorkspaceSelector.d.ts +7 -0
- package/dist/components/product/XenoAgentWorkspaceSelector.d.ts.map +1 -0
- package/dist/components/product/XenoAgentWorkspaceSelector.js +237 -0
- package/dist/components/product/XenoAgentWorkspaceSelector.js.map +1 -0
- package/dist/components/workspace/WorkspaceCreationWizard.d.ts +6 -0
- package/dist/components/workspace/WorkspaceCreationWizard.d.ts.map +1 -0
- package/dist/components/workspace/WorkspaceCreationWizard.js +48 -0
- package/dist/components/workspace/WorkspaceCreationWizard.js.map +1 -0
- package/dist/hooks/useSidebarLayoutPreference.d.ts +29 -0
- package/dist/hooks/useSidebarLayoutPreference.d.ts.map +1 -0
- package/dist/hooks/useSidebarLayoutPreference.js +83 -0
- package/dist/hooks/useSidebarLayoutPreference.js.map +1 -0
- package/dist/hooks/useWorkspaceCreation.d.ts +8 -0
- package/dist/hooks/useWorkspaceCreation.d.ts.map +1 -0
- package/dist/hooks/useWorkspaceCreation.js +40 -0
- package/dist/hooks/useWorkspaceCreation.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/platformApiTypes.d.ts +77 -36
- package/dist/platformApiTypes.d.ts.map +1 -1
- package/dist/platformBridge.d.ts +4 -0
- package/dist/platformBridge.d.ts.map +1 -1
- package/dist/platformBridge.js +10 -0
- package/dist/platformBridge.js.map +1 -1
- package/dist/stores/agentChatStore.d.ts +120 -2
- package/dist/stores/agentChatStore.d.ts.map +1 -1
- package/dist/stores/agentChatStore.js +344 -35
- package/dist/stores/agentChatStore.js.map +1 -1
- package/dist/stores/agentCreationDefaults.d.ts +25 -0
- package/dist/stores/agentCreationDefaults.d.ts.map +1 -0
- package/dist/stores/agentCreationDefaults.js +11 -0
- package/dist/stores/agentCreationDefaults.js.map +1 -0
- package/dist/stores/entitySettingsStore.d.ts +37 -12
- package/dist/stores/entitySettingsStore.d.ts.map +1 -1
- package/dist/stores/entitySettingsStore.js +558 -585
- package/dist/stores/entitySettingsStore.js.map +1 -1
- package/dist/stores/suggestionStore.d.ts +9 -2
- package/dist/stores/suggestionStore.d.ts.map +1 -1
- package/dist/stores/suggestionStore.js +51 -24
- package/dist/stores/suggestionStore.js.map +1 -1
- package/dist/stores/workspaceCreationAttempt.d.ts +14 -0
- package/dist/stores/workspaceCreationAttempt.d.ts.map +1 -0
- package/dist/stores/workspaceCreationAttempt.js +35 -0
- package/dist/stores/workspaceCreationAttempt.js.map +1 -0
- package/dist/stores/workspaceReconciliation.d.ts +6 -0
- package/dist/stores/workspaceReconciliation.d.ts.map +1 -0
- package/dist/stores/workspaceReconciliation.js +33 -0
- package/dist/stores/workspaceReconciliation.js.map +1 -0
- package/dist/stores/workspaceStore.d.ts +44 -9
- package/dist/stores/workspaceStore.d.ts.map +1 -1
- package/dist/stores/workspaceStore.js +238 -99
- package/dist/stores/workspaceStore.js.map +1 -1
- package/dist/types/agentEditor.d.ts +1 -0
- package/dist/types/agentEditor.d.ts.map +1 -1
- package/dist/utils/advertisedReasoning.d.ts +25 -0
- package/dist/utils/advertisedReasoning.d.ts.map +1 -0
- package/dist/utils/advertisedReasoning.js +62 -0
- package/dist/utils/advertisedReasoning.js.map +1 -0
- package/dist/utils/clipboardCopy.d.ts +4 -0
- package/dist/utils/clipboardCopy.d.ts.map +1 -0
- package/dist/utils/clipboardCopy.js +27 -0
- package/dist/utils/clipboardCopy.js.map +1 -0
- package/dist/utils/providerCommandArgs.d.ts +11 -0
- package/dist/utils/providerCommandArgs.d.ts.map +1 -0
- package/dist/utils/providerCommandArgs.js +18 -0
- package/dist/utils/providerCommandArgs.js.map +1 -0
- package/dist/utils/rendererTeardown.d.ts +6 -0
- package/dist/utils/rendererTeardown.d.ts.map +1 -0
- package/dist/utils/rendererTeardown.js +18 -0
- package/dist/utils/rendererTeardown.js.map +1 -0
- package/package.json +20 -8
- package/src/agent.css +39 -9
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
import { jsxs as _jsxs, jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
|
+
import React, { useEffect, useId, useRef, useState } from 'react';
|
|
3
|
+
import { Button, Panel, TextInput, Textarea } from '@xenosystem/elements-react';
|
|
4
|
+
import { isAgentWorkforceResult, parseAgentWorkforceOwnedCatalog } from '@xenosystem/agent-interface-contract';
|
|
5
|
+
import { getAgentPlatformBridge } from '../../platformBridge.js';
|
|
6
|
+
const uuid = (value) => typeof value === 'string' && /^[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(value);
|
|
7
|
+
const recoveryKey = (accountId, kind) => `xeno.workforce.pending.v1.${accountId}.${kind}`;
|
|
8
|
+
function loadRecovery(accountId, kind) {
|
|
9
|
+
const raw = localStorage.getItem(recoveryKey(accountId, kind));
|
|
10
|
+
if (raw === null)
|
|
11
|
+
return null;
|
|
12
|
+
const value = JSON.parse(raw);
|
|
13
|
+
if (!value || typeof value !== 'object' || Array.isArray(value))
|
|
14
|
+
throw new Error('Invalid recovery reference');
|
|
15
|
+
const r = value;
|
|
16
|
+
if (Object.keys(r).sort().join(',') !== 'accountId,kind,operationId,version' || r.version !== 1 || !uuid(r.operationId) || r.accountId !== accountId || r.kind !== kind)
|
|
17
|
+
throw new Error('Invalid recovery reference');
|
|
18
|
+
return { version: 1, operationId: r.operationId, accountId, kind };
|
|
19
|
+
}
|
|
20
|
+
function saveRecovery(value) {
|
|
21
|
+
const key = recoveryKey(value.accountId, value.kind), raw = JSON.stringify(value);
|
|
22
|
+
localStorage.setItem(key, raw);
|
|
23
|
+
if (localStorage.getItem(key) !== raw)
|
|
24
|
+
throw new Error('Recovery persistence unavailable');
|
|
25
|
+
}
|
|
26
|
+
const explanation = (result) => result.state === 'committed' ? 'Saved operation confirmed.' : result.state === 'prepared'
|
|
27
|
+
? 'Prepared safely. Continue this operation or cancel it before dispatch.' : result.state === 'cancelled' ? 'Prepared creation cancelled.'
|
|
28
|
+
: 'The outcome is not confirmed. Check the saved operation before retrying; your draft has not been resubmitted.';
|
|
29
|
+
/** Personal owned resources only. This view never synthesizes memberships,
|
|
30
|
+
* assignments, execution permission or a globally shared catalog. */
|
|
31
|
+
export function OwnedWorkforceView({ kind, onBackToChat }) {
|
|
32
|
+
const [account, setAccount] = useState(null);
|
|
33
|
+
const [catalog, setCatalog] = useState(null);
|
|
34
|
+
const [name, setName] = useState(''), [instructions, setInstructions] = useState('');
|
|
35
|
+
const [busy, setBusy] = useState(true), [notice, setNotice] = useState('Checking account…');
|
|
36
|
+
const [error, setError] = useState(''), [recovery, setRecovery] = useState(null);
|
|
37
|
+
const [outcome, setOutcome] = useState(null);
|
|
38
|
+
const accountRef = useRef(null), epoch = useRef(0), flight = useRef(false);
|
|
39
|
+
const kindRef = useRef(kind);
|
|
40
|
+
kindRef.current = kind;
|
|
41
|
+
const mounted = useRef(false), recoveryRef = useRef(null);
|
|
42
|
+
const draft = useRef(null);
|
|
43
|
+
const nameId = useId(), instructionsId = useId();
|
|
44
|
+
const current = (generation) => { if (!mounted.current || generation !== epoch.current || kindRef.current !== kind)
|
|
45
|
+
throw new Error('View changed'); };
|
|
46
|
+
const adopt = (value) => {
|
|
47
|
+
if (accountRef.current?.id !== value?.id) {
|
|
48
|
+
epoch.current++;
|
|
49
|
+
accountRef.current = value;
|
|
50
|
+
setAccount(value);
|
|
51
|
+
setCatalog(null);
|
|
52
|
+
setRecovery(null);
|
|
53
|
+
recoveryRef.current = null;
|
|
54
|
+
setOutcome(null);
|
|
55
|
+
draft.current = null;
|
|
56
|
+
setName('');
|
|
57
|
+
setInstructions('');
|
|
58
|
+
setNotice(value ? 'Account changed. Refresh to load owned resources.' : 'Sign in through Settings to view your owned resources.');
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
const identity = async () => {
|
|
62
|
+
const api = getAgentPlatformBridge().account;
|
|
63
|
+
if (!api)
|
|
64
|
+
throw new Error('Account unavailable');
|
|
65
|
+
const response = await api.request({ action: 'status' });
|
|
66
|
+
const value = response.success && response.status?.state === 'signed-in' ? response.status.account : null;
|
|
67
|
+
if (!value)
|
|
68
|
+
return null;
|
|
69
|
+
if (!uuid(value.id) || typeof value.email !== 'string')
|
|
70
|
+
throw new Error('Account unavailable');
|
|
71
|
+
return { id: value.id.toLowerCase(), email: value.email, displayName: value.displayName ?? null };
|
|
72
|
+
};
|
|
73
|
+
const verify = async (expected, generation) => {
|
|
74
|
+
current(generation);
|
|
75
|
+
const actual = await identity();
|
|
76
|
+
current(generation);
|
|
77
|
+
if (actual?.id !== expected) {
|
|
78
|
+
adopt(actual);
|
|
79
|
+
throw new Error('Account changed');
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
const invoke = async (request, generation) => {
|
|
83
|
+
await verify(request.expectedAccountId, generation);
|
|
84
|
+
const api = getAgentPlatformBridge().workforce;
|
|
85
|
+
if (!api)
|
|
86
|
+
throw new Error('Workforce unavailable');
|
|
87
|
+
const result = await api.request(request);
|
|
88
|
+
current(generation);
|
|
89
|
+
await verify(request.expectedAccountId, generation);
|
|
90
|
+
if (!isAgentWorkforceResult(result) || (request.action !== 'list-owned' && result.operationId !== undefined && result.operationId !== request.operationId))
|
|
91
|
+
throw new Error('Unverified workforce response');
|
|
92
|
+
if (result.code === 'ACCOUNT_CHANGED') {
|
|
93
|
+
adopt(null);
|
|
94
|
+
throw new Error('Account changed');
|
|
95
|
+
}
|
|
96
|
+
return result;
|
|
97
|
+
};
|
|
98
|
+
const page = async (owner, generation, cursor) => {
|
|
99
|
+
const result = await invoke({ schemaVersion: 1, action: 'list-owned', expectedAccountId: owner, owner: { type: 'user', id: owner }, kind, limit: 50, ...(cursor ? { cursor } : {}) }, generation);
|
|
100
|
+
if (!result.success || !result.catalog)
|
|
101
|
+
throw new Error('Catalog unavailable');
|
|
102
|
+
const value = parseAgentWorkforceOwnedCatalog(result.catalog);
|
|
103
|
+
if (value.owner.type !== 'user' || value.owner.id !== owner || value.items.length > 50 || value.items.some(item => item.kind !== kind || item.status !== 'active') || (cursor && value.nextCursor === cursor))
|
|
104
|
+
throw new Error('Invalid catalog');
|
|
105
|
+
current(generation);
|
|
106
|
+
setCatalog(value);
|
|
107
|
+
};
|
|
108
|
+
const remember = (value) => { recoveryRef.current = value; setRecovery(value); };
|
|
109
|
+
const observe = async (ref, result, generation) => {
|
|
110
|
+
current(generation);
|
|
111
|
+
setOutcome(result);
|
|
112
|
+
setNotice(explanation(result));
|
|
113
|
+
if (result.code === 'CONFLICT')
|
|
114
|
+
setError('The host refused a conflicting request for this saved identity. No replacement was authorized. Check the saved operation before continuing.');
|
|
115
|
+
if (result.state === 'committed' || result.state === 'cancelled') {
|
|
116
|
+
localStorage.removeItem(recoveryKey(ref.accountId, ref.kind));
|
|
117
|
+
if (localStorage.getItem(recoveryKey(ref.accountId, ref.kind)) !== null)
|
|
118
|
+
throw new Error('Recovery cleanup unavailable');
|
|
119
|
+
remember(null);
|
|
120
|
+
draft.current = null;
|
|
121
|
+
if (result.state === 'committed') {
|
|
122
|
+
setName('');
|
|
123
|
+
setInstructions('');
|
|
124
|
+
await page(ref.accountId, generation);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
};
|
|
128
|
+
const reconcile = async (ref, generation) => {
|
|
129
|
+
const common = { schemaVersion: 1, operationId: ref.operationId, expectedAccountId: ref.accountId };
|
|
130
|
+
let result = await invoke({ ...common, action: 'lookup' }, generation);
|
|
131
|
+
if (result.state === 'dispatched' || result.state === 'uncertain')
|
|
132
|
+
result = await invoke({ ...common, action: 'reconcile' }, generation);
|
|
133
|
+
await observe(ref, result, generation);
|
|
134
|
+
return result;
|
|
135
|
+
};
|
|
136
|
+
const run = (work) => {
|
|
137
|
+
if (flight.current || !mounted.current)
|
|
138
|
+
return;
|
|
139
|
+
flight.current = true;
|
|
140
|
+
setBusy(true);
|
|
141
|
+
setError('');
|
|
142
|
+
void work().catch(() => { if (mounted.current && kindRef.current === kind)
|
|
143
|
+
setError('This action could not be verified. Refresh the account or check the saved operation; nothing was assumed successful.'); })
|
|
144
|
+
.finally(() => { flight.current = false; if (mounted.current)
|
|
145
|
+
setBusy(false); });
|
|
146
|
+
};
|
|
147
|
+
const refresh = () => run(async () => {
|
|
148
|
+
const before = epoch.current, actual = await identity();
|
|
149
|
+
current(before);
|
|
150
|
+
adopt(actual);
|
|
151
|
+
if (!actual) {
|
|
152
|
+
setCatalog(null);
|
|
153
|
+
setNotice('Sign in through Settings to view your owned resources.');
|
|
154
|
+
return;
|
|
155
|
+
}
|
|
156
|
+
const generation = epoch.current;
|
|
157
|
+
let ref;
|
|
158
|
+
try {
|
|
159
|
+
ref = loadRecovery(actual.id, kind);
|
|
160
|
+
}
|
|
161
|
+
catch {
|
|
162
|
+
setNotice('Recovery storage is unavailable or invalid. Creation is disabled until it can be repaired.');
|
|
163
|
+
throw new Error('Storage unavailable');
|
|
164
|
+
}
|
|
165
|
+
remember(ref);
|
|
166
|
+
if (ref)
|
|
167
|
+
await reconcile(ref, generation);
|
|
168
|
+
else
|
|
169
|
+
setNotice('Personal ownership. Workspace assignments and team members are managed separately.');
|
|
170
|
+
await page(actual.id, generation);
|
|
171
|
+
});
|
|
172
|
+
useEffect(() => {
|
|
173
|
+
mounted.current = true;
|
|
174
|
+
epoch.current++;
|
|
175
|
+
accountRef.current = null;
|
|
176
|
+
setAccount(null);
|
|
177
|
+
setCatalog(null);
|
|
178
|
+
remember(null);
|
|
179
|
+
setOutcome(null);
|
|
180
|
+
draft.current = null;
|
|
181
|
+
setName('');
|
|
182
|
+
setInstructions('');
|
|
183
|
+
// A route change invalidates previous async results. Its completion releases
|
|
184
|
+
// the same single-flight guard before the new route performs a fresh read.
|
|
185
|
+
let started = false;
|
|
186
|
+
const start = () => { if (!flight.current && !started) {
|
|
187
|
+
started = true;
|
|
188
|
+
refresh();
|
|
189
|
+
} };
|
|
190
|
+
start();
|
|
191
|
+
const retry = window.setInterval(() => { start(); if (started)
|
|
192
|
+
window.clearInterval(retry); }, 100);
|
|
193
|
+
const focus = () => refresh();
|
|
194
|
+
window.addEventListener('focus', focus);
|
|
195
|
+
return () => { mounted.current = false; epoch.current++; window.clearInterval(retry); window.removeEventListener('focus', focus); };
|
|
196
|
+
}, [kind]);
|
|
197
|
+
const create = () => run(async () => {
|
|
198
|
+
const owner = accountRef.current?.id, generation = epoch.current;
|
|
199
|
+
if (!owner || recoveryRef.current || !name.trim() || new TextEncoder().encode(name.trim()).length > 200 || new TextEncoder().encode(instructions).length > 32768)
|
|
200
|
+
throw new Error('Invalid creation');
|
|
201
|
+
await verify(owner, generation);
|
|
202
|
+
if (loadRecovery(owner, kind))
|
|
203
|
+
throw new Error('Another creation needs recovery');
|
|
204
|
+
const ref = { version: 1, operationId: crypto.randomUUID(), accountId: owner, kind };
|
|
205
|
+
const resource = kind === 'team' ? { kind, owner: { type: 'user', id: owner }, name: name.trim() }
|
|
206
|
+
: { kind, owner: { type: 'user', id: owner }, name: name.trim(), definition: { schemaVersion: 1, instructions, skills: [], requestedCapabilities: [], provenance: { source: 'authored' } } };
|
|
207
|
+
saveRecovery(ref);
|
|
208
|
+
remember(ref);
|
|
209
|
+
draft.current = resource;
|
|
210
|
+
const common = { schemaVersion: 1, operationId: ref.operationId, expectedAccountId: owner };
|
|
211
|
+
const prepared = await invoke({ ...common, action: 'prepare', resource }, generation);
|
|
212
|
+
await observe(ref, prepared, generation);
|
|
213
|
+
if (prepared.success && prepared.state === 'prepared')
|
|
214
|
+
await observe(ref, await invoke({ ...common, action: 'execute' }, generation), generation);
|
|
215
|
+
});
|
|
216
|
+
const retry = () => run(async () => {
|
|
217
|
+
const ref = recoveryRef.current, generation = epoch.current;
|
|
218
|
+
if (!ref)
|
|
219
|
+
return;
|
|
220
|
+
let checked = await reconcile(ref, generation);
|
|
221
|
+
if (['committed', 'cancelled', 'rejected'].includes(checked.state ?? ''))
|
|
222
|
+
return;
|
|
223
|
+
const common = { schemaVersion: 1, operationId: ref.operationId, expectedAccountId: ref.accountId };
|
|
224
|
+
if (!checked.state) {
|
|
225
|
+
if (!draft.current) {
|
|
226
|
+
if (!name.trim() || new TextEncoder().encode(name.trim()).length > 200 || new TextEncoder().encode(instructions).length > 32768)
|
|
227
|
+
throw new Error('Re-enter the original draft');
|
|
228
|
+
// Recovery stores identity only. If preparation was never acknowledged,
|
|
229
|
+
// the draft may not exist in the host. Re-entry preserves this SAME ID;
|
|
230
|
+
// the host's immutable request hash refuses overwriting any prior intent.
|
|
231
|
+
draft.current = ref.kind === 'team' ? { kind: 'team', owner: { type: 'user', id: ref.accountId }, name: name.trim() }
|
|
232
|
+
: { kind: 'agent', owner: { type: 'user', id: ref.accountId }, name: name.trim(), definition: { schemaVersion: 1, instructions, skills: [], requestedCapabilities: [], provenance: { source: 'authored' } } };
|
|
233
|
+
}
|
|
234
|
+
checked = await invoke({ ...common, action: 'prepare', resource: draft.current }, generation);
|
|
235
|
+
if (!checked.success || checked.state !== 'prepared') {
|
|
236
|
+
await observe(ref, checked, generation);
|
|
237
|
+
return;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
await observe(ref, await invoke({ ...common, action: 'execute', retryAfterNotObserved: true }, generation), generation);
|
|
241
|
+
});
|
|
242
|
+
const cancel = () => run(async () => {
|
|
243
|
+
const ref = recoveryRef.current, generation = epoch.current;
|
|
244
|
+
if (!ref)
|
|
245
|
+
return;
|
|
246
|
+
const checked = await reconcile(ref, generation);
|
|
247
|
+
if (checked.state !== 'prepared')
|
|
248
|
+
return;
|
|
249
|
+
await observe(ref, await invoke({ schemaVersion: 1, action: 'cancel', operationId: ref.operationId, expectedAccountId: ref.accountId }, generation), generation);
|
|
250
|
+
});
|
|
251
|
+
const reenter = !!recovery && !!outcome && !outcome.state && !draft.current;
|
|
252
|
+
return _jsxs("section", { className: "xeno owned-workforce-view", "data-xeno-size": "md", "aria-label": `Owned ${kind}s`, "aria-busy": busy, children: [_jsx(Panel, { title: `Owned ${kind}s`, actions: _jsxs(_Fragment, { children: [_jsx(Button, { variant: "ghost", onClick: onBackToChat, children: "Back to chat" }), _jsx(Button, { variant: "secondary", disabled: busy, onClick: refresh, children: "Refresh" })] }), children: _jsxs("div", { className: "owned-workforce-content", children: [_jsxs("div", { children: ["Owner: ", account ? account.displayName || account.email : 'Not signed in'] }), _jsx("div", { role: "status", children: notice }), error && _jsx("div", { role: "alert", children: error }), catalog && _jsxs(_Fragment, { children: [_jsx("ul", { className: "owned-workforce-list", children: catalog.items.map(item => _jsxs("li", { children: [_jsx("span", { children: item.name }), _jsx("span", { children: item.status })] }, item.id)) }), catalog.items.length === 0 && _jsxs("div", { children: ["No owned ", kind, "s yet."] }), catalog.nextCursor && _jsx(Button, { variant: "secondary", disabled: busy, onClick: () => run(async () => { const id = accountRef.current?.id; if (id)
|
|
253
|
+
await page(id, epoch.current, catalog.nextCursor); }), children: "Next page" })] })] }) }), _jsx(Panel, { title: `Create ${kind}`, children: _jsxs("form", { className: "owned-workforce-content", onSubmit: event => { event.preventDefault(); create(); }, children: [reenter && _jsx("div", { role: "status", children: "Re-enter the original draft to retry this saved identity. The original operation may already exist; re-entry never authorizes replacing it." }), _jsx("label", { htmlFor: nameId, children: "Name" }), _jsx(TextInput, { id: nameId, value: name, maxLength: 200, disabled: busy || (!!recovery && !reenter) || !account, onChange: event => setName(event.target.value) }), kind === 'agent' && _jsxs(_Fragment, { children: [_jsx("label", { htmlFor: instructionsId, children: "Instructions" }), _jsx(Textarea, { id: instructionsId, value: instructions, maxLength: 32768, disabled: busy || (!!recovery && !reenter) || !account, onChange: event => setInstructions(event.target.value) })] }), !recovery && _jsxs(Button, { type: "submit", variant: "primary", disabled: busy || !account || !name.trim(), children: ["Create ", kind] }), recovery && _jsxs("div", { className: "owned-workforce-actions", children: [_jsxs("div", { children: ["Saved operation: ", recovery.operationId] }), _jsx(Button, { type: "button", variant: "secondary", disabled: busy, onClick: () => run(async () => { const ref = recoveryRef.current; if (ref)
|
|
254
|
+
await reconcile(ref, epoch.current); }), children: "Check saved operation" }), outcome?.state !== 'rejected' && _jsx(Button, { type: "button", variant: "primary", disabled: busy || (reenter && !name.trim()), onClick: retry, children: "Retry same operation" }), outcome?.state === 'prepared' && _jsx(Button, { type: "button", variant: "ghost", disabled: busy, onClick: cancel, children: "Cancel prepared creation" })] })] }) })] });
|
|
255
|
+
}
|
|
256
|
+
//# sourceMappingURL=OwnedWorkforceView.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OwnedWorkforceView.js","sourceRoot":"","sources":["../../../src/components/agent/OwnedWorkforceView.tsx"],"names":[],"mappings":"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"}
|
|
@@ -15,6 +15,40 @@ interface PluginManagerProps {
|
|
|
15
15
|
className?: string;
|
|
16
16
|
caller?: PluginManagerCaller;
|
|
17
17
|
}
|
|
18
|
+
/** Arguments are data, not a shell command. JSON preserves spaces, empty args and backslashes. */
|
|
19
|
+
export declare function parsePluginMcpArguments(value: string): string[];
|
|
20
|
+
/** Shared by the actual component: scope incarnation, latest reads, and settlement-owned singleflight. */
|
|
21
|
+
export declare class PluginManagerOperations {
|
|
22
|
+
private generation;
|
|
23
|
+
private readVersion;
|
|
24
|
+
private active;
|
|
25
|
+
private busy;
|
|
26
|
+
private draftRevisions;
|
|
27
|
+
private listeners;
|
|
28
|
+
getBusy: () => string | null;
|
|
29
|
+
subscribe: (listener: () => void) => (() => void);
|
|
30
|
+
activate(): void;
|
|
31
|
+
invalidate(): void;
|
|
32
|
+
editDraft(key: 'install' | 'mcp'): void;
|
|
33
|
+
captureDraft(key: 'install' | 'mcp', clear: () => void): () => void;
|
|
34
|
+
private capture;
|
|
35
|
+
read<T>(request: () => Promise<T>, callbacks: {
|
|
36
|
+
start: () => void;
|
|
37
|
+
success: (result: T) => void;
|
|
38
|
+
failure: (error: unknown) => void;
|
|
39
|
+
finish: () => void;
|
|
40
|
+
}): Promise<void>;
|
|
41
|
+
run<T extends {
|
|
42
|
+
success: boolean;
|
|
43
|
+
error?: string;
|
|
44
|
+
}>(label: string, request: () => Promise<T>, callbacks: {
|
|
45
|
+
start: () => void;
|
|
46
|
+
success: (result: T) => void | Promise<void>;
|
|
47
|
+
failure: (message: string) => void;
|
|
48
|
+
finish: () => void;
|
|
49
|
+
invalidateReads?: boolean;
|
|
50
|
+
}): Promise<boolean>;
|
|
51
|
+
}
|
|
18
52
|
export declare function PluginManager({ className, caller }: PluginManagerProps): React.JSX.Element;
|
|
19
53
|
export {};
|
|
20
54
|
//# sourceMappingURL=PluginManager.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PluginManager.d.ts","sourceRoot":"","sources":["../../../src/components/agent/PluginManager.tsx"],"names":[],"mappings":"AACA;;;;;GAKG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"PluginManager.d.ts","sourceRoot":"","sources":["../../../src/components/agent/PluginManager.tsx"],"names":[],"mappings":"AACA;;;;;GAKG;AAEH,OAAO,KAA2F,MAAM,OAAO,CAAA;AAiK/G,UAAU,mBAAmB;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;CAC9B;AAED,UAAU,kBAAkB;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,MAAM,CAAC,EAAE,mBAAmB,CAAA;CAC7B;AA2RD,kGAAkG;AAClG,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAS/D;AAED,0GAA0G;AAC1G,qBAAa,uBAAuB;IAClC,OAAO,CAAC,UAAU,CAAI;IACtB,OAAO,CAAC,WAAW,CAAI;IACvB,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,IAAI,CAAsB;IAClC,OAAO,CAAC,cAAc,CAAyB;IAC/C,OAAO,CAAC,SAAS,CAAwB;IACzC,OAAO,QAAO,MAAM,GAAG,IAAI,CAAa;IACxC,SAAS,GAAI,UAAU,MAAM,IAAI,KAAG,CAAC,MAAM,IAAI,CAAC,CAAsF;IACtI,QAAQ,IAAI,IAAI;IAChB,UAAU,IAAI,IAAI;IAClB,SAAS,CAAC,GAAG,EAAE,SAAS,GAAG,KAAK,GAAG,IAAI;IACvC,YAAY,CAAC,GAAG,EAAE,SAAS,GAAG,KAAK,EAAE,KAAK,EAAE,MAAM,IAAI,GAAG,MAAM,IAAI;IAInE,OAAO,CAAC,OAAO;IAIT,IAAI,CAAC,CAAC,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,EAAE,SAAS,EAAE;QAClD,KAAK,EAAE,MAAM,IAAI,CAAC;QAAC,OAAO,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,IAAI,CAAC;QAAC,OAAO,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;QAAC,MAAM,EAAE,MAAM,IAAI,CAAA;KACvG,GAAG,OAAO,CAAC,IAAI,CAAC;IASX,GAAG,CAAC,CAAC,SAAS;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,EAAE,SAAS,EAAE;QAC7G,KAAK,EAAE,MAAM,IAAI,CAAC;QAAC,OAAO,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;QAAC,OAAO,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;QAAC,MAAM,EAAE,MAAM,IAAI,CAAC;QAAC,eAAe,CAAC,EAAE,OAAO,CAAA;KACnJ,GAAG,OAAO,CAAC,OAAO,CAAC;CAyBrB;AASD,wBAAgB,aAAa,CAAC,EAAE,SAAc,EAAE,MAAM,EAAE,EAAE,kBAAkB,qBAylB3E"}
|