@taskforcehq/taskforce 0.3.328 → 0.3.330
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/Taskforce.module.css +523 -79
- package/dist/TaskforceCore.js +237 -230
- package/dist/annotatedAttachments/AnnotatedAttachmentSessionStore.js +1 -1
- package/dist/cli.js +34 -0
- package/dist/cliCloudTargetGuard.d.ts +5 -0
- package/dist/cliCloudTargetGuard.js +11 -0
- package/dist/components/features/AiProfilesModule.js +3 -5
- package/dist/components/features/AnnotatedAttachmentWorkspace.js +24 -8
- package/dist/components/features/TaskSettings.d.ts +12 -1
- package/dist/components/features/TaskSettings.js +217 -54
- package/dist/components/features/TaskforceAgentsModule.d.ts +1 -2
- package/dist/components/features/TaskforceAgentsModule.js +586 -116
- package/dist/components/features/agentCapabilities/AgentCapabilitiesPrototype.d.ts +1 -1
- package/dist/components/features/agentConnections/AgentConnectionControl.d.ts +15 -0
- package/dist/components/features/agentConnections/AgentConnectionControl.js +125 -0
- package/dist/components/features/agentConnections/ModelConnectionsPanel.d.ts +18 -0
- package/dist/components/features/agentConnections/ModelConnectionsPanel.js +393 -0
- package/dist/components/features/agentConnections/modelConnectionsApi.d.ts +65 -0
- package/dist/components/features/agentConnections/modelConnectionsApi.js +129 -0
- package/dist/components/features/planning/PlanningModule.js +2 -5
- package/dist/components/features/planning/PlanningTaskOrderList.d.ts +1 -1
- package/dist/components/features/planning/PlanningTaskOrderList.js +17 -6
- package/dist/components/features/planning/planningTaskArrangement.d.ts +1 -0
- package/dist/components/features/planning/planningTaskArrangement.js +5 -5
- package/dist/components/features/taskforceAgentAssignments/AgentBehaviorAssignments.js +15 -24
- package/dist/components/features/taskforceAgentEditorModel.d.ts +2 -1
- package/dist/components/features/taskforceAgentEditorModel.js +5 -1
- package/dist/components/features/workflowManager/workflowManagerApi.d.ts +1 -1
- package/dist/components/features/workflowManager/workflowManagerApi.js +3 -0
- package/dist/components/task/TaskCard.d.ts +5 -0
- package/dist/components/task/TaskCard.js +65 -10
- package/dist/components/task/TaskImageReviews.js +14 -5
- package/dist/components/task/TaskKanban.d.ts +6 -1
- package/dist/components/task/TaskKanban.js +152 -6
- package/dist/components/task/TaskList.d.ts +5 -0
- package/dist/components/task/TaskList.js +3 -3
- package/dist/components/task/TaskWorkflowAssignmentField.js +68 -10
- package/dist/components/ui/PasswordInput.d.ts +6 -0
- package/dist/components/ui/PasswordInput.js +11 -0
- package/dist/components/ui/TopNoticeLayer.js +1 -1
- package/dist/components/views/AppShellHeader.js +32 -11
- package/dist/components/views/PlanComparisonPage.js +12 -0
- package/dist/components/views/StandaloneLayout.js +32 -55
- package/dist/components/views/WidgetView.js +3 -3
- package/dist/components/views/panels/PlanningDrawer.js +5 -12
- package/dist/components/views/standalone/modals/AccountSettingsModal.js +26 -17
- package/dist/components/views/standalone/modals/SyncStatusModal.d.ts +4 -3
- package/dist/components/views/standalone/modals/SyncStatusModal.js +33 -38
- package/dist/config/envSchema.js +60 -1
- package/dist/config/localServiceRuntimeContract.d.ts +13 -0
- package/dist/config/localServiceRuntimeContract.js +135 -0
- package/dist/core/AiProfileService.js +46 -8
- package/dist/core/DeletedTaskLifecycleService.d.ts +1 -0
- package/dist/core/DeletedTaskLifecycleService.js +37 -6
- package/dist/core/McpTokenService.d.ts +23 -1
- package/dist/core/McpTokenService.js +93 -10
- package/dist/core/TaskAttachmentLinksDurableMutationService.d.ts +3 -2
- package/dist/core/TaskAttachmentLinksDurableMutationService.js +33 -9
- package/dist/core/TaskChecklistCommandService.d.ts +27 -0
- package/dist/core/TaskChecklistCommandService.js +83 -5
- package/dist/core/TaskLifecycleCommandService.d.ts +3 -1
- package/dist/core/TaskLifecycleCommandService.js +6 -2
- package/dist/core/Taskforce.d.ts +94 -2
- package/dist/core/Taskforce.js +760 -36
- package/dist/core/types.d.ts +14 -0
- package/dist/documentReviews/commandService.d.ts +2 -1
- package/dist/documentReviews/commandService.js +6 -3
- package/dist/hooks/sync/orchestratorShared.d.ts +1 -0
- package/dist/hooks/sync/orchestratorShared.js +2 -0
- package/dist/hooks/sync/useDurableLocalOutboxDrain.d.ts +1 -1
- package/dist/hooks/sync/useDurableTaskCreateMutation.js +1 -1
- package/dist/hooks/sync/useDurableTaskMetadataMutation.d.ts +1 -0
- package/dist/hooks/sync/useDurableTaskMetadataMutation.js +1 -0
- package/dist/hooks/sync/useDurableTaskStatusMutation.d.ts +1 -0
- package/dist/hooks/sync/useLocalSyncCoordinatorSnapshot.d.ts +3 -0
- package/dist/hooks/sync/useLocalSyncCoordinatorSnapshot.js +85 -9
- package/dist/hooks/sync/useSyncStatusControls.d.ts +4 -1
- package/dist/hooks/sync/useSyncStatusControls.js +47 -11
- package/dist/hooks/tasks/taskHttpMutation.js +1 -0
- package/dist/hooks/tasks/useCloudTaskSearch.d.ts +12 -0
- package/dist/hooks/tasks/useCloudTaskSearch.js +71 -0
- package/dist/hooks/tasks/useTaskDescriptionImageDraftRecovery.d.ts +16 -0
- package/dist/hooks/tasks/useTaskDescriptionImageDraftRecovery.js +197 -0
- package/dist/hooks/tasks/useTaskEditorNavigation.d.ts +16 -3
- package/dist/hooks/tasks/useTaskEditorNavigation.js +72 -13
- package/dist/hooks/tasks/useTaskFormActions.d.ts +6 -0
- package/dist/hooks/tasks/useTaskFormActions.js +65 -12
- package/dist/hooks/ui/useSettingsModel.d.ts +24 -2
- package/dist/hooks/ui/useSettingsModel.js +13 -2
- package/dist/hooks/ui/useSettingsPersistence.d.ts +12 -1
- package/dist/hooks/ui/useSettingsPersistence.js +74 -47
- package/dist/hooks/useFilterSort.d.ts +7 -3
- package/dist/hooks/useFilterSort.js +15 -5
- package/dist/hooks/useSyncOrchestrator.d.ts +3 -0
- package/dist/hooks/useSyncOrchestrator.js +111 -2
- package/dist/hooks/useTaskData.d.ts +40 -1
- package/dist/hooks/useTaskData.js +240 -9
- package/dist/hooks/useTaskMutations.d.ts +12 -2
- package/dist/hooks/useTaskMutations.js +266 -52
- package/dist/hooks/useTaskforce.d.ts +39 -9
- package/dist/hooks/useTaskforce.js +359 -40
- package/dist/hooks/useUiNotice.d.ts +4 -0
- package/dist/hooks/useUiNotice.js +4 -0
- package/dist/mcp/adminWorkspaceRegistrar.js +3 -3
- package/dist/mcp/clientRegistry.d.ts +2 -2
- package/dist/mcp/clientRegistry.js +1 -1
- package/dist/mcp/documentAssetRegistrar.js +53 -41
- package/dist/mcp/documentHelpers.d.ts +1 -0
- package/dist/mcp/documentHelpers.js +7 -3
- package/dist/mcp/durableTaskMutationRouter.d.ts +4 -1
- package/dist/mcp/durableTaskMutationRouter.js +10 -0
- package/dist/mcp/durableTaskRelationshipMutationRouter.js +4 -0
- package/dist/mcp/httpProtocolRouting.d.ts +10 -0
- package/dist/mcp/httpProtocolRouting.js +19 -0
- package/dist/mcp/localCliHealth.d.ts +2 -2
- package/dist/mcp/localCliHealth.js +2 -2
- package/dist/mcp/localServiceProxy.d.ts +1 -0
- package/dist/mcp/localServiceProxy.js +530 -68
- package/dist/mcp/planningAttachmentCommandAdapter.d.ts +3 -1
- package/dist/mcp/planningAttachmentCommandAdapter.js +20 -2
- package/dist/mcp/runtime.d.ts +54 -79
- package/dist/mcp/runtime.js +556 -139
- package/dist/mcp/taskPlanningRegistrar.js +64 -42
- package/dist/mcp/toolCallCompatibility.js +38 -1
- package/dist/mcp/toolCatalog.d.ts +1 -0
- package/dist/mcp/toolProfiles.d.ts +2 -0
- package/dist/mcp/toolProfiles.js +10 -0
- package/dist/mcp/toolRegistry.d.ts +1 -0
- package/dist/mcp/toolRegistry.js +1 -0
- package/dist/mcp/workflowExecutionRegistrar.js +4 -4
- package/dist/migrations/taskSchemaMigrations.d.ts +5 -0
- package/dist/migrations/taskSchemaMigrations.js +427 -0
- package/dist/runtime/appGateDefinitions.d.ts +30 -6
- package/dist/runtime/appGateDefinitions.js +6 -6
- package/dist/runtime/appGates.d.ts +13 -13
- package/dist/runtime/appGates.js +36 -13
- package/dist/runtime/nodeAppGates.d.ts +8 -0
- package/dist/runtime/nodeAppGates.js +27 -0
- package/dist/server/cloudCollectionRead.d.ts +1 -1
- package/dist/server/cloudCollectionRead.js +2 -2
- package/dist/server/index.d.ts +6 -0
- package/dist/server/index.js +123 -14
- package/dist/server/localDatabaseIdentity.js +4 -1
- package/dist/server/localServiceLease.d.ts +3 -0
- package/dist/server/localServiceLease.js +11 -2
- package/dist/server/localServiceSessions.d.ts +14 -17
- package/dist/server/localServiceSessions.js +308 -94
- package/dist/server/localWorkspaceSyncServerRuntime.js +12 -7
- package/dist/server/rateLimit.d.ts +1 -0
- package/dist/server/rateLimit.js +4 -0
- package/dist/server/realtimeSyncWs.js +36 -12
- package/dist/server/routes/admin.d.ts +4 -0
- package/dist/server/routes/admin.js +113 -3
- package/dist/server/routes/agentRoles.js +3 -2
- package/dist/server/routes/agentSkills.js +3 -2
- package/dist/server/routes/agents.d.ts +7 -0
- package/dist/server/routes/agents.js +394 -39
- package/dist/server/routes/annotatedAttachments.js +3 -2
- package/dist/server/routes/auth.js +3 -1
- package/dist/server/routes/billing.js +5 -1
- package/dist/server/routes/durableTaskHttpRouters.d.ts +11 -2
- package/dist/server/routes/executorPhaseAApprovals.d.ts +19 -0
- package/dist/server/routes/executorPhaseAApprovals.js +140 -0
- package/dist/server/routes/executorPhaseAIssuerRedemptions.d.ts +11 -0
- package/dist/server/routes/executorPhaseAIssuerRedemptions.js +24 -0
- package/dist/server/routes/githubReviewEvidence.d.ts +19 -0
- package/dist/server/routes/githubReviewEvidence.js +116 -0
- package/dist/server/routes/localService.d.ts +15 -4
- package/dist/server/routes/localService.js +138 -40
- package/dist/server/routes/modelConnections.d.ts +24 -0
- package/dist/server/routes/modelConnections.js +205 -0
- package/dist/server/routes/primitives.d.ts +2 -0
- package/dist/server/routes/shared.d.ts +19 -0
- package/dist/server/routes/shared.js +95 -19
- package/dist/server/routes/sync.js +1 -0
- package/dist/server/routes/syncAuxRoutes.js +9 -2
- package/dist/server/routes/syncPullApplyRoutes.js +23 -4
- package/dist/server/routes/syncPushRoutes.d.ts +1 -0
- package/dist/server/routes/syncPushRoutes.js +1 -0
- package/dist/server/routes/syncV3FeedRoutes.js +27 -16
- package/dist/server/routes/syncV3LocalCaptureRoutes.js +28 -2
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.d.ts +1 -0
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.js +26 -0
- package/dist/server/routes/syncV3OperationRoutes.js +45 -9
- package/dist/server/routes/tasks.js +124 -13
- package/dist/server/routes/workflows.js +9 -1
- package/dist/server/routes/workspaces.js +43 -1
- package/dist/server/routes.js +59 -0
- package/dist/server/workspaceDeletionAdmission.d.ts +23 -0
- package/dist/server/workspaceDeletionAdmission.js +50 -0
- package/dist/service/localServiceCli.js +16 -0
- package/dist/service/localServiceClientLifecycle.js +36 -10
- package/dist/services/codexAppServerModelGateway.d.ts +161 -0
- package/dist/services/codexAppServerModelGateway.js +663 -0
- package/dist/services/codexDeviceCodeLoginManager.d.ts +39 -0
- package/dist/services/codexDeviceCodeLoginManager.js +265 -0
- package/dist/services/codexModelProviderConnectionLifecycle.d.ts +8 -0
- package/dist/services/codexModelProviderConnectionLifecycle.js +73 -0
- package/dist/services/executorPhaseAApprovalRuntime.d.ts +14 -0
- package/dist/services/executorPhaseAApprovalRuntime.js +24 -0
- package/dist/services/executorPhaseAApprovalService.d.ts +40 -0
- package/dist/services/executorPhaseAApprovalService.js +609 -0
- package/dist/services/executorPhaseADriftEvaluator.d.ts +78 -0
- package/dist/services/executorPhaseADriftEvaluator.js +93 -0
- package/dist/services/executorPhaseAIssuerCore.d.ts +126 -0
- package/dist/services/executorPhaseAIssuerCore.js +295 -0
- package/dist/services/executorPhaseAIssuerRedemptionService.d.ts +34 -0
- package/dist/services/executorPhaseAIssuerRedemptionService.js +158 -0
- package/dist/services/githubReviewEvidenceRuntime.d.ts +14 -0
- package/dist/services/githubReviewEvidenceRuntime.js +30 -0
- package/dist/services/githubReviewEvidenceService.d.ts +93 -0
- package/dist/services/githubReviewEvidenceService.js +336 -0
- package/dist/services/modelGateway.d.ts +7 -0
- package/dist/services/modelProviderConnectionService.d.ts +71 -0
- package/dist/services/modelProviderConnectionService.js +279 -0
- package/dist/services/modelProviderCredentialHome.d.ts +32 -0
- package/dist/services/modelProviderCredentialHome.js +271 -0
- package/dist/services/ownerScopedModelConnectionGateway.d.ts +12 -0
- package/dist/services/ownerScopedModelConnectionGateway.js +30 -0
- package/dist/services/taskforceAgentConnectionBindingService.d.ts +66 -0
- package/dist/services/taskforceAgentConnectionBindingService.js +185 -0
- package/dist/services/taskforceAgentMcpBridge.d.ts +8 -2
- package/dist/services/taskforceAgentMcpBridge.js +30 -27
- package/dist/shared/adminEdgeProxy.d.ts +5 -0
- package/dist/shared/adminEdgeProxy.js +94 -0
- package/dist/shared/adminProxySessionCookies.d.ts +16 -0
- package/dist/shared/adminProxySessionCookies.js +86 -0
- package/dist/shared/aiProfileColors.d.ts +31 -1
- package/dist/shared/aiProfileColors.js +14 -6
- package/dist/shared/executorPhaseAApprovalGoldenVector.json +269 -0
- package/dist/shared/executorPhaseAApprovalReceipt.d.ts +112 -0
- package/dist/shared/executorPhaseAApprovalReceipt.js +58 -0
- package/dist/shared/executorPhaseAApprovalTrustPolicy.json +10 -0
- package/dist/shared/executorPhaseADriftContracts.d.ts +37 -0
- package/dist/shared/executorPhaseADriftContracts.js +63 -0
- package/dist/shared/executorPhaseAIssuerContracts.d.ts +75 -0
- package/dist/shared/executorPhaseAIssuerContracts.js +90 -0
- package/dist/shared/executorPhaseARunAuthorization.d.ts +120 -0
- package/dist/shared/executorPhaseARunAuthorization.js +232 -0
- package/dist/shared/executorPhaseASchemaValidation.d.ts +7 -0
- package/dist/shared/executorPhaseASchemaValidation.js +53 -0
- package/dist/shared/executorPhaseASchemas/approval-receipt.schema.json +106 -0
- package/dist/shared/executorPhaseASchemas/drift-attestation.schema.json +54 -0
- package/dist/shared/executorPhaseASchemas/drift-request.schema.json +47 -0
- package/dist/shared/executorPhaseASchemas/foundation-manifest.schema.json +29 -0
- package/dist/shared/executorPhaseASchemas/issuer-audit-record.schema.json +24 -0
- package/dist/shared/executorPhaseASchemas/issuer-proof.schema.json +43 -0
- package/dist/shared/executorPhaseASchemas/issuer-redemption-request.schema.json +18 -0
- package/dist/shared/executorPhaseASchemas/issuer-redemption-response.schema.json +39 -0
- package/dist/shared/executorPhaseASchemas/logical-envelope.schema.json +149 -0
- package/dist/shared/executorPhaseASchemas/preflight-report.schema.json +216 -0
- package/dist/shared/executorPhaseASchemas/run-capability.schema.json +111 -0
- package/dist/shared/executorPhaseASchemas/sender-proof.schema.json +37 -0
- package/dist/shared/executorPhaseASchemas/workload-grant.schema.json +68 -0
- package/dist/shared/executorPhaseASchemas/workload-jwt-claims.schema.json +67 -0
- package/dist/shared/executorPhaseATiming.d.ts +1 -0
- package/dist/shared/executorPhaseATiming.js +1 -0
- package/dist/shared/planningIdentity.js +1 -1
- package/dist/shared/productLogoKeys.d.ts +2 -0
- package/dist/shared/productLogoKeys.js +18 -0
- package/dist/shared/taskforceAgentDefinition.d.ts +0 -1
- package/dist/shared/taskforceAgentDefinition.js +6 -3
- package/dist/shared/taskforceAgentModels.d.ts +1 -0
- package/dist/shared/taskforceAgentModels.js +36 -3
- package/dist/shared/userFeatureGrants.d.ts +4 -0
- package/dist/shared/userFeatureGrants.js +7 -0
- package/dist/storage/executorPhaseAApprovalReceiptStore.d.ts +37 -0
- package/dist/storage/executorPhaseAApprovalReceiptStore.js +81 -0
- package/dist/storage/executorPhaseARunAuthorizationStore.d.ts +103 -0
- package/dist/storage/executorPhaseARunAuthorizationStore.js +492 -0
- package/dist/storage/githubReviewEvidenceInstallationStore.d.ts +26 -0
- package/dist/storage/githubReviewEvidenceInstallationStore.js +89 -0
- package/dist/storage/modelProviderConnectionStore.d.ts +99 -0
- package/dist/storage/modelProviderConnectionStore.js +446 -0
- package/dist/storage/postgresAdapter.d.ts +24 -3
- package/dist/storage/postgresAdapter.js +117 -14
- package/dist/storage/postgresWorker.js +22 -5
- package/dist/storage/postgresWorkerProtocol.d.ts +30 -0
- package/dist/storage/postgresWorkerProtocol.js +30 -0
- package/dist/storage/taskforceAgentConnectionBindingStore.d.ts +31 -0
- package/dist/storage/taskforceAgentConnectionBindingStore.js +84 -0
- package/dist/sync/cloudSyncApi.d.ts +4 -1
- package/dist/sync/cloudSyncApi.js +7 -2
- package/dist/sync/contentSyncState.d.ts +1 -1
- package/dist/sync/coordinator/localSyncExecutionPermitStore.d.ts +1 -0
- package/dist/sync/coordinator/localSyncExecutionPermitStore.js +67 -30
- package/dist/sync/coordinator/localWorkspaceSyncPendingV2PushProgress.d.ts +10 -0
- package/dist/sync/coordinator/localWorkspaceSyncPendingV2PushProgress.js +29 -0
- package/dist/sync/coordinator/localWorkspaceSyncRunner.js +6 -2
- package/dist/sync/coordinator/localWorkspaceSyncRunnerState.d.ts +15 -1
- package/dist/sync/coordinator/localWorkspaceSyncRunnerState.js +99 -2
- package/dist/sync/coordinator/workspaceSyncCredentialBroker.d.ts +1 -0
- package/dist/sync/coordinator/workspaceSyncCredentialBroker.js +33 -4
- package/dist/sync/engine/workspaceSyncContentLifecycleAdapter.d.ts +2 -1
- package/dist/sync/engine/workspaceSyncContentVersionStore.d.ts +38 -0
- package/dist/sync/engine/workspaceSyncContentVersionStore.js +50 -1
- package/dist/sync/engine/workspaceSyncEngineBrowserGatewayRemoteServices.js +20 -2
- package/dist/sync/engine/workspaceSyncEngineLifecyclePolicy.js +6 -6
- package/dist/sync/engine/workspaceSyncEngineLocalServices.d.ts +4 -0
- package/dist/sync/engine/workspaceSyncEngineLocalServices.js +11 -0
- package/dist/sync/engine/workspaceSyncEnginePushCompletion.d.ts +14 -0
- package/dist/sync/engine/workspaceSyncEnginePushCompletion.js +84 -0
- package/dist/sync/engine/workspaceSyncEngineRecovery.js +1 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.d.ts +11 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.js +2 -1
- package/dist/sync/engine/workspaceSyncEngineRuntime.d.ts +1 -0
- package/dist/sync/engine/workspaceSyncEngineRuntime.js +1 -0
- package/dist/sync/engine/workspaceSyncEngineServerRemoteServices.js +31 -4
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.d.ts +3 -1
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.js +134 -43
- package/dist/sync/engine/workspaceSyncEngineServerSnapshotReader.js +6 -0
- package/dist/sync/engine/workspaceSyncEngineTransfers.d.ts +1 -1
- package/dist/sync/engine/workspaceSyncEngineTransfers.js +11 -4
- package/dist/sync/engine/workspaceSyncV2ChangeDispatcher.d.ts +1 -0
- package/dist/sync/engine/workspaceSyncV2ChangeDispatcher.js +29 -0
- package/dist/sync/syncApplyHandlers.d.ts +2 -0
- package/dist/sync/syncApplyHandlers.js +10 -1
- package/dist/sync/syncService.d.ts +17 -0
- package/dist/sync/syncService.js +87 -19
- package/dist/sync/taskforceAgentSyncAuthorization.d.ts +16 -0
- package/dist/sync/taskforceAgentSyncAuthorization.js +20 -0
- package/dist/sync/v3/combinedFeedCapability.js +8 -0
- package/dist/sync/v3/durableInitiativeMutationRouter.js +18 -10
- package/dist/sync/v3/durableOperationReplay.d.ts +14 -0
- package/dist/sync/v3/durableOperationReplay.js +18 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.d.ts +2 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.js +14 -1
- package/dist/sync/v3/durableTaskChecklistMutationRouter.d.ts +4 -1
- package/dist/sync/v3/durableTaskChecklistMutationRouter.js +62 -15
- package/dist/sync/v3/durableTaskCommentMutationRouter.js +3 -0
- package/dist/sync/v3/durableTaskHttpBulkMutationRouter.d.ts +1 -0
- package/dist/sync/v3/durableTaskHttpBulkMutationRouter.js +30 -8
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.d.ts +5 -3
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.js +37 -2
- package/dist/sync/v3/durableTaxonomyMutationRouter.js +5 -0
- package/dist/sync/v3/durableWorkflowRuntimeMutationRouter.d.ts +11 -0
- package/dist/sync/v3/durableWorkflowRuntimeMutationRouter.js +39 -10
- package/dist/sync/v3/durableWorkstreamMutationRouter.js +18 -10
- package/dist/sync/v3/durableWorkstreamTaskOrderMutationRouter.js +16 -5
- package/dist/sync/v3/localOutboxDispatchRuntime.js +2 -2
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.d.ts +2 -0
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.js +47 -7
- package/dist/sync/v3/localTaskChecklistOutboxHandler.js +16 -2
- package/dist/sync/v3/localTaskChecklistOutboxService.d.ts +4 -0
- package/dist/sync/v3/localTaskChecklistOutboxService.js +14 -1
- package/dist/sync/v3/localTaskCreateOutboxService.js +15 -6
- package/dist/sync/v3/localTaskMetadataClient.d.ts +1 -0
- package/dist/sync/v3/localTaskMetadataClient.js +1 -0
- package/dist/sync/v3/localTaskMetadataOutboxHandler.js +5 -1
- package/dist/sync/v3/localTaskMetadataOutboxService.d.ts +2 -0
- package/dist/sync/v3/localTaskMetadataOutboxService.js +7 -0
- package/dist/sync/v3/localTaskRestoreOutboxService.js +14 -6
- package/dist/sync/v3/localTaskStatusClient.d.ts +1 -0
- package/dist/sync/v3/localTaskStatusClient.js +6 -1
- package/dist/sync/v3/localTaskStatusOutboxService.d.ts +10 -0
- package/dist/sync/v3/localTaskStatusOutboxService.js +272 -24
- package/dist/sync/v3/syncDurabilityStore.d.ts +41 -0
- package/dist/sync/v3/syncDurabilityStore.js +199 -13
- package/dist/sync/v3/taskAttachmentLinksMutationService.d.ts +6 -4
- package/dist/sync/v3/taskAttachmentLinksMutationService.js +19 -10
- package/dist/sync/v3/taskChecklistMutationService.d.ts +15 -2
- package/dist/sync/v3/taskChecklistMutationService.js +48 -1
- package/dist/sync/v3/taskCreateMutationService.d.ts +2 -2
- package/dist/sync/v3/taskCreateMutationService.js +7 -4
- package/dist/sync/v3/taskMetadataMutationService.d.ts +3 -0
- package/dist/sync/v3/taskMetadataMutationService.js +4 -0
- package/dist/sync/v3/taskRestoreMutationService.d.ts +2 -2
- package/dist/sync/v3/taskRestoreMutationService.js +7 -4
- package/dist/sync/v3/taskStatusMutationService.d.ts +31 -1
- package/dist/sync/v3/taskStatusMutationService.js +123 -3
- package/dist/sync/v3/workflowAssignmentSync.d.ts +6 -0
- package/dist/sync/v3/workflowAssignmentSync.js +30 -0
- package/dist/sync/v3/workspaceSyncJournalReader.js +1 -1
- package/dist/sync/v3/workspaceSyncOperationRetentionService.d.ts +16 -0
- package/dist/sync/v3/workspaceSyncOperationRetentionService.js +83 -0
- package/dist/sync/v3/workspaceSyncV2ProjectionExclusions.d.ts +1 -1
- package/dist/sync/v3/workspaceSyncV2ProjectionExclusions.js +13 -3
- package/dist/sync/v3/workspaceSyncV3AttachmentApplyObligationStore.d.ts +11 -0
- package/dist/sync/v3/workspaceSyncV3AttachmentApplyObligationStore.js +27 -10
- package/dist/sync/v3/workspaceSyncV3AttachmentAssetHydration.d.ts +2 -1
- package/dist/sync/v3/workspaceSyncV3AttachmentAssetHydration.js +52 -10
- package/dist/sync/v3/workspaceSyncV3CloudOperationHandler.d.ts +1 -0
- package/dist/sync/v3/workspaceSyncV3CloudOperationHandler.js +18 -3
- package/dist/sync/v3/workspaceSyncV3CombinedFeedOrchestrator.js +8 -3
- package/dist/sync/v3/workspaceSyncV3CombinedLocalApply.js +51 -10
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.d.ts +14 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.js +49 -25
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.d.ts +13 -4
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.js +124 -57
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.d.ts +20 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.js +106 -30
- package/dist/sync/v3/workspaceSyncV3CombinedWireContract.d.ts +4 -1
- package/dist/sync/v3/workspaceSyncV3CombinedWireContract.js +34 -0
- package/dist/sync/v3/workspaceSyncV3CoverageRegistry.js +12 -0
- package/dist/sync/v3/workspaceSyncV3FeedProfile.d.ts +1 -1
- package/dist/sync/v3/workspaceSyncV3LegacyBoundaryAttestation.d.ts +1 -0
- package/dist/sync/v3/workspaceSyncV3LegacyBoundaryAttestation.js +23 -10
- package/dist/sync/v3/workspaceSyncV3NestedTaskApply.d.ts +3 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskApply.js +64 -13
- package/dist/sync/v3/workspaceSyncV3NestedTaskCodecs.d.ts +9 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskCodecs.js +26 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskProjection.d.ts +15 -5
- package/dist/sync/v3/workspaceSyncV3NestedTaskProjection.js +50 -14
- package/dist/sync/v3/workspaceSyncV3NestedTaskRepairSnapshot.d.ts +2 -1
- package/dist/sync/v3/workspaceSyncV3NestedTaskRepairSnapshot.js +11 -3
- package/dist/sync/v3/workspaceSyncV3OperationProtocol.d.ts +5 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.js +55 -9
- package/dist/sync/v3/workspaceSyncV3RepairSnapshotRetentionService.d.ts +17 -0
- package/dist/sync/v3/workspaceSyncV3RepairSnapshotRetentionService.js +64 -0
- package/dist/sync/v3/workspaceSyncV3TaskCommentAudit.js +9 -2
- package/dist/sync/v3/workspaceSyncV3TaskCoverCoverage.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverCoverage.js +37 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverWireContract.d.ts +6 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverWireContract.js +9 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowTaskCoverCoverage.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowTaskCoverCoverage.js +33 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowTaskCoverWireContract.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowTaskCoverWireContract.js +8 -0
- package/dist/sync/workspacePullFeed.js +2 -1
- package/dist/sync/workspaceRepair.d.ts +8 -2
- package/dist/sync/workspaceRepair.js +222 -6
- package/dist/sync/workspaceSyncModel.d.ts +21 -0
- package/dist/sync/workspaceSyncModel.js +35 -7
- package/dist/sync/workspaceSyncState.d.ts +1 -0
- package/dist/sync/workspaceSyncV2SnapshotBuilder.d.ts +6 -0
- package/dist/sync/workspaceSyncV2SnapshotBuilder.js +5 -0
- package/dist/types.d.ts +47 -1
- package/dist/types.js +6 -0
- package/dist/ui/assets/AiIdentityRosterCard-OcSz1PkK.js +1 -0
- package/dist/ui/assets/AiProfilesModule-ByhYW5Xi.js +1 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-BTM6nIg_.js +3 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-TzYu7pkG.css +1 -0
- package/dist/ui/assets/{AssetTraySortControl-Kf1pelSy.js → AssetTraySortControl-DabEG8L4.js} +1 -1
- package/dist/ui/assets/{ContextAttachmentManager-B8boOs6Q.js → ContextAttachmentManager-Coa8yVGM.js} +2 -2
- package/dist/ui/assets/{DocumentWorkspace-DXH4XUsB.js → DocumentWorkspace-BB0qhdix.js} +1 -1
- package/dist/ui/assets/{EntityActivityTimeline-BtSTq0ON.js → EntityActivityTimeline-CZ8x4UJE.js} +1 -1
- package/dist/ui/assets/PlanningModule-pRPjR7v5.js +1 -0
- package/dist/ui/assets/PlansPage-D86pZSSl.js +1 -0
- package/dist/ui/assets/TaskContextUpload-BVIkU9yT.js +1 -0
- package/dist/ui/assets/TaskSettings-Cv1mNhv_.js +12 -0
- package/dist/ui/assets/TaskforceAgentsModule-b-8R25cJ.css +1 -0
- package/dist/ui/assets/TaskforceAgentsModule-gmH-PD2q.js +24 -0
- package/dist/ui/assets/{WorkflowManagerModule-DWFspC-o.js → WorkflowManagerModule-DbfnHJ-f.js} +1 -1
- package/dist/ui/assets/index-BZ-hdZSk.css +1 -0
- package/dist/ui/assets/index-CTsDBaef.js +7 -0
- package/dist/ui/assets/{vendor-icons-BkFLXavV.js → vendor-icons-Bsq-mcEn.js} +1 -1
- package/dist/ui/branding/logos/letterhead_dark.png +0 -0
- package/dist/ui/branding/logos/letterhead_light.png +0 -0
- package/dist/ui/branding/logos/signature_dark.png +0 -0
- package/dist/ui/branding/logos/signature_light.png +0 -0
- package/dist/ui/index.html +3 -3
- package/dist/utils/aiProfileDefaultLogo.js +16 -48
- package/dist/utils/httpSetCookie.d.ts +1 -0
- package/dist/utils/httpSetCookie.js +4 -1
- package/dist/utils/localRuntimeUrl.d.ts +1 -0
- package/dist/utils/localRuntimeUrl.js +14 -0
- package/dist/utils/productLogoRegistry.d.ts +2 -0
- package/dist/utils/productLogoRegistry.js +36 -0
- package/dist/utils/syncStatusPresentation.d.ts +4 -0
- package/dist/utils/syncStatusPresentation.js +17 -0
- package/dist/utils/taskActivity.d.ts +3 -2
- package/dist/utils/taskActivity.js +19 -2
- package/dist/utils/taskEditorReconciliation.d.ts +40 -0
- package/dist/utils/taskEditorReconciliation.js +217 -0
- package/dist/utils/taskEvents.d.ts +2 -0
- package/dist/utils/taskNormalization.d.ts +1 -0
- package/dist/utils/taskNormalization.js +39 -0
- package/dist/utils/taskSearch.js +2 -2
- package/dist/utils/uiNotice.d.ts +4 -0
- package/dist/utils/workspaceSyncPresentation.d.ts +1 -1
- package/dist/utils/workspaceSyncPresentation.js +23 -17
- package/package.json +36 -6
- package/dist/ui/assets/AiIdentityRosterCard-MZs7lVED.js +0 -1
- package/dist/ui/assets/AiProfilesModule-C3i0LOxe.js +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-CBRZ8rca.css +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-DVZk5Tln.js +0 -3
- package/dist/ui/assets/PlanningModule-BPVyEa-f.js +0 -1
- package/dist/ui/assets/PlansPage-ChqgxALc.js +0 -1
- package/dist/ui/assets/TaskContextUpload-CB3ol0sN.js +0 -1
- package/dist/ui/assets/TaskSettings-g4ECKNOz.js +0 -12
- package/dist/ui/assets/TaskforceAgentsModule-BazdUwxZ.js +0 -21
- package/dist/ui/assets/TaskforceAgentsModule-D6IC0S7Q.css +0 -1
- package/dist/ui/assets/index-BUplSsv_.js +0 -7
- package/dist/ui/assets/index-gz2EXuoK.css +0 -1
|
@@ -172,7 +172,6 @@
|
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
.projectSlash {
|
|
175
|
-
margin: 0 4px;
|
|
176
175
|
opacity: 0.3;
|
|
177
176
|
font-weight: 300;
|
|
178
177
|
color: var(--text-muted);
|
|
@@ -181,6 +180,7 @@
|
|
|
181
180
|
.projectNameGroup {
|
|
182
181
|
display: inline-flex;
|
|
183
182
|
align-items: center;
|
|
183
|
+
gap: 6px;
|
|
184
184
|
flex: 0 0 auto;
|
|
185
185
|
min-width: 0;
|
|
186
186
|
}
|
|
@@ -194,13 +194,16 @@
|
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
.projectName {
|
|
197
|
+
appearance: none;
|
|
197
198
|
font-size: 18px;
|
|
199
|
+
font-family: inherit;
|
|
198
200
|
font-weight: 600;
|
|
201
|
+
font-style: italic;
|
|
199
202
|
color: var(--chrome-project-pill-text);
|
|
200
|
-
background:
|
|
201
|
-
padding: 2px
|
|
202
|
-
border
|
|
203
|
-
border:
|
|
203
|
+
background: transparent;
|
|
204
|
+
padding: 2px;
|
|
205
|
+
border: 0;
|
|
206
|
+
border-radius: 0;
|
|
204
207
|
letter-spacing: 0.02em;
|
|
205
208
|
text-transform: uppercase;
|
|
206
209
|
display: inline-flex;
|
|
@@ -212,6 +215,36 @@
|
|
|
212
215
|
white-space: nowrap;
|
|
213
216
|
}
|
|
214
217
|
|
|
218
|
+
button.projectName {
|
|
219
|
+
cursor: pointer;
|
|
220
|
+
transition: color var(--transition-base);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
button.projectName:hover {
|
|
224
|
+
color: var(--brand-primary-strong);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
button.projectName:focus-visible {
|
|
228
|
+
outline: 2px solid var(--field-focus-border, var(--brand-primary));
|
|
229
|
+
outline-offset: 3px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.projectNameCopied {
|
|
233
|
+
color: var(--status-success-text);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.projectNameCopyFeedback {
|
|
237
|
+
position: absolute;
|
|
238
|
+
width: 1px;
|
|
239
|
+
height: 1px;
|
|
240
|
+
padding: 0;
|
|
241
|
+
margin: -1px;
|
|
242
|
+
overflow: hidden;
|
|
243
|
+
clip: rect(0, 0, 0, 0);
|
|
244
|
+
white-space: nowrap;
|
|
245
|
+
border: 0;
|
|
246
|
+
}
|
|
247
|
+
|
|
215
248
|
.taskCountBadge {
|
|
216
249
|
display: inline-flex;
|
|
217
250
|
align-items: center;
|
|
@@ -1137,16 +1170,35 @@
|
|
|
1137
1170
|
|
|
1138
1171
|
.settingsTabs {
|
|
1139
1172
|
display: flex;
|
|
1140
|
-
padding: 12px 1.25rem 0 1.25rem;
|
|
1141
|
-
gap: 4px;
|
|
1142
|
-
background: var(--bg-secondary);
|
|
1143
|
-
border-bottom: 1px solid var(--border-primary);
|
|
1144
1173
|
position: sticky;
|
|
1145
1174
|
top: 0;
|
|
1146
1175
|
z-index: 20;
|
|
1176
|
+
align-items: flex-end;
|
|
1177
|
+
min-width: 0;
|
|
1178
|
+
min-height: 42px;
|
|
1179
|
+
padding: 0 4px;
|
|
1180
|
+
gap: 4px;
|
|
1181
|
+
background: transparent;
|
|
1147
1182
|
flex-shrink: 0;
|
|
1148
1183
|
overflow-x: auto;
|
|
1149
1184
|
overflow-y: hidden;
|
|
1185
|
+
scrollbar-width: none;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.settingsTabs::after {
|
|
1189
|
+
content: '';
|
|
1190
|
+
position: absolute;
|
|
1191
|
+
z-index: 0;
|
|
1192
|
+
right: 4px;
|
|
1193
|
+
bottom: 0;
|
|
1194
|
+
left: 4px;
|
|
1195
|
+
height: 1px;
|
|
1196
|
+
background: var(--border-default);
|
|
1197
|
+
pointer-events: none;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.settingsTabs::-webkit-scrollbar {
|
|
1201
|
+
display: none;
|
|
1150
1202
|
}
|
|
1151
1203
|
|
|
1152
1204
|
.settingsLayout {
|
|
@@ -1276,35 +1328,57 @@
|
|
|
1276
1328
|
}
|
|
1277
1329
|
|
|
1278
1330
|
.settingsTabBtn {
|
|
1279
|
-
|
|
1331
|
+
appearance: none;
|
|
1332
|
+
position: relative;
|
|
1333
|
+
z-index: 1;
|
|
1334
|
+
min-width: 88px;
|
|
1335
|
+
min-height: 38px;
|
|
1336
|
+
padding: 0 18px;
|
|
1280
1337
|
background: transparent;
|
|
1281
|
-
border:
|
|
1282
|
-
border-bottom:
|
|
1283
|
-
|
|
1284
|
-
|
|
1338
|
+
border: 1px solid transparent;
|
|
1339
|
+
border-bottom: 0;
|
|
1340
|
+
border-radius: var(--radius-md) var(--radius-md) 0 0;
|
|
1341
|
+
color: var(--text-helper);
|
|
1342
|
+
font: inherit;
|
|
1343
|
+
font-size: 0.75rem;
|
|
1285
1344
|
font-weight: 600;
|
|
1286
|
-
|
|
1287
|
-
letter-spacing: 0.03em;
|
|
1345
|
+
letter-spacing: 0.02em;
|
|
1288
1346
|
cursor: pointer;
|
|
1289
|
-
display: flex;
|
|
1290
|
-
align-items: center;
|
|
1291
|
-
gap: 8px;
|
|
1292
|
-
transition: all 0.2s;
|
|
1293
|
-
border-top-left-radius: 8px;
|
|
1294
|
-
border-top-right-radius: 8px;
|
|
1295
1347
|
flex-shrink: 0;
|
|
1296
1348
|
white-space: nowrap;
|
|
1349
|
+
transition:
|
|
1350
|
+
background-color var(--transition-base),
|
|
1351
|
+
border-color var(--transition-base),
|
|
1352
|
+
color var(--transition-base);
|
|
1297
1353
|
}
|
|
1298
1354
|
|
|
1299
|
-
.settingsTabBtn:hover {
|
|
1300
|
-
|
|
1301
|
-
|
|
1355
|
+
.settingsTabBtn:hover:not(.settingsTabBtnActive) {
|
|
1356
|
+
background: var(--surface-inset);
|
|
1357
|
+
border-color: color-mix(in srgb, var(--border-default) 72%, transparent);
|
|
1358
|
+
color: var(--text-secondary);
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.settingsTabBtn:focus-visible {
|
|
1362
|
+
z-index: 2;
|
|
1363
|
+
outline: 2px solid var(--brand-primary);
|
|
1364
|
+
outline-offset: -3px;
|
|
1302
1365
|
}
|
|
1303
1366
|
|
|
1304
1367
|
.settingsTabBtnActive {
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1368
|
+
margin-bottom: -1px;
|
|
1369
|
+
background: var(--surface-modal);
|
|
1370
|
+
border-color: var(--border-default);
|
|
1371
|
+
color: var(--brand-primary-strong);
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.settingsTabBtnActive::after {
|
|
1375
|
+
content: '';
|
|
1376
|
+
position: absolute;
|
|
1377
|
+
right: 0;
|
|
1378
|
+
bottom: -1px;
|
|
1379
|
+
left: 0;
|
|
1380
|
+
height: 2px;
|
|
1381
|
+
background: var(--surface-modal);
|
|
1308
1382
|
}
|
|
1309
1383
|
|
|
1310
1384
|
.settingsContent {
|
|
@@ -1325,12 +1399,10 @@
|
|
|
1325
1399
|
}
|
|
1326
1400
|
|
|
1327
1401
|
.settingsTabMcpOnly .settingsTabs {
|
|
1328
|
-
margin: 0
|
|
1329
|
-
padding:
|
|
1330
|
-
background:
|
|
1331
|
-
box-shadow:
|
|
1332
|
-
0 -16px 0 16px var(--bg-secondary),
|
|
1333
|
-
0 10px 18px color-mix(in srgb, var(--bg-secondary) 92%, transparent);
|
|
1402
|
+
margin: 0;
|
|
1403
|
+
padding: 0 4px;
|
|
1404
|
+
background: transparent;
|
|
1405
|
+
box-shadow: none;
|
|
1334
1406
|
}
|
|
1335
1407
|
|
|
1336
1408
|
.mcpRegistrationHint {
|
|
@@ -1533,6 +1605,116 @@
|
|
|
1533
1605
|
gap: 0.5rem;
|
|
1534
1606
|
}
|
|
1535
1607
|
|
|
1608
|
+
.taskCardSettingsLayout {
|
|
1609
|
+
display: grid;
|
|
1610
|
+
grid-template-columns: minmax(13rem, 16rem) minmax(17rem, 20rem);
|
|
1611
|
+
align-items: start;
|
|
1612
|
+
gap: var(--space-2xl);
|
|
1613
|
+
width: min(100%, 38rem);
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.taskCardDependentSetting {
|
|
1617
|
+
margin-left: var(--space-xl);
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
.taskCardSettingWithHelp {
|
|
1621
|
+
display: flex;
|
|
1622
|
+
flex-direction: column;
|
|
1623
|
+
gap: 2px;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
.taskCardSettingHelp {
|
|
1627
|
+
margin-left: 23px;
|
|
1628
|
+
color: var(--text-helper);
|
|
1629
|
+
font-size: 10px;
|
|
1630
|
+
line-height: 1.3;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.taskCardSettingsPreview {
|
|
1634
|
+
display: flex;
|
|
1635
|
+
flex-direction: column;
|
|
1636
|
+
gap: var(--space-md);
|
|
1637
|
+
min-width: 0;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
.taskCardSettingsPreviewFrame {
|
|
1641
|
+
min-width: 0;
|
|
1642
|
+
pointer-events: none;
|
|
1643
|
+
user-select: none;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
@media (max-width: 720px) {
|
|
1647
|
+
.taskCardSettingsLayout {
|
|
1648
|
+
grid-template-columns: minmax(0, 1fr);
|
|
1649
|
+
gap: var(--space-xl);
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.taskCardSettingsPreview {
|
|
1653
|
+
width: min(100%, 20rem);
|
|
1654
|
+
}
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.workspaceIdentity {
|
|
1658
|
+
display: grid;
|
|
1659
|
+
grid-template-columns: 7.5rem minmax(0, 1fr);
|
|
1660
|
+
align-items: center;
|
|
1661
|
+
gap: var(--space-md, 12px);
|
|
1662
|
+
padding-bottom: var(--space-sm, 8px);
|
|
1663
|
+
border-bottom: 1px solid var(--border-divider);
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
.workspaceIdentityValueRow {
|
|
1667
|
+
display: flex;
|
|
1668
|
+
align-items: center;
|
|
1669
|
+
gap: var(--space-sm, 8px);
|
|
1670
|
+
min-width: 0;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.workspaceIdentityValue {
|
|
1674
|
+
min-width: 0;
|
|
1675
|
+
overflow: hidden;
|
|
1676
|
+
color: var(--text-body);
|
|
1677
|
+
font-size: var(--text-sm, 14px);
|
|
1678
|
+
text-overflow: ellipsis;
|
|
1679
|
+
white-space: nowrap;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.workspaceProfileForm {
|
|
1683
|
+
display: grid;
|
|
1684
|
+
grid-template-columns: 7.5rem minmax(0, 1fr);
|
|
1685
|
+
align-items: center;
|
|
1686
|
+
gap: var(--space-sm, 8px) var(--space-md, 12px);
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.workspaceProfileTextareaLabel {
|
|
1690
|
+
align-self: start;
|
|
1691
|
+
padding-top: var(--space-md, 12px);
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
.workspaceProfileActions {
|
|
1695
|
+
display: flex;
|
|
1696
|
+
grid-column: 2;
|
|
1697
|
+
justify-content: flex-end;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
@media (max-width: 640px) {
|
|
1701
|
+
.workspaceIdentity {
|
|
1702
|
+
grid-template-columns: 6.5rem minmax(0, 1fr);
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.workspaceProfileForm {
|
|
1706
|
+
grid-template-columns: minmax(0, 1fr);
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
.workspaceProfileTextareaLabel {
|
|
1710
|
+
padding-top: 0;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
.workspaceProfileActions {
|
|
1714
|
+
grid-column: 1;
|
|
1715
|
+
}
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1536
1718
|
.settingTitle {
|
|
1537
1719
|
font-size: 0.75rem;
|
|
1538
1720
|
font-weight: 600;
|
|
@@ -4325,7 +4507,10 @@
|
|
|
4325
4507
|
background: #1e1e2e !important;
|
|
4326
4508
|
padding: 14px 16px !important;
|
|
4327
4509
|
border: none !important;
|
|
4328
|
-
overflow-x:
|
|
4510
|
+
overflow-x: hidden;
|
|
4511
|
+
white-space: pre-wrap;
|
|
4512
|
+
overflow-wrap: anywhere;
|
|
4513
|
+
word-break: break-word;
|
|
4329
4514
|
border-radius: 0 !important;
|
|
4330
4515
|
}
|
|
4331
4516
|
|
|
@@ -4775,6 +4960,23 @@
|
|
|
4775
4960
|
overflow-x: visible;
|
|
4776
4961
|
}
|
|
4777
4962
|
|
|
4963
|
+
.kanbanDroppableScrollVirtualized {
|
|
4964
|
+
display: block;
|
|
4965
|
+
position: relative;
|
|
4966
|
+
overflow-anchor: none;
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4969
|
+
.kanbanVirtualCanvas {
|
|
4970
|
+
position: relative;
|
|
4971
|
+
width: 100%;
|
|
4972
|
+
}
|
|
4973
|
+
|
|
4974
|
+
.kanbanVirtualRow {
|
|
4975
|
+
position: absolute;
|
|
4976
|
+
left: 0;
|
|
4977
|
+
right: 0;
|
|
4978
|
+
}
|
|
4979
|
+
|
|
4778
4980
|
.kanbanEmpty {
|
|
4779
4981
|
padding: 16px;
|
|
4780
4982
|
background: var(--bg-primary);
|
|
@@ -5427,6 +5629,246 @@
|
|
|
5427
5629
|
display: none;
|
|
5428
5630
|
}
|
|
5429
5631
|
|
|
5632
|
+
.taskforceModelConnectionsRoot {
|
|
5633
|
+
display: grid;
|
|
5634
|
+
grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
|
|
5635
|
+
width: 100%;
|
|
5636
|
+
min-height: 0;
|
|
5637
|
+
}
|
|
5638
|
+
|
|
5639
|
+
.taskforceModelConnectionsRootExternalLibrary {
|
|
5640
|
+
grid-template-columns: minmax(0, 1fr);
|
|
5641
|
+
}
|
|
5642
|
+
|
|
5643
|
+
.taskforceModelConnectionsWorkspace {
|
|
5644
|
+
display: grid;
|
|
5645
|
+
gap: 1rem;
|
|
5646
|
+
width: min(100%, 920px);
|
|
5647
|
+
min-width: 0;
|
|
5648
|
+
padding: 18px clamp(18px, 3vw, 32px);
|
|
5649
|
+
box-sizing: border-box;
|
|
5650
|
+
align-content: start;
|
|
5651
|
+
}
|
|
5652
|
+
|
|
5653
|
+
.taskforceModelConnectionsHeader,
|
|
5654
|
+
.taskforceModelConnectionCardHeader,
|
|
5655
|
+
.taskforceModelConnectionActions,
|
|
5656
|
+
.taskforceModelConnectionCodeRow,
|
|
5657
|
+
.taskforceAgentConnectionControlHeader,
|
|
5658
|
+
.taskforceAgentConnectionBindingRow,
|
|
5659
|
+
.taskforceAgentConnectionCallout {
|
|
5660
|
+
display: flex;
|
|
5661
|
+
align-items: center;
|
|
5662
|
+
gap: 0.75rem;
|
|
5663
|
+
}
|
|
5664
|
+
|
|
5665
|
+
.taskforceModelConnectionsHeader,
|
|
5666
|
+
.taskforceModelConnectionCardHeader,
|
|
5667
|
+
.taskforceAgentConnectionControlHeader,
|
|
5668
|
+
.taskforceAgentConnectionCallout {
|
|
5669
|
+
justify-content: space-between;
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
.taskforceModelConnectionsHeader > div,
|
|
5673
|
+
.taskforceModelConnectionCardHeader > div {
|
|
5674
|
+
display: grid;
|
|
5675
|
+
gap: 0.25rem;
|
|
5676
|
+
min-width: 0;
|
|
5677
|
+
}
|
|
5678
|
+
|
|
5679
|
+
.taskforceModelConnectionNameRow,
|
|
5680
|
+
.taskforceModelConnectionNameEditor {
|
|
5681
|
+
display: flex;
|
|
5682
|
+
align-items: center;
|
|
5683
|
+
gap: 0.375rem;
|
|
5684
|
+
min-width: 0;
|
|
5685
|
+
}
|
|
5686
|
+
|
|
5687
|
+
.taskforceModelConnectionCardHeader > .taskforceModelConnectionIdentity {
|
|
5688
|
+
display: flex;
|
|
5689
|
+
align-items: center;
|
|
5690
|
+
gap: 0.75rem;
|
|
5691
|
+
}
|
|
5692
|
+
|
|
5693
|
+
.taskforceModelConnectionIdentityText {
|
|
5694
|
+
display: grid;
|
|
5695
|
+
gap: 0.25rem;
|
|
5696
|
+
min-width: 0;
|
|
5697
|
+
}
|
|
5698
|
+
|
|
5699
|
+
.taskforceModelConnectionLogo {
|
|
5700
|
+
display: inline-flex;
|
|
5701
|
+
flex: 0 0 auto;
|
|
5702
|
+
width: 2.25rem;
|
|
5703
|
+
height: 2.25rem;
|
|
5704
|
+
align-items: center;
|
|
5705
|
+
justify-content: center;
|
|
5706
|
+
border: 1px solid var(--border-default);
|
|
5707
|
+
border-radius: var(--radius-md);
|
|
5708
|
+
background: var(--surface-elevated);
|
|
5709
|
+
}
|
|
5710
|
+
|
|
5711
|
+
.taskforceModelConnectionLogo img {
|
|
5712
|
+
display: block;
|
|
5713
|
+
width: 1.5rem;
|
|
5714
|
+
height: 1.5rem;
|
|
5715
|
+
object-fit: contain;
|
|
5716
|
+
}
|
|
5717
|
+
|
|
5718
|
+
.taskforceModelConnectionNameRow strong {
|
|
5719
|
+
overflow: hidden;
|
|
5720
|
+
text-overflow: ellipsis;
|
|
5721
|
+
white-space: nowrap;
|
|
5722
|
+
}
|
|
5723
|
+
|
|
5724
|
+
.taskforceModelConnectionNameEditor .input {
|
|
5725
|
+
min-width: 12rem;
|
|
5726
|
+
max-width: 24rem;
|
|
5727
|
+
}
|
|
5728
|
+
|
|
5729
|
+
.taskforceModelConnectionCard,
|
|
5730
|
+
.taskforceAgentConnectionControl {
|
|
5731
|
+
display: grid;
|
|
5732
|
+
gap: 0.75rem;
|
|
5733
|
+
padding: 1rem;
|
|
5734
|
+
border: 1px solid var(--border-default);
|
|
5735
|
+
border-radius: var(--radius-md);
|
|
5736
|
+
background: var(--surface-panel);
|
|
5737
|
+
}
|
|
5738
|
+
|
|
5739
|
+
.taskforceModelConnectionLogin {
|
|
5740
|
+
border-color: var(--status-warning);
|
|
5741
|
+
background: var(--surface-elevated);
|
|
5742
|
+
}
|
|
5743
|
+
|
|
5744
|
+
.taskforceModelConnectionCardHeader strong,
|
|
5745
|
+
.taskforceAgentConnectionControlHeader strong,
|
|
5746
|
+
.taskforceAgentConnectionControl > div:first-child strong {
|
|
5747
|
+
color: var(--text-title);
|
|
5748
|
+
font-size: 0.875rem;
|
|
5749
|
+
}
|
|
5750
|
+
|
|
5751
|
+
.taskforceModelConnectionCardHeader > div > span,
|
|
5752
|
+
.taskforceAgentConnectionControl > span,
|
|
5753
|
+
.taskforceAgentConnectionCallout > span,
|
|
5754
|
+
.taskforceModelConnectionsEmpty > span {
|
|
5755
|
+
color: var(--text-helper);
|
|
5756
|
+
font-size: 0.75rem;
|
|
5757
|
+
line-height: 1.45;
|
|
5758
|
+
}
|
|
5759
|
+
|
|
5760
|
+
.taskforceModelConnectionMeta {
|
|
5761
|
+
display: flex;
|
|
5762
|
+
flex-wrap: wrap;
|
|
5763
|
+
gap: 0.5rem 1rem;
|
|
5764
|
+
color: var(--text-secondary);
|
|
5765
|
+
font-size: 0.75rem;
|
|
5766
|
+
}
|
|
5767
|
+
|
|
5768
|
+
.taskforceModelConnectionActions {
|
|
5769
|
+
flex-wrap: wrap;
|
|
5770
|
+
}
|
|
5771
|
+
|
|
5772
|
+
.taskforceModelConnectionCodeRow {
|
|
5773
|
+
flex-wrap: wrap;
|
|
5774
|
+
}
|
|
5775
|
+
|
|
5776
|
+
.taskforceModelConnectionCodeRow code {
|
|
5777
|
+
min-width: 9rem;
|
|
5778
|
+
padding: 0.625rem 0.875rem;
|
|
5779
|
+
border: 1px solid var(--border-strong);
|
|
5780
|
+
border-radius: var(--radius-md);
|
|
5781
|
+
background: var(--surface-inset);
|
|
5782
|
+
color: var(--text-title);
|
|
5783
|
+
font-size: 1rem;
|
|
5784
|
+
font-weight: 700;
|
|
5785
|
+
text-align: center;
|
|
5786
|
+
}
|
|
5787
|
+
|
|
5788
|
+
.taskforceModelConnectionsLoading,
|
|
5789
|
+
.taskforceModelConnectionsEmpty {
|
|
5790
|
+
min-height: 12rem;
|
|
5791
|
+
display: flex;
|
|
5792
|
+
align-items: center;
|
|
5793
|
+
justify-content: center;
|
|
5794
|
+
color: var(--text-secondary);
|
|
5795
|
+
}
|
|
5796
|
+
|
|
5797
|
+
.taskforceModelConnectionsEmpty {
|
|
5798
|
+
flex-direction: column;
|
|
5799
|
+
gap: 0.5rem;
|
|
5800
|
+
border: 1px dashed var(--border-default);
|
|
5801
|
+
border-radius: var(--radius-md);
|
|
5802
|
+
background: var(--surface-inset);
|
|
5803
|
+
text-align: center;
|
|
5804
|
+
}
|
|
5805
|
+
|
|
5806
|
+
.taskforceModelConnectionsEmpty strong {
|
|
5807
|
+
color: var(--text-title);
|
|
5808
|
+
font-size: 0.875rem;
|
|
5809
|
+
}
|
|
5810
|
+
|
|
5811
|
+
.taskforceAgentConnectionControl {
|
|
5812
|
+
margin-top: 0.75rem;
|
|
5813
|
+
background: var(--surface-inset);
|
|
5814
|
+
}
|
|
5815
|
+
|
|
5816
|
+
.taskforceAgentConnectionControl > div:first-child,
|
|
5817
|
+
.taskforceAgentConnectionControlHeader > div {
|
|
5818
|
+
display: flex;
|
|
5819
|
+
align-items: center;
|
|
5820
|
+
gap: 0.5rem;
|
|
5821
|
+
}
|
|
5822
|
+
|
|
5823
|
+
.taskforceAgentConnectionBindingRow {
|
|
5824
|
+
align-items: flex-end;
|
|
5825
|
+
flex-wrap: wrap;
|
|
5826
|
+
}
|
|
5827
|
+
|
|
5828
|
+
.taskforceAgentConnectionBindingRow > label {
|
|
5829
|
+
flex: 1 1 16rem;
|
|
5830
|
+
}
|
|
5831
|
+
|
|
5832
|
+
@media (max-width: 720px) {
|
|
5833
|
+
.taskforceModelConnectionsRoot {
|
|
5834
|
+
grid-template-columns: minmax(0, 1fr);
|
|
5835
|
+
}
|
|
5836
|
+
|
|
5837
|
+
.taskforceModelConnectionsHeader,
|
|
5838
|
+
.taskforceModelConnectionCardHeader,
|
|
5839
|
+
.taskforceAgentConnectionControlHeader,
|
|
5840
|
+
.taskforceAgentConnectionCallout {
|
|
5841
|
+
align-items: stretch;
|
|
5842
|
+
flex-direction: column;
|
|
5843
|
+
}
|
|
5844
|
+
|
|
5845
|
+
.taskforceModelConnectionActions > button,
|
|
5846
|
+
.taskforceModelConnectionCodeRow > a,
|
|
5847
|
+
.taskforceModelConnectionCodeRow > button,
|
|
5848
|
+
.taskforceAgentConnectionBindingRow > button,
|
|
5849
|
+
.taskforceAgentConnectionCallout > button,
|
|
5850
|
+
.taskforceModelConnectionsHeader > button,
|
|
5851
|
+
.taskforceModelConnectionsWorkspace > .taskforceAgentTestError > button,
|
|
5852
|
+
.taskforceModelConnectionsWorkspace > .taskforceAgentTestNotice > button {
|
|
5853
|
+
flex: 1 1 auto;
|
|
5854
|
+
min-height: 44px;
|
|
5855
|
+
}
|
|
5856
|
+
|
|
5857
|
+
.taskforceModelConnectionsWorkspace > .taskforceAgentTestError,
|
|
5858
|
+
.taskforceModelConnectionsWorkspace > .taskforceAgentTestNotice {
|
|
5859
|
+
flex-wrap: wrap;
|
|
5860
|
+
}
|
|
5861
|
+
|
|
5862
|
+
.taskforceModelConnectionsWorkspace > .taskforceAgentTestError > span,
|
|
5863
|
+
.taskforceModelConnectionsWorkspace > .taskforceAgentTestNotice > span {
|
|
5864
|
+
flex: 1 1 calc(100% - 24px);
|
|
5865
|
+
}
|
|
5866
|
+
|
|
5867
|
+
.taskforceModelConnectionCodeRow > :global(button.tf-control-icon) {
|
|
5868
|
+
min-width: 44px;
|
|
5869
|
+
}
|
|
5870
|
+
}
|
|
5871
|
+
|
|
5430
5872
|
.taskforceAgentBuilderEmpty {
|
|
5431
5873
|
min-height: min(420px, 58vh);
|
|
5432
5874
|
display: flex;
|
|
@@ -5885,7 +6327,7 @@
|
|
|
5885
6327
|
min-width: 0;
|
|
5886
6328
|
}
|
|
5887
6329
|
|
|
5888
|
-
.
|
|
6330
|
+
.taskforceAgentHeaderTestPanel {
|
|
5889
6331
|
display: flex;
|
|
5890
6332
|
flex-direction: column;
|
|
5891
6333
|
gap: 10px;
|
|
@@ -5896,31 +6338,22 @@
|
|
|
5896
6338
|
padding: 12px;
|
|
5897
6339
|
}
|
|
5898
6340
|
|
|
5899
|
-
.
|
|
5900
|
-
display:
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
}
|
|
5905
|
-
|
|
5906
|
-
.taskforceAgentTestTitle .taskforceAgentBuilderEmptyIcon {
|
|
5907
|
-
width: 36px;
|
|
5908
|
-
height: 36px;
|
|
5909
|
-
flex: 0 0 auto;
|
|
6341
|
+
.taskforceAgentTestComposer {
|
|
6342
|
+
display: grid;
|
|
6343
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
6344
|
+
align-items: end;
|
|
6345
|
+
gap: 8px;
|
|
5910
6346
|
}
|
|
5911
6347
|
|
|
5912
|
-
.
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
gap: 2px;
|
|
5916
|
-
min-width: 0;
|
|
6348
|
+
.taskforceAgentTestComposer textarea {
|
|
6349
|
+
min-height: 92px;
|
|
6350
|
+
resize: vertical;
|
|
5917
6351
|
}
|
|
5918
6352
|
|
|
5919
|
-
.
|
|
5920
|
-
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
line-height: 1.4;
|
|
6353
|
+
.taskforceAgentTestSendButton {
|
|
6354
|
+
width: 36px;
|
|
6355
|
+
height: 36px;
|
|
6356
|
+
margin-bottom: 0;
|
|
5924
6357
|
}
|
|
5925
6358
|
|
|
5926
6359
|
.taskforceAgentTestNotice,
|
|
@@ -5954,19 +6387,13 @@
|
|
|
5954
6387
|
color: var(--status-error);
|
|
5955
6388
|
}
|
|
5956
6389
|
|
|
5957
|
-
.
|
|
5958
|
-
|
|
5959
|
-
|
|
5960
|
-
|
|
5961
|
-
.taskforceAgentTestActions {
|
|
5962
|
-
display: flex;
|
|
5963
|
-
justify-content: flex-end;
|
|
5964
|
-
flex-wrap: wrap;
|
|
5965
|
-
gap: 8px;
|
|
6390
|
+
.taskforceAgentRetryButton {
|
|
6391
|
+
flex: 0 0 auto;
|
|
6392
|
+
margin-left: auto;
|
|
5966
6393
|
}
|
|
5967
6394
|
|
|
5968
|
-
.
|
|
5969
|
-
|
|
6395
|
+
.taskforceAgentTestPending svg {
|
|
6396
|
+
color: var(--accent-primary);
|
|
5970
6397
|
}
|
|
5971
6398
|
|
|
5972
6399
|
.taskforceAgentTestRestriction {
|
|
@@ -6174,17 +6601,6 @@
|
|
|
6174
6601
|
padding: 12px 0;
|
|
6175
6602
|
}
|
|
6176
6603
|
|
|
6177
|
-
.taskforceAgentSignatureColorField > div:first-child {
|
|
6178
|
-
display: flex;
|
|
6179
|
-
flex-direction: column;
|
|
6180
|
-
gap: 3px;
|
|
6181
|
-
}
|
|
6182
|
-
|
|
6183
|
-
.taskforceAgentSignatureColorField small {
|
|
6184
|
-
color: var(--text-helper);
|
|
6185
|
-
font-size: 11px;
|
|
6186
|
-
}
|
|
6187
|
-
|
|
6188
6604
|
.taskforceAgentSignatureColorField .aiProfileColorPicker {
|
|
6189
6605
|
justify-content: flex-start;
|
|
6190
6606
|
margin-top: 0;
|
|
@@ -6335,6 +6751,34 @@
|
|
|
6335
6751
|
background: color-mix(in srgb, var(--input-bg) 72%, transparent);
|
|
6336
6752
|
}
|
|
6337
6753
|
|
|
6754
|
+
.taskforceAgentToolCopyButton {
|
|
6755
|
+
grid-column: 1 / -1;
|
|
6756
|
+
justify-self: end;
|
|
6757
|
+
display: inline-flex;
|
|
6758
|
+
align-items: center;
|
|
6759
|
+
gap: 5px;
|
|
6760
|
+
min-height: 26px;
|
|
6761
|
+
padding: 4px 7px;
|
|
6762
|
+
border: 1px solid var(--border-primary);
|
|
6763
|
+
border-radius: var(--radius-sm, 6px);
|
|
6764
|
+
background: var(--button-bg, var(--input-bg));
|
|
6765
|
+
color: var(--text-secondary);
|
|
6766
|
+
cursor: pointer;
|
|
6767
|
+
}
|
|
6768
|
+
|
|
6769
|
+
.taskforceAgentToolCopyButton:hover {
|
|
6770
|
+
color: var(--text-primary);
|
|
6771
|
+
border-color: var(--border-secondary, var(--border-primary));
|
|
6772
|
+
}
|
|
6773
|
+
|
|
6774
|
+
.taskforceAgentToolCopyButton span {
|
|
6775
|
+
color: currentColor;
|
|
6776
|
+
font-size: 11px;
|
|
6777
|
+
font-weight: 600;
|
|
6778
|
+
letter-spacing: 0;
|
|
6779
|
+
text-transform: none;
|
|
6780
|
+
}
|
|
6781
|
+
|
|
6338
6782
|
.taskforceAgentToolDetailsGrid span {
|
|
6339
6783
|
color: var(--text-helper);
|
|
6340
6784
|
font-size: 10px;
|