@moorline/core 0.0.1
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/app/bootstrap/apiAdapterPackageLoader.d.ts +21 -0
- package/dist/app/bootstrap/apiAdapterPackageLoader.js +143 -0
- package/dist/app/bootstrap/apiAdapterPackageLoader.js.map +1 -0
- package/dist/app/bootstrap/officialCatalog.d.ts +1 -0
- package/dist/app/bootstrap/officialCatalog.js +2 -0
- package/dist/app/bootstrap/officialCatalog.js.map +1 -0
- package/dist/app/bootstrap/operatorPackageService.d.ts +79 -0
- package/dist/app/bootstrap/operatorPackageService.js +1025 -0
- package/dist/app/bootstrap/operatorPackageService.js.map +1 -0
- package/dist/app/bootstrap/providerPackageLoader.d.ts +12 -0
- package/dist/app/bootstrap/providerPackageLoader.js +139 -0
- package/dist/app/bootstrap/providerPackageLoader.js.map +1 -0
- package/dist/app/bootstrap/runtimeBootstrap.d.ts +12 -0
- package/dist/app/bootstrap/runtimeBootstrap.js +46 -0
- package/dist/app/bootstrap/runtimeBootstrap.js.map +1 -0
- package/dist/app/bootstrap/transportPackageLoader.d.ts +23 -0
- package/dist/app/bootstrap/transportPackageLoader.js +149 -0
- package/dist/app/bootstrap/transportPackageLoader.js.map +1 -0
- package/dist/app/control-api/services/actions.d.ts +140 -0
- package/dist/app/control-api/services/actions.js +312 -0
- package/dist/app/control-api/services/actions.js.map +1 -0
- package/dist/app/control-api/services/controlPlane.d.ts +245 -0
- package/dist/app/control-api/services/controlPlane.js +301 -0
- package/dist/app/control-api/services/controlPlane.js.map +1 -0
- package/dist/app/control-api/services/runtimeHost.d.ts +61 -0
- package/dist/app/control-api/services/runtimeHost.js +117 -0
- package/dist/app/control-api/services/runtimeHost.js.map +1 -0
- package/dist/app/control-api/services/state.d.ts +19 -0
- package/dist/app/control-api/services/state.js +177 -0
- package/dist/app/control-api/services/state.js.map +1 -0
- package/dist/core/domain/memory/operatorMemoryService.d.ts +36 -0
- package/dist/core/domain/memory/operatorMemoryService.js +81 -0
- package/dist/core/domain/memory/operatorMemoryService.js.map +1 -0
- package/dist/core/domain/memory/pathSafety.d.ts +2 -0
- package/dist/core/domain/memory/pathSafety.js +36 -0
- package/dist/core/domain/memory/pathSafety.js.map +1 -0
- package/dist/core/domain/memory/retrieval/fileWalker.d.ts +1 -0
- package/dist/core/domain/memory/retrieval/fileWalker.js +31 -0
- package/dist/core/domain/memory/retrieval/fileWalker.js.map +1 -0
- package/dist/core/domain/memory/retrieval/indexTargets.d.ts +3 -0
- package/dist/core/domain/memory/retrieval/indexTargets.js +43 -0
- package/dist/core/domain/memory/retrieval/indexTargets.js.map +1 -0
- package/dist/core/domain/memory/retrieval/markdownChunker.d.ts +3 -0
- package/dist/core/domain/memory/retrieval/markdownChunker.js +77 -0
- package/dist/core/domain/memory/retrieval/markdownChunker.js.map +1 -0
- package/dist/core/domain/memory/retrieval/parse.d.ts +2 -0
- package/dist/core/domain/memory/retrieval/parse.js +28 -0
- package/dist/core/domain/memory/retrieval/parse.js.map +1 -0
- package/dist/core/domain/memory/retrieval/ranking.d.ts +11 -0
- package/dist/core/domain/memory/retrieval/ranking.js +63 -0
- package/dist/core/domain/memory/retrieval/ranking.js.map +1 -0
- package/dist/core/domain/memory/retrieval/schema.d.ts +2 -0
- package/dist/core/domain/memory/retrieval/schema.js +105 -0
- package/dist/core/domain/memory/retrieval/schema.js.map +1 -0
- package/dist/core/domain/memory/retrieval/scope.d.ts +20 -0
- package/dist/core/domain/memory/retrieval/scope.js +38 -0
- package/dist/core/domain/memory/retrieval/scope.js.map +1 -0
- package/dist/core/domain/memory/retrieval/tokenEmbedding.d.ts +4 -0
- package/dist/core/domain/memory/retrieval/tokenEmbedding.js +44 -0
- package/dist/core/domain/memory/retrieval/tokenEmbedding.js.map +1 -0
- package/dist/core/domain/memory/retrieval/types.d.ts +88 -0
- package/dist/core/domain/memory/retrieval/types.js +7 -0
- package/dist/core/domain/memory/retrieval/types.js.map +1 -0
- package/dist/core/domain/memory/retrieval.d.ts +4 -0
- package/dist/core/domain/memory/retrieval.js +398 -0
- package/dist/core/domain/memory/retrieval.js.map +1 -0
- package/dist/core/domain/memory/store.d.ts +28 -0
- package/dist/core/domain/memory/store.js +52 -0
- package/dist/core/domain/memory/store.js.map +1 -0
- package/dist/core/domain/missions/missionDraftSetup.d.ts +12 -0
- package/dist/core/domain/missions/missionDraftSetup.js +92 -0
- package/dist/core/domain/missions/missionDraftSetup.js.map +1 -0
- package/dist/core/domain/missions/missionHookService.d.ts +41 -0
- package/dist/core/domain/missions/missionHookService.js +161 -0
- package/dist/core/domain/missions/missionHookService.js.map +1 -0
- package/dist/core/domain/missions/missionHookValidation.d.ts +8 -0
- package/dist/core/domain/missions/missionHookValidation.js +59 -0
- package/dist/core/domain/missions/missionHookValidation.js.map +1 -0
- package/dist/core/domain/missions/missionRegistry.d.ts +55 -0
- package/dist/core/domain/missions/missionRegistry.js +204 -0
- package/dist/core/domain/missions/missionRegistry.js.map +1 -0
- package/dist/core/domain/missions/missionSchedule.d.ts +24 -0
- package/dist/core/domain/missions/missionSchedule.js +441 -0
- package/dist/core/domain/missions/missionSchedule.js.map +1 -0
- package/dist/core/domain/sessions/lifecycleOrchestration.d.ts +23 -0
- package/dist/core/domain/sessions/lifecycleOrchestration.js +18 -0
- package/dist/core/domain/sessions/lifecycleOrchestration.js.map +1 -0
- package/dist/core/domain/sessions/managedWorkerSessions.d.ts +3 -0
- package/dist/core/domain/sessions/managedWorkerSessions.js +4 -0
- package/dist/core/domain/sessions/managedWorkerSessions.js.map +1 -0
- package/dist/core/domain/sessions/runtimeWorkManagementService.d.ts +129 -0
- package/dist/core/domain/sessions/runtimeWorkManagementService.js +627 -0
- package/dist/core/domain/sessions/runtimeWorkManagementService.js.map +1 -0
- package/dist/core/domain/sessions/sessionLifecycleService.d.ts +21 -0
- package/dist/core/domain/sessions/sessionLifecycleService.js +76 -0
- package/dist/core/domain/sessions/sessionLifecycleService.js.map +1 -0
- package/dist/core/domain/sessions/sessionState.d.ts +34 -0
- package/dist/core/domain/sessions/sessionState.js +154 -0
- package/dist/core/domain/sessions/sessionState.js.map +1 -0
- package/dist/core/domain/sessions/workManagement/managedSessionLimit.d.ts +3 -0
- package/dist/core/domain/sessions/workManagement/managedSessionLimit.js +15 -0
- package/dist/core/domain/sessions/workManagement/managedSessionLimit.js.map +1 -0
- package/dist/core/domain/sessions/workManagement/spaceNames.d.ts +2 -0
- package/dist/core/domain/sessions/workManagement/spaceNames.js +15 -0
- package/dist/core/domain/sessions/workManagement/spaceNames.js.map +1 -0
- package/dist/core/extension/capabilities/capabilities.d.ts +8 -0
- package/dist/core/extension/capabilities/capabilities.js +40 -0
- package/dist/core/extension/capabilities/capabilities.js.map +1 -0
- package/dist/core/extension/packages/archiveExtraction.d.ts +1 -0
- package/dist/core/extension/packages/archiveExtraction.js +194 -0
- package/dist/core/extension/packages/archiveExtraction.js.map +1 -0
- package/dist/core/extension/packages/npmRegistryClient.d.ts +24 -0
- package/dist/core/extension/packages/npmRegistryClient.js +261 -0
- package/dist/core/extension/packages/npmRegistryClient.js.map +1 -0
- package/dist/core/extension/packages/officialArchiveResolver.d.ts +2 -0
- package/dist/core/extension/packages/officialArchiveResolver.js +51 -0
- package/dist/core/extension/packages/officialArchiveResolver.js.map +1 -0
- package/dist/core/extension/packages/officialCatalog.d.ts +9 -0
- package/dist/core/extension/packages/officialCatalog.js +198 -0
- package/dist/core/extension/packages/officialCatalog.js.map +1 -0
- package/dist/core/extension/packages/packageActivation.d.ts +21 -0
- package/dist/core/extension/packages/packageActivation.js +81 -0
- package/dist/core/extension/packages/packageActivation.js.map +1 -0
- package/dist/core/extension/packages/packageApplyPlanner.d.ts +4 -0
- package/dist/core/extension/packages/packageApplyPlanner.js +79 -0
- package/dist/core/extension/packages/packageApplyPlanner.js.map +1 -0
- package/dist/core/extension/packages/packageBundleRoot.d.ts +1 -0
- package/dist/core/extension/packages/packageBundleRoot.js +34 -0
- package/dist/core/extension/packages/packageBundleRoot.js.map +1 -0
- package/dist/core/extension/packages/packageConfigSchema.d.ts +7 -0
- package/dist/core/extension/packages/packageConfigSchema.js +86 -0
- package/dist/core/extension/packages/packageConfigSchema.js.map +1 -0
- package/dist/core/extension/packages/packageDependencyResolver.d.ts +13 -0
- package/dist/core/extension/packages/packageDependencyResolver.js +128 -0
- package/dist/core/extension/packages/packageDependencyResolver.js.map +1 -0
- package/dist/core/extension/packages/packageDistroMetadata.d.ts +14 -0
- package/dist/core/extension/packages/packageDistroMetadata.js +153 -0
- package/dist/core/extension/packages/packageDistroMetadata.js.map +1 -0
- package/dist/core/extension/packages/packageInstaller.d.ts +27 -0
- package/dist/core/extension/packages/packageInstaller.js +269 -0
- package/dist/core/extension/packages/packageInstaller.js.map +1 -0
- package/dist/core/extension/packages/packageInventoryStore.d.ts +25 -0
- package/dist/core/extension/packages/packageInventoryStore.js +398 -0
- package/dist/core/extension/packages/packageInventoryStore.js.map +1 -0
- package/dist/core/extension/packages/packageManifest.d.ts +15 -0
- package/dist/core/extension/packages/packageManifest.js +65 -0
- package/dist/core/extension/packages/packageManifest.js.map +1 -0
- package/dist/core/extension/packages/packageRegistryBlocklist.d.ts +10 -0
- package/dist/core/extension/packages/packageRegistryBlocklist.js +13 -0
- package/dist/core/extension/packages/packageRegistryBlocklist.js.map +1 -0
- package/dist/core/extension/packages/packageRegistryService.d.ts +22 -0
- package/dist/core/extension/packages/packageRegistryService.js +123 -0
- package/dist/core/extension/packages/packageRegistryService.js.map +1 -0
- package/dist/core/extension/packages/packageRegistryTypes.d.ts +33 -0
- package/dist/core/extension/packages/packageRegistryTypes.js +2 -0
- package/dist/core/extension/packages/packageRegistryTypes.js.map +1 -0
- package/dist/core/extension/packages/packageSource.d.ts +8 -0
- package/dist/core/extension/packages/packageSource.js +116 -0
- package/dist/core/extension/packages/packageSource.js.map +1 -0
- package/dist/core/extension/packages/packageSourceLimits.d.ts +5 -0
- package/dist/core/extension/packages/packageSourceLimits.js +6 -0
- package/dist/core/extension/packages/packageSourceLimits.js.map +1 -0
- package/dist/core/extension/packages/packageValidation.d.ts +2 -0
- package/dist/core/extension/packages/packageValidation.js +67 -0
- package/dist/core/extension/packages/packageValidation.js.map +1 -0
- package/dist/core/extension/packages/packageVersionResolver.d.ts +28 -0
- package/dist/core/extension/packages/packageVersionResolver.js +78 -0
- package/dist/core/extension/packages/packageVersionResolver.js.map +1 -0
- package/dist/core/extension/packages/remoteArchiveDownloader.d.ts +10 -0
- package/dist/core/extension/packages/remoteArchiveDownloader.js +156 -0
- package/dist/core/extension/packages/remoteArchiveDownloader.js.map +1 -0
- package/dist/core/extension/packages/runtimeStartability.d.ts +16 -0
- package/dist/core/extension/packages/runtimeStartability.js +237 -0
- package/dist/core/extension/packages/runtimeStartability.js.map +1 -0
- package/dist/core/extension/plugins/pluginHost.d.ts +50 -0
- package/dist/core/extension/plugins/pluginHost.js +303 -0
- package/dist/core/extension/plugins/pluginHost.js.map +1 -0
- package/dist/core/extension/plugins/pluginId.d.ts +2 -0
- package/dist/core/extension/plugins/pluginId.js +8 -0
- package/dist/core/extension/plugins/pluginId.js.map +1 -0
- package/dist/core/extension/plugins/pluginManifest.d.ts +3 -0
- package/dist/core/extension/plugins/pluginManifest.js +17 -0
- package/dist/core/extension/plugins/pluginManifest.js.map +1 -0
- package/dist/core/extension/plugins/runtimePluginLoader.d.ts +7 -0
- package/dist/core/extension/plugins/runtimePluginLoader.js +160 -0
- package/dist/core/extension/plugins/runtimePluginLoader.js.map +1 -0
- package/dist/core/extension/skills/skillRegistry.d.ts +21 -0
- package/dist/core/extension/skills/skillRegistry.js +233 -0
- package/dist/core/extension/skills/skillRegistry.js.map +1 -0
- package/dist/core/extension/skills/skillWriter.d.ts +20 -0
- package/dist/core/extension/skills/skillWriter.js +150 -0
- package/dist/core/extension/skills/skillWriter.js.map +1 -0
- package/dist/core/runtime/execution/commandReactor.d.ts +31 -0
- package/dist/core/runtime/execution/commandReactor.js +38 -0
- package/dist/core/runtime/execution/commandReactor.js.map +1 -0
- package/dist/core/runtime/execution/defaultModelSelection.d.ts +4 -0
- package/dist/core/runtime/execution/defaultModelSelection.js +17 -0
- package/dist/core/runtime/execution/defaultModelSelection.js.map +1 -0
- package/dist/core/runtime/execution/drainableWorker.d.ts +27 -0
- package/dist/core/runtime/execution/drainableWorker.js +79 -0
- package/dist/core/runtime/execution/drainableWorker.js.map +1 -0
- package/dist/core/runtime/execution/orchestrationEngine.d.ts +16 -0
- package/dist/core/runtime/execution/orchestrationEngine.js +181 -0
- package/dist/core/runtime/execution/orchestrationEngine.js.map +1 -0
- package/dist/core/runtime/execution/orchestrationHealth.d.ts +45 -0
- package/dist/core/runtime/execution/orchestrationHealth.js +95 -0
- package/dist/core/runtime/execution/orchestrationHealth.js.map +1 -0
- package/dist/core/runtime/execution/pluginContext/defaultSessionOwner.d.ts +2 -0
- package/dist/core/runtime/execution/pluginContext/defaultSessionOwner.js +10 -0
- package/dist/core/runtime/execution/pluginContext/defaultSessionOwner.js.map +1 -0
- package/dist/core/runtime/execution/pluginContext/pluginCapabilities.d.ts +40 -0
- package/dist/core/runtime/execution/pluginContext/pluginCapabilities.js +73 -0
- package/dist/core/runtime/execution/pluginContext/pluginCapabilities.js.map +1 -0
- package/dist/core/runtime/execution/pluginContext/pluginContextFactory.d.ts +20 -0
- package/dist/core/runtime/execution/pluginContext/pluginContextFactory.js +18 -0
- package/dist/core/runtime/execution/pluginContext/pluginContextFactory.js.map +1 -0
- package/dist/core/runtime/execution/pluginContext/transportAuthor.d.ts +7 -0
- package/dist/core/runtime/execution/pluginContext/transportAuthor.js +15 -0
- package/dist/core/runtime/execution/pluginContext/transportAuthor.js.map +1 -0
- package/dist/core/runtime/execution/providerCoordination/providerCompactionCoordinator.d.ts +7 -0
- package/dist/core/runtime/execution/providerCoordination/providerCompactionCoordinator.js +25 -0
- package/dist/core/runtime/execution/providerCoordination/providerCompactionCoordinator.js.map +1 -0
- package/dist/core/runtime/execution/providerCoordination/providerPolicyTarget.d.ts +2 -0
- package/dist/core/runtime/execution/providerCoordination/providerPolicyTarget.js +5 -0
- package/dist/core/runtime/execution/providerCoordination/providerPolicyTarget.js.map +1 -0
- package/dist/core/runtime/execution/providerCoordination/providerRecoveryService.d.ts +7 -0
- package/dist/core/runtime/execution/providerCoordination/providerRecoveryService.js +6 -0
- package/dist/core/runtime/execution/providerCoordination/providerRecoveryService.js.map +1 -0
- package/dist/core/runtime/execution/providerCoordination/providerRequestAttributionService.d.ts +10 -0
- package/dist/core/runtime/execution/providerCoordination/providerRequestAttributionService.js +33 -0
- package/dist/core/runtime/execution/providerCoordination/providerRequestAttributionService.js.map +1 -0
- package/dist/core/runtime/execution/providerCoordination/providerSessionCoordinator.d.ts +5 -0
- package/dist/core/runtime/execution/providerCoordination/providerSessionCoordinator.js +9 -0
- package/dist/core/runtime/execution/providerCoordination/providerSessionCoordinator.js.map +1 -0
- package/dist/core/runtime/execution/providerCoordination/providerTurnCoordinator.d.ts +3 -0
- package/dist/core/runtime/execution/providerCoordination/providerTurnCoordinator.js +6 -0
- package/dist/core/runtime/execution/providerCoordination/providerTurnCoordinator.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/ports.d.ts +47 -0
- package/dist/core/runtime/execution/providerOrchestration/ports.js +2 -0
- package/dist/core/runtime/execution/providerOrchestration/ports.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/providerAttachmentResolver.d.ts +13 -0
- package/dist/core/runtime/execution/providerOrchestration/providerAttachmentResolver.js +57 -0
- package/dist/core/runtime/execution/providerOrchestration/providerAttachmentResolver.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/providerCompactionPolicy.d.ts +19 -0
- package/dist/core/runtime/execution/providerOrchestration/providerCompactionPolicy.js +129 -0
- package/dist/core/runtime/execution/providerOrchestration/providerCompactionPolicy.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/providerEventPipeline.d.ts +32 -0
- package/dist/core/runtime/execution/providerOrchestration/providerEventPipeline.js +67 -0
- package/dist/core/runtime/execution/providerOrchestration/providerEventPipeline.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/providerMissionEventProjector.d.ts +12 -0
- package/dist/core/runtime/execution/providerOrchestration/providerMissionEventProjector.js +71 -0
- package/dist/core/runtime/execution/providerOrchestration/providerMissionEventProjector.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/providerOrchestrator.d.ts +37 -0
- package/dist/core/runtime/execution/providerOrchestration/providerOrchestrator.js +53 -0
- package/dist/core/runtime/execution/providerOrchestration/providerOrchestrator.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/providerRequestProjector.d.ts +15 -0
- package/dist/core/runtime/execution/providerOrchestration/providerRequestProjector.js +93 -0
- package/dist/core/runtime/execution/providerOrchestration/providerRequestProjector.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/providerSessionOrchestrator.d.ts +37 -0
- package/dist/core/runtime/execution/providerOrchestration/providerSessionOrchestrator.js +104 -0
- package/dist/core/runtime/execution/providerOrchestration/providerSessionOrchestrator.js.map +1 -0
- package/dist/core/runtime/execution/providerOrchestration/providerTurnBroker.d.ts +62 -0
- package/dist/core/runtime/execution/providerOrchestration/providerTurnBroker.js +349 -0
- package/dist/core/runtime/execution/providerOrchestration/providerTurnBroker.js.map +1 -0
- package/dist/core/runtime/execution/providerProjectionTypes.d.ts +25 -0
- package/dist/core/runtime/execution/providerProjectionTypes.js +18 -0
- package/dist/core/runtime/execution/providerProjectionTypes.js.map +1 -0
- package/dist/core/runtime/execution/providerSessionDirectory.d.ts +12 -0
- package/dist/core/runtime/execution/providerSessionDirectory.js +94 -0
- package/dist/core/runtime/execution/providerSessionDirectory.js.map +1 -0
- package/dist/core/runtime/execution/runtimeDomain.d.ts +116 -0
- package/dist/core/runtime/execution/runtimeDomain.js +262 -0
- package/dist/core/runtime/execution/runtimeDomain.js.map +1 -0
- package/dist/core/runtime/execution/runtimeIngestion.d.ts +17 -0
- package/dist/core/runtime/execution/runtimeIngestion.js +254 -0
- package/dist/core/runtime/execution/runtimeIngestion.js.map +1 -0
- package/dist/core/runtime/execution/runtimeInteractionService.d.ts +66 -0
- package/dist/core/runtime/execution/runtimeInteractionService.js +230 -0
- package/dist/core/runtime/execution/runtimeInteractionService.js.map +1 -0
- package/dist/core/runtime/execution/runtimeOrchestrationRequestService.d.ts +64 -0
- package/dist/core/runtime/execution/runtimeOrchestrationRequestService.js +366 -0
- package/dist/core/runtime/execution/runtimeOrchestrationRequestService.js.map +1 -0
- package/dist/core/runtime/execution/runtimeOrchestrationRequests.d.ts +111 -0
- package/dist/core/runtime/execution/runtimeOrchestrationRequests.js +464 -0
- package/dist/core/runtime/execution/runtimeOrchestrationRequests.js.map +1 -0
- package/dist/core/runtime/execution/runtimeOrchestrationResult.d.ts +4 -0
- package/dist/core/runtime/execution/runtimeOrchestrationResult.js +7 -0
- package/dist/core/runtime/execution/runtimeOrchestrationResult.js.map +1 -0
- package/dist/core/runtime/execution/runtimePendingRequestService.d.ts +69 -0
- package/dist/core/runtime/execution/runtimePendingRequestService.js +360 -0
- package/dist/core/runtime/execution/runtimePendingRequestService.js.map +1 -0
- package/dist/core/runtime/execution/runtimePluginContextService.d.ts +100 -0
- package/dist/core/runtime/execution/runtimePluginContextService.js +576 -0
- package/dist/core/runtime/execution/runtimePluginContextService.js.map +1 -0
- package/dist/core/runtime/execution/runtimeReceiptBus.d.ts +17 -0
- package/dist/core/runtime/execution/runtimeReceiptBus.js +50 -0
- package/dist/core/runtime/execution/runtimeReceiptBus.js.map +1 -0
- package/dist/core/runtime/execution/runtimeWorkerQueues.d.ts +33 -0
- package/dist/core/runtime/execution/runtimeWorkerQueues.js +55 -0
- package/dist/core/runtime/execution/runtimeWorkerQueues.js.map +1 -0
- package/dist/core/runtime/graph/runtimePaths.d.ts +2 -0
- package/dist/core/runtime/graph/runtimePaths.js +22 -0
- package/dist/core/runtime/graph/runtimePaths.js.map +1 -0
- package/dist/core/runtime/hosting/managedSpaceMetadata.d.ts +7 -0
- package/dist/core/runtime/hosting/managedSpaceMetadata.js +14 -0
- package/dist/core/runtime/hosting/managedSpaceMetadata.js.map +1 -0
- package/dist/core/runtime/hosting/runtimeHostingService.d.ts +32 -0
- package/dist/core/runtime/hosting/runtimeHostingService.js +123 -0
- package/dist/core/runtime/hosting/runtimeHostingService.js.map +1 -0
- package/dist/core/runtime/hosting/runtimeLayout.d.ts +5 -0
- package/dist/core/runtime/hosting/runtimeLayout.js +133 -0
- package/dist/core/runtime/hosting/runtimeLayout.js.map +1 -0
- package/dist/core/runtime/hosting/runtimeManagementPort.d.ts +60 -0
- package/dist/core/runtime/hosting/runtimeManagementPort.js +28 -0
- package/dist/core/runtime/hosting/runtimeManagementPort.js.map +1 -0
- package/dist/core/runtime/hosting/runtimeTransportSurfaceService.d.ts +20 -0
- package/dist/core/runtime/hosting/runtimeTransportSurfaceService.js +82 -0
- package/dist/core/runtime/hosting/runtimeTransportSurfaceService.js.map +1 -0
- package/dist/core/runtime/hosting/systemEmbeds.d.ts +22 -0
- package/dist/core/runtime/hosting/systemEmbeds.js +25 -0
- package/dist/core/runtime/hosting/systemEmbeds.js.map +1 -0
- package/dist/core/runtime/lifecycle/managedChannelLifecycleService.d.ts +37 -0
- package/dist/core/runtime/lifecycle/managedChannelLifecycleService.js +256 -0
- package/dist/core/runtime/lifecycle/managedChannelLifecycleService.js.map +1 -0
- package/dist/core/runtime/lifecycle/runtimeLifecycleService.d.ts +43 -0
- package/dist/core/runtime/lifecycle/runtimeLifecycleService.js +322 -0
- package/dist/core/runtime/lifecycle/runtimeLifecycleService.js.map +1 -0
- package/dist/core/runtime/moorlineRuntime.d.ts +100 -0
- package/dist/core/runtime/moorlineRuntime.js +573 -0
- package/dist/core/runtime/moorlineRuntime.js.map +1 -0
- package/dist/core/runtime/moorlineRuntimeBuilder.d.ts +180 -0
- package/dist/core/runtime/moorlineRuntimeBuilder.js +681 -0
- package/dist/core/runtime/moorlineRuntimeBuilder.js.map +1 -0
- package/dist/core/runtime/runtimeAudit.d.ts +7 -0
- package/dist/core/runtime/runtimeAudit.js +32 -0
- package/dist/core/runtime/runtimeAudit.js.map +1 -0
- package/dist/core/runtime/runtimeBootstrapRegistry.d.ts +5 -0
- package/dist/core/runtime/runtimeBootstrapRegistry.js +15 -0
- package/dist/core/runtime/runtimeBootstrapRegistry.js.map +1 -0
- package/dist/core/runtime/runtimeStatus.d.ts +14 -0
- package/dist/core/runtime/runtimeStatus.js +16 -0
- package/dist/core/runtime/runtimeStatus.js.map +1 -0
- package/dist/core/runtime/supervision/managedSidecar.d.ts +71 -0
- package/dist/core/runtime/supervision/managedSidecar.js +13 -0
- package/dist/core/runtime/supervision/managedSidecar.js.map +1 -0
- package/dist/core/runtime/supervision/runtimeControl.d.ts +45 -0
- package/dist/core/runtime/supervision/runtimeControl.js +2 -0
- package/dist/core/runtime/supervision/runtimeControl.js.map +1 -0
- package/dist/core/runtime/supervision/runtimeControlService.d.ts +56 -0
- package/dist/core/runtime/supervision/runtimeControlService.js +315 -0
- package/dist/core/runtime/supervision/runtimeControlService.js.map +1 -0
- package/dist/core/runtime/supervision/runtimeSupervisor.d.ts +106 -0
- package/dist/core/runtime/supervision/runtimeSupervisor.js +425 -0
- package/dist/core/runtime/supervision/runtimeSupervisor.js.map +1 -0
- package/dist/core/runtime/supervision/sidecarLaunchDefinition.d.ts +3 -0
- package/dist/core/runtime/supervision/sidecarLaunchDefinition.js +24 -0
- package/dist/core/runtime/supervision/sidecarLaunchDefinition.js.map +1 -0
- package/dist/core/runtime/supervision/sidecarManager.d.ts +40 -0
- package/dist/core/runtime/supervision/sidecarManager.js +409 -0
- package/dist/core/runtime/supervision/sidecarManager.js.map +1 -0
- package/dist/core/shared/fs/atomicWrite.d.ts +6 -0
- package/dist/core/shared/fs/atomicWrite.js +48 -0
- package/dist/core/shared/fs/atomicWrite.js.map +1 -0
- package/dist/core/shared/fs/canonicalPathContainment.d.ts +8 -0
- package/dist/core/shared/fs/canonicalPathContainment.js +31 -0
- package/dist/core/shared/fs/canonicalPathContainment.js.map +1 -0
- package/dist/core/shared/fs/runtimeOwnedPath.d.ts +6 -0
- package/dist/core/shared/fs/runtimeOwnedPath.js +23 -0
- package/dist/core/shared/fs/runtimeOwnedPath.js.map +1 -0
- package/dist/core/shared/utils/childProcessEnv.d.ts +4 -0
- package/dist/core/shared/utils/childProcessEnv.js +66 -0
- package/dist/core/shared/utils/childProcessEnv.js.map +1 -0
- package/dist/core/shared/utils/commandRunner.d.ts +18 -0
- package/dist/core/shared/utils/commandRunner.js +51 -0
- package/dist/core/shared/utils/commandRunner.js.map +1 -0
- package/dist/core/shared/utils/payloadRedaction.d.ts +13 -0
- package/dist/core/shared/utils/payloadRedaction.js +91 -0
- package/dist/core/shared/utils/payloadRedaction.js.map +1 -0
- package/dist/core/shared/utils/remoteNetworkPolicy.d.ts +11 -0
- package/dist/core/shared/utils/remoteNetworkPolicy.js +137 -0
- package/dist/core/shared/utils/remoteNetworkPolicy.js.map +1 -0
- package/dist/core/shared/utils/runtimeMessageUtils.d.ts +27 -0
- package/dist/core/shared/utils/runtimeMessageUtils.js +383 -0
- package/dist/core/shared/utils/runtimeMessageUtils.js.map +1 -0
- package/dist/core/system/audit/auditLogger.d.ts +15 -0
- package/dist/core/system/audit/auditLogger.js +22 -0
- package/dist/core/system/audit/auditLogger.js.map +1 -0
- package/dist/core/system/backup/runtimeBackupService.d.ts +28 -0
- package/dist/core/system/backup/runtimeBackupService.js +284 -0
- package/dist/core/system/backup/runtimeBackupService.js.map +1 -0
- package/dist/core/system/config/configStore.d.ts +38 -0
- package/dist/core/system/config/configStore.js +672 -0
- package/dist/core/system/config/configStore.js.map +1 -0
- package/dist/core/system/policy/actorRulePolicy.d.ts +13 -0
- package/dist/core/system/policy/actorRulePolicy.js +87 -0
- package/dist/core/system/policy/actorRulePolicy.js.map +1 -0
- package/dist/core/system/policy/networkPolicy.d.ts +6 -0
- package/dist/core/system/policy/networkPolicy.js +71 -0
- package/dist/core/system/policy/networkPolicy.js.map +1 -0
- package/dist/core/system/policy/policyEngine.d.ts +22 -0
- package/dist/core/system/policy/policyEngine.js +41 -0
- package/dist/core/system/policy/policyEngine.js.map +1 -0
- package/dist/core/system/policy/policyProfile.d.ts +16 -0
- package/dist/core/system/policy/policyProfile.js +78 -0
- package/dist/core/system/policy/policyProfile.js.map +1 -0
- package/dist/core/system/policy/runtimeActionGuard.d.ts +24 -0
- package/dist/core/system/policy/runtimeActionGuard.js +64 -0
- package/dist/core/system/policy/runtimeActionGuard.js.map +1 -0
- package/dist/core/system/projection/managementReadModel/auditEvents.d.ts +9 -0
- package/dist/core/system/projection/managementReadModel/auditEvents.js +61 -0
- package/dist/core/system/projection/managementReadModel/auditEvents.js.map +1 -0
- package/dist/core/system/projection/managementReadModel/deps.d.ts +35 -0
- package/dist/core/system/projection/managementReadModel/deps.js +2 -0
- package/dist/core/system/projection/managementReadModel/deps.js.map +1 -0
- package/dist/core/system/projection/managementReadModel/objects/serviceObjects.d.ts +3 -0
- package/dist/core/system/projection/managementReadModel/objects/serviceObjects.js +129 -0
- package/dist/core/system/projection/managementReadModel/objects/serviceObjects.js.map +1 -0
- package/dist/core/system/projection/managementReadModel/pluginDiskRecords.d.ts +10 -0
- package/dist/core/system/projection/managementReadModel/pluginDiskRecords.js +55 -0
- package/dist/core/system/projection/managementReadModel/pluginDiskRecords.js.map +1 -0
- package/dist/core/system/projection/managementReadModel/providerAlignment.d.ts +7 -0
- package/dist/core/system/projection/managementReadModel/providerAlignment.js +48 -0
- package/dist/core/system/projection/managementReadModel/providerAlignment.js.map +1 -0
- package/dist/core/system/projection/managementReadModel/text.d.ts +1 -0
- package/dist/core/system/projection/managementReadModel/text.js +8 -0
- package/dist/core/system/projection/managementReadModel/text.js.map +1 -0
- package/dist/core/system/projection/managementReadModelService.d.ts +18 -0
- package/dist/core/system/projection/managementReadModelService.js +768 -0
- package/dist/core/system/projection/managementReadModelService.js.map +1 -0
- package/dist/core/system/projection/pendingRequestProjectionStore.d.ts +12 -0
- package/dist/core/system/projection/pendingRequestProjectionStore.js +113 -0
- package/dist/core/system/projection/pendingRequestProjectionStore.js.map +1 -0
- package/dist/core/system/projection/pendingRequestQuestions.d.ts +2 -0
- package/dist/core/system/projection/pendingRequestQuestions.js +51 -0
- package/dist/core/system/projection/pendingRequestQuestions.js.map +1 -0
- package/dist/core/system/projection/projectionStateStore.d.ts +17 -0
- package/dist/core/system/projection/projectionStateStore.js +60 -0
- package/dist/core/system/projection/projectionStateStore.js.map +1 -0
- package/dist/core/system/projection/runtimeActivityStore.d.ts +24 -0
- package/dist/core/system/projection/runtimeActivityStore.js +150 -0
- package/dist/core/system/projection/runtimeActivityStore.js.map +1 -0
- package/dist/core/system/projection/runtimeProjectionService.d.ts +41 -0
- package/dist/core/system/projection/runtimeProjectionService.js +209 -0
- package/dist/core/system/projection/runtimeProjectionService.js.map +1 -0
- package/dist/core/system/projection/runtimeReceiptStore.d.ts +11 -0
- package/dist/core/system/projection/runtimeReceiptStore.js +77 -0
- package/dist/core/system/projection/runtimeReceiptStore.js.map +1 -0
- package/dist/core/system/projection/runtimeReconciler.d.ts +25 -0
- package/dist/core/system/projection/runtimeReconciler.js +83 -0
- package/dist/core/system/projection/runtimeReconciler.js.map +1 -0
- package/dist/core/system/projection/runtimeSnapshotQuery.d.ts +46 -0
- package/dist/core/system/projection/runtimeSnapshotQuery.js +135 -0
- package/dist/core/system/projection/runtimeSnapshotQuery.js.map +1 -0
- package/dist/core/system/release/releaseArtifacts.d.ts +7 -0
- package/dist/core/system/release/releaseArtifacts.js +88 -0
- package/dist/core/system/release/releaseArtifacts.js.map +1 -0
- package/dist/core/system/release/runtimePackageLoadReport.d.ts +10 -0
- package/dist/core/system/release/runtimePackageLoadReport.js +31 -0
- package/dist/core/system/release/runtimePackageLoadReport.js.map +1 -0
- package/dist/core/system/state/canonicalEventLogStore.d.ts +16 -0
- package/dist/core/system/state/canonicalEventLogStore.js +156 -0
- package/dist/core/system/state/canonicalEventLogStore.js.map +1 -0
- package/dist/core/system/state/migrationRunner.d.ts +5 -0
- package/dist/core/system/state/migrationRunner.js +58 -0
- package/dist/core/system/state/migrationRunner.js.map +1 -0
- package/dist/core/system/state/safeJson.d.ts +8 -0
- package/dist/core/system/state/safeJson.js +36 -0
- package/dist/core/system/state/safeJson.js.map +1 -0
- package/dist/core/system/state/sqlite/connection.d.ts +2 -0
- package/dist/core/system/state/sqlite/connection.js +8 -0
- package/dist/core/system/state/sqlite/connection.js.map +1 -0
- package/dist/core/system/state/sqlite/domainEventLogRepository.d.ts +10 -0
- package/dist/core/system/state/sqlite/domainEventLogRepository.js +69 -0
- package/dist/core/system/state/sqlite/domainEventLogRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/eventIntegrity.d.ts +6 -0
- package/dist/core/system/state/sqlite/eventIntegrity.js +7 -0
- package/dist/core/system/state/sqlite/eventIntegrity.js.map +1 -0
- package/dist/core/system/state/sqlite/managedSidecarRepository.d.ts +10 -0
- package/dist/core/system/state/sqlite/managedSidecarRepository.js +62 -0
- package/dist/core/system/state/sqlite/managedSidecarRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/missionRepository.d.ts +24 -0
- package/dist/core/system/state/sqlite/missionRepository.js +252 -0
- package/dist/core/system/state/sqlite/missionRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/orchestrationRepository.d.ts +20 -0
- package/dist/core/system/state/sqlite/orchestrationRepository.js +158 -0
- package/dist/core/system/state/sqlite/orchestrationRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/pendingRequestRepository.d.ts +13 -0
- package/dist/core/system/state/sqlite/pendingRequestRepository.js +76 -0
- package/dist/core/system/state/sqlite/pendingRequestRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/providerBindingRepository.d.ts +10 -0
- package/dist/core/system/state/sqlite/providerBindingRepository.js +58 -0
- package/dist/core/system/state/sqlite/providerBindingRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/providerEventLogRepository.d.ts +10 -0
- package/dist/core/system/state/sqlite/providerEventLogRepository.js +77 -0
- package/dist/core/system/state/sqlite/providerEventLogRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/rowMappers.d.ts +2 -0
- package/dist/core/system/state/sqlite/rowMappers.js +7 -0
- package/dist/core/system/state/sqlite/rowMappers.js.map +1 -0
- package/dist/core/system/state/sqlite/runtimeHistoryPruningRepository.d.ts +23 -0
- package/dist/core/system/state/sqlite/runtimeHistoryPruningRepository.js +82 -0
- package/dist/core/system/state/sqlite/runtimeHistoryPruningRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/runtimeReceiptRepository.d.ts +9 -0
- package/dist/core/system/state/sqlite/runtimeReceiptRepository.js +47 -0
- package/dist/core/system/state/sqlite/runtimeReceiptRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/sessionMetadataRepository.d.ts +7 -0
- package/dist/core/system/state/sqlite/sessionMetadataRepository.js +25 -0
- package/dist/core/system/state/sqlite/sessionMetadataRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/sessionRepository.d.ts +12 -0
- package/dist/core/system/state/sqlite/sessionRepository.js +72 -0
- package/dist/core/system/state/sqlite/sessionRepository.js.map +1 -0
- package/dist/core/system/state/sqlite/types.d.ts +140 -0
- package/dist/core/system/state/sqlite/types.js +113 -0
- package/dist/core/system/state/sqlite/types.js.map +1 -0
- package/dist/core/system/state/sqliteSessionStore.d.ts +86 -0
- package/dist/core/system/state/sqliteSessionStore.js +210 -0
- package/dist/core/system/state/sqliteSessionStore.js.map +1 -0
- package/dist/core/system/state/sqliteSupport.d.ts +4 -0
- package/dist/core/system/state/sqliteSupport.js +32 -0
- package/dist/core/system/state/sqliteSupport.js.map +1 -0
- package/dist/core/system/vcs/gitCheckpointService.d.ts +11 -0
- package/dist/core/system/vcs/gitCheckpointService.js +32 -0
- package/dist/core/system/vcs/gitCheckpointService.js.map +1 -0
- package/dist/core/system/vcs/gitCommitParser.d.ts +3 -0
- package/dist/core/system/vcs/gitCommitParser.js +55 -0
- package/dist/core/system/vcs/gitCommitParser.js.map +1 -0
- package/dist/core/system/vcs/gitDiffFormatter.d.ts +1 -0
- package/dist/core/system/vcs/gitDiffFormatter.js +4 -0
- package/dist/core/system/vcs/gitDiffFormatter.js.map +1 -0
- package/dist/core/system/vcs/gitHistoryService.d.ts +46 -0
- package/dist/core/system/vcs/gitHistoryService.js +277 -0
- package/dist/core/system/vcs/gitHistoryService.js.map +1 -0
- package/dist/core/system/vcs/gitIgnoreTemplate.d.ts +1 -0
- package/dist/core/system/vcs/gitIgnoreTemplate.js +12 -0
- package/dist/core/system/vcs/gitIgnoreTemplate.js.map +1 -0
- package/dist/core/system/vcs/gitRepoStore.d.ts +12 -0
- package/dist/core/system/vcs/gitRepoStore.js +46 -0
- package/dist/core/system/vcs/gitRepoStore.js.map +1 -0
- package/dist/core/system/vcs/gitTrackedPaths.d.ts +6 -0
- package/dist/core/system/vcs/gitTrackedPaths.js +80 -0
- package/dist/core/system/vcs/gitTrackedPaths.js.map +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/types/app.d.ts +444 -0
- package/dist/types/app.js +2 -0
- package/dist/types/app.js.map +1 -0
- package/dist/types/config.d.ts +188 -0
- package/dist/types/config.js +422 -0
- package/dist/types/config.js.map +1 -0
- package/dist/types/distro.d.ts +1 -0
- package/dist/types/distro.js +2 -0
- package/dist/types/distro.js.map +1 -0
- package/dist/types/history.d.ts +43 -0
- package/dist/types/history.js +2 -0
- package/dist/types/history.js.map +1 -0
- package/dist/types/package.d.ts +61 -0
- package/dist/types/package.js +2 -0
- package/dist/types/package.js.map +1 -0
- package/dist/types/plugin.d.ts +1 -0
- package/dist/types/plugin.js +2 -0
- package/dist/types/plugin.js.map +1 -0
- package/dist/types/provider.d.ts +2 -0
- package/dist/types/provider.js +2 -0
- package/dist/types/provider.js.map +1 -0
- package/dist/types/release.d.ts +24 -0
- package/dist/types/release.js +2 -0
- package/dist/types/release.js.map +1 -0
- package/dist/types/runtime.d.ts +2 -0
- package/dist/types/runtime.js +2 -0
- package/dist/types/runtime.js.map +1 -0
- package/dist/types/skill.d.ts +1 -0
- package/dist/types/skill.js +2 -0
- package/dist/types/skill.js.map +1 -0
- package/dist/types/transport.d.ts +2 -0
- package/dist/types/transport.js +2 -0
- package/dist/types/transport.js.map +1 -0
- package/package.json +62 -0
- package/resources/migrations/001_sessions.sql +59 -0
- package/resources/migrations/002_pending_request_metadata.sql +2 -0
- package/resources/migrations/003_provider_projections.sql +38 -0
- package/resources/migrations/004_runtime_projection_state.sql +22 -0
- package/resources/migrations/005_runtime_robustness.sql +3 -0
- package/resources/migrations/006_provider_autostart.sql +1 -0
- package/resources/migrations/007_missions.sql +41 -0
- package/resources/migrations/008_mission_schedule_anchor.sql +5 -0
- package/resources/migrations/009_session_orchestration.sql +26 -0
- package/resources/migrations/010_mission_archival.sql +1 -0
- package/resources/migrations/011_managed_sidecars.sql +29 -0
- package/resources/migrations/012_scope_space_terminology.sql +19 -0
- package/resources/migrations/013_orchestration_dedupe.sql +5 -0
- package/resources/migrations/014_orchestration_execution_claims.sql +13 -0
- package/resources/migrations/015_mission_schedule_meta.sql +9 -0
- package/resources/migrations/016_mission_hook_bindings.sql +16 -0
- package/resources/migrations/017_domain_event_provenance.sql +1 -0
- package/resources/migrations/018_provider_event_processing.sql +8 -0
- package/resources/official-catalog.json +444 -0
- package/resources/policies/default-secure.json +160 -0
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"kind": "api-adapter",
|
|
4
|
+
"surface": "api-adapter",
|
|
5
|
+
"packageId": "official/http",
|
|
6
|
+
"name": "HTTP API Adapter",
|
|
7
|
+
"description": "Expose Moorline control over HTTP with bearer-token auth.",
|
|
8
|
+
"version": "0.0.1",
|
|
9
|
+
"recommendedForSetup": true,
|
|
10
|
+
"tags": [
|
|
11
|
+
"official",
|
|
12
|
+
"http",
|
|
13
|
+
"control-api"
|
|
14
|
+
],
|
|
15
|
+
"source": {
|
|
16
|
+
"kind": "remote_archive",
|
|
17
|
+
"url": "https://github.com/Moorline/moorline/releases/download/v0.0.1/moorline-api-adapter-http-0.0.1.tar.gz",
|
|
18
|
+
"sha256": "581440a424471901ccd7b6e9ab2f4c76d3f96bac1e81c7bfee4555408dd0c13e"
|
|
19
|
+
},
|
|
20
|
+
"requires": []
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"kind": "bundle",
|
|
24
|
+
"surface": "bundle",
|
|
25
|
+
"packageId": "official/basic-essentials",
|
|
26
|
+
"name": "Basic Essentials",
|
|
27
|
+
"description": "Shared official plugins for memory, model selection, skills, self-editing, and session orchestration.",
|
|
28
|
+
"version": "0.0.1",
|
|
29
|
+
"recommendedForSetup": true,
|
|
30
|
+
"tags": [
|
|
31
|
+
"official",
|
|
32
|
+
"shared",
|
|
33
|
+
"bundle",
|
|
34
|
+
"essentials"
|
|
35
|
+
],
|
|
36
|
+
"source": {
|
|
37
|
+
"kind": "remote_archive",
|
|
38
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-bundle-basic-essentials-0.0.1.tar.gz",
|
|
39
|
+
"sha256": "8f74f90e33dd3af2f2d4e3a6891ecfdeba74ac14a250cde882141132f613bd54"
|
|
40
|
+
},
|
|
41
|
+
"requires": [],
|
|
42
|
+
"members": [
|
|
43
|
+
{
|
|
44
|
+
"kind": "plugin",
|
|
45
|
+
"surface": "plugin",
|
|
46
|
+
"packageId": "official/memory",
|
|
47
|
+
"version": "~0.0.1",
|
|
48
|
+
"activation": "enable"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"kind": "plugin",
|
|
52
|
+
"surface": "plugin",
|
|
53
|
+
"packageId": "official/model-picker",
|
|
54
|
+
"version": "~0.0.1",
|
|
55
|
+
"activation": "enable"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"kind": "plugin",
|
|
59
|
+
"surface": "plugin",
|
|
60
|
+
"packageId": "official/persona",
|
|
61
|
+
"version": "~0.0.1",
|
|
62
|
+
"activation": "enable"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"kind": "plugin",
|
|
66
|
+
"surface": "plugin",
|
|
67
|
+
"packageId": "official/self-edit",
|
|
68
|
+
"version": "~0.0.1",
|
|
69
|
+
"activation": "enable"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"kind": "plugin",
|
|
73
|
+
"surface": "plugin",
|
|
74
|
+
"packageId": "official/session-orchestration",
|
|
75
|
+
"version": "~0.0.1",
|
|
76
|
+
"activation": "enable"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"kind": "plugin",
|
|
80
|
+
"surface": "plugin",
|
|
81
|
+
"packageId": "official/skills",
|
|
82
|
+
"version": "~0.0.1",
|
|
83
|
+
"activation": "enable"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"kind": "bundle",
|
|
89
|
+
"surface": "bundle",
|
|
90
|
+
"packageId": "official/codex-default",
|
|
91
|
+
"name": "Codex Default",
|
|
92
|
+
"description": "Official Codex provider for local Moorline sessions.",
|
|
93
|
+
"version": "0.0.1",
|
|
94
|
+
"recommendedForSetup": true,
|
|
95
|
+
"tags": [
|
|
96
|
+
"official",
|
|
97
|
+
"codex",
|
|
98
|
+
"bundle",
|
|
99
|
+
"provider"
|
|
100
|
+
],
|
|
101
|
+
"source": {
|
|
102
|
+
"kind": "remote_archive",
|
|
103
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-bundle-codex-default-0.0.1.tar.gz",
|
|
104
|
+
"sha256": "4364cc11b13df111e95c1fe9a096ab36bceb1e88e925fe569533fdacb4cf0347"
|
|
105
|
+
},
|
|
106
|
+
"requires": [],
|
|
107
|
+
"members": [
|
|
108
|
+
{
|
|
109
|
+
"kind": "provider",
|
|
110
|
+
"surface": "provider",
|
|
111
|
+
"packageId": "official/codex",
|
|
112
|
+
"version": "~0.0.1",
|
|
113
|
+
"activation": "select"
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"kind": "bundle",
|
|
119
|
+
"surface": "bundle",
|
|
120
|
+
"packageId": "official/discord-default",
|
|
121
|
+
"name": "Discord Default",
|
|
122
|
+
"description": "Discord transport plus the official Discord chat, session, mission, status, admin, and lifecycle plugins.",
|
|
123
|
+
"version": "0.0.1",
|
|
124
|
+
"recommendedForSetup": true,
|
|
125
|
+
"tags": [
|
|
126
|
+
"official",
|
|
127
|
+
"discord",
|
|
128
|
+
"bundle",
|
|
129
|
+
"transport"
|
|
130
|
+
],
|
|
131
|
+
"source": {
|
|
132
|
+
"kind": "remote_archive",
|
|
133
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-bundle-discord-default-0.0.1.tar.gz",
|
|
134
|
+
"sha256": "07ca2d177bedec32050c2cae0d5f89a580541e854a3622d525e9d0d6764765a2"
|
|
135
|
+
},
|
|
136
|
+
"requires": [],
|
|
137
|
+
"members": [
|
|
138
|
+
{
|
|
139
|
+
"kind": "transport",
|
|
140
|
+
"surface": "transport",
|
|
141
|
+
"packageId": "official/discord",
|
|
142
|
+
"version": "~0.0.1",
|
|
143
|
+
"activation": "select"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"kind": "plugin",
|
|
147
|
+
"surface": "plugin",
|
|
148
|
+
"packageId": "official/admin-control",
|
|
149
|
+
"version": "~0.0.1",
|
|
150
|
+
"activation": "enable"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"kind": "plugin",
|
|
154
|
+
"surface": "plugin",
|
|
155
|
+
"packageId": "official/channel-lifecycle",
|
|
156
|
+
"version": "~0.0.1",
|
|
157
|
+
"activation": "enable"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"kind": "plugin",
|
|
161
|
+
"surface": "plugin",
|
|
162
|
+
"packageId": "official/main-chat",
|
|
163
|
+
"version": "~0.0.1",
|
|
164
|
+
"activation": "enable"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"kind": "plugin",
|
|
168
|
+
"surface": "plugin",
|
|
169
|
+
"packageId": "official/session-agent",
|
|
170
|
+
"version": "~0.0.1",
|
|
171
|
+
"activation": "enable"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"kind": "plugin",
|
|
175
|
+
"surface": "plugin",
|
|
176
|
+
"packageId": "official/session-commands",
|
|
177
|
+
"version": "~0.0.1",
|
|
178
|
+
"activation": "enable"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"kind": "plugin",
|
|
182
|
+
"surface": "plugin",
|
|
183
|
+
"packageId": "official/status",
|
|
184
|
+
"version": "~0.0.1",
|
|
185
|
+
"activation": "enable"
|
|
186
|
+
}
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"kind": "plugin",
|
|
191
|
+
"surface": "plugin",
|
|
192
|
+
"packageId": "official/admin-control",
|
|
193
|
+
"name": "Admin Control",
|
|
194
|
+
"description": "Runtime and provider lifecycle controls for Discord surfaces.",
|
|
195
|
+
"version": "0.0.1",
|
|
196
|
+
"recommendedForSetup": false,
|
|
197
|
+
"tags": [],
|
|
198
|
+
"source": {
|
|
199
|
+
"kind": "remote_archive",
|
|
200
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-admin-control-0.0.1.tar.gz",
|
|
201
|
+
"sha256": "7e8b3b4d8ba48398df557060cda085b79863c9aba979fe31b68d469334a41a17"
|
|
202
|
+
},
|
|
203
|
+
"requires": [
|
|
204
|
+
"official/discord"
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"kind": "plugin",
|
|
209
|
+
"surface": "plugin",
|
|
210
|
+
"packageId": "official/channel-lifecycle",
|
|
211
|
+
"name": "Channel Lifecycle",
|
|
212
|
+
"description": "Archive and delete controls for Discord-managed channels.",
|
|
213
|
+
"version": "0.0.1",
|
|
214
|
+
"recommendedForSetup": false,
|
|
215
|
+
"tags": [],
|
|
216
|
+
"source": {
|
|
217
|
+
"kind": "remote_archive",
|
|
218
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-channel-lifecycle-0.0.1.tar.gz",
|
|
219
|
+
"sha256": "572481186ba0211302f18f576172461553f430dd30fe8563be935557db8b58fe"
|
|
220
|
+
},
|
|
221
|
+
"requires": [
|
|
222
|
+
"official/discord"
|
|
223
|
+
]
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"kind": "plugin",
|
|
227
|
+
"surface": "plugin",
|
|
228
|
+
"packageId": "official/main-chat",
|
|
229
|
+
"name": "Main Chat",
|
|
230
|
+
"description": "Routes Moorline chat channel messages through the Discord transport.",
|
|
231
|
+
"version": "0.0.1",
|
|
232
|
+
"recommendedForSetup": false,
|
|
233
|
+
"tags": [],
|
|
234
|
+
"source": {
|
|
235
|
+
"kind": "remote_archive",
|
|
236
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-main-chat-0.0.1.tar.gz",
|
|
237
|
+
"sha256": "5a5ceeb7fe51299909fa41bdd6ea7f77c475cb411ab36587436bb3339dd8d152"
|
|
238
|
+
},
|
|
239
|
+
"requires": [
|
|
240
|
+
"official/discord"
|
|
241
|
+
]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"kind": "plugin",
|
|
245
|
+
"surface": "plugin",
|
|
246
|
+
"packageId": "official/memory",
|
|
247
|
+
"name": "Memory",
|
|
248
|
+
"description": "Layered memory retrieval and memory writing for Moorline sessions.",
|
|
249
|
+
"version": "0.0.1",
|
|
250
|
+
"recommendedForSetup": false,
|
|
251
|
+
"tags": [],
|
|
252
|
+
"source": {
|
|
253
|
+
"kind": "remote_archive",
|
|
254
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-memory-0.0.1.tar.gz",
|
|
255
|
+
"sha256": "3ee043b0131b534061c0d3701f7e1c48ec81c68b8c3d27d4075c449bf0633904"
|
|
256
|
+
},
|
|
257
|
+
"requires": []
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"kind": "plugin",
|
|
261
|
+
"surface": "plugin",
|
|
262
|
+
"packageId": "official/model-picker",
|
|
263
|
+
"name": "Model Picker",
|
|
264
|
+
"description": "Commands for listing and selecting the default Moorline model.",
|
|
265
|
+
"version": "0.0.1",
|
|
266
|
+
"recommendedForSetup": false,
|
|
267
|
+
"tags": [],
|
|
268
|
+
"source": {
|
|
269
|
+
"kind": "remote_archive",
|
|
270
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-model-picker-0.0.1.tar.gz",
|
|
271
|
+
"sha256": "13bc34a06e73a61a71fca305059063a50a6b7f072a71de1dcea1d3413fa3395b"
|
|
272
|
+
},
|
|
273
|
+
"requires": []
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"kind": "plugin",
|
|
277
|
+
"surface": "plugin",
|
|
278
|
+
"packageId": "official/persona",
|
|
279
|
+
"name": "Moorline Persona",
|
|
280
|
+
"description": "Default Moorline persona and system prompt contribution.",
|
|
281
|
+
"version": "0.0.1",
|
|
282
|
+
"recommendedForSetup": false,
|
|
283
|
+
"tags": [
|
|
284
|
+
"persona",
|
|
285
|
+
"prompt"
|
|
286
|
+
],
|
|
287
|
+
"source": {
|
|
288
|
+
"kind": "remote_archive",
|
|
289
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-persona-0.0.1.tar.gz",
|
|
290
|
+
"sha256": "75df3834452302523c1e09d37831f3a5a418e24924759cac73270561fa248643"
|
|
291
|
+
},
|
|
292
|
+
"requires": []
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"kind": "plugin",
|
|
296
|
+
"surface": "plugin",
|
|
297
|
+
"packageId": "official/self-edit",
|
|
298
|
+
"name": "Self Edit",
|
|
299
|
+
"description": "Allows Moorline to generate and update visible runtime skills.",
|
|
300
|
+
"version": "0.0.1",
|
|
301
|
+
"recommendedForSetup": false,
|
|
302
|
+
"tags": [],
|
|
303
|
+
"source": {
|
|
304
|
+
"kind": "remote_archive",
|
|
305
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-self-edit-0.0.1.tar.gz",
|
|
306
|
+
"sha256": "e45931fc21e26674dcd705152053ebf3d655d8a0345ca3ebe3ea083384ae4f16"
|
|
307
|
+
},
|
|
308
|
+
"requires": []
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"kind": "plugin",
|
|
312
|
+
"surface": "plugin",
|
|
313
|
+
"packageId": "official/session-agent",
|
|
314
|
+
"name": "Session Agent",
|
|
315
|
+
"description": "Session routing for Discord channel surfaces.",
|
|
316
|
+
"version": "0.0.1",
|
|
317
|
+
"recommendedForSetup": false,
|
|
318
|
+
"tags": [],
|
|
319
|
+
"source": {
|
|
320
|
+
"kind": "remote_archive",
|
|
321
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-session-agent-0.0.1.tar.gz",
|
|
322
|
+
"sha256": "139833fcc849f999d78119a99a7a6c087e9ddd2f95138df73b2075edb349b77e"
|
|
323
|
+
},
|
|
324
|
+
"requires": [
|
|
325
|
+
"official/discord"
|
|
326
|
+
]
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"kind": "plugin",
|
|
330
|
+
"surface": "plugin",
|
|
331
|
+
"packageId": "official/session-commands",
|
|
332
|
+
"name": "Session Commands",
|
|
333
|
+
"description": "Session lifecycle and scheduled-session commands for Discord.",
|
|
334
|
+
"version": "0.0.1",
|
|
335
|
+
"recommendedForSetup": false,
|
|
336
|
+
"tags": [],
|
|
337
|
+
"source": {
|
|
338
|
+
"kind": "remote_archive",
|
|
339
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-session-commands-0.0.1.tar.gz",
|
|
340
|
+
"sha256": "7dc0fc6c2e63c820fa1ffd6f8387e948e2ee7bb1105b54caa1791d2be45d3a26"
|
|
341
|
+
},
|
|
342
|
+
"requires": [
|
|
343
|
+
"official/discord"
|
|
344
|
+
]
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"kind": "plugin",
|
|
348
|
+
"surface": "plugin",
|
|
349
|
+
"packageId": "official/session-orchestration",
|
|
350
|
+
"name": "Session Orchestration",
|
|
351
|
+
"description": "Agent-facing tools for managing bounded and scheduled worker sessions.",
|
|
352
|
+
"version": "0.0.1",
|
|
353
|
+
"recommendedForSetup": false,
|
|
354
|
+
"tags": [],
|
|
355
|
+
"source": {
|
|
356
|
+
"kind": "remote_archive",
|
|
357
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-session-orchestration-0.0.1.tar.gz",
|
|
358
|
+
"sha256": "8dbfd19f171856a85e799357205848f6dd97ec07693e9aec966e38222f488ef5"
|
|
359
|
+
},
|
|
360
|
+
"requires": []
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"kind": "plugin",
|
|
364
|
+
"surface": "plugin",
|
|
365
|
+
"packageId": "official/skills",
|
|
366
|
+
"name": "Skills",
|
|
367
|
+
"description": "Exposes the visible skill catalog and the load_skill tool.",
|
|
368
|
+
"version": "0.0.1",
|
|
369
|
+
"recommendedForSetup": false,
|
|
370
|
+
"tags": [],
|
|
371
|
+
"source": {
|
|
372
|
+
"kind": "remote_archive",
|
|
373
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-skills-0.0.1.tar.gz",
|
|
374
|
+
"sha256": "c8219a761faa6bbe352fb49e6c976b25c1ed685198337daae1454e025cb62d4b"
|
|
375
|
+
},
|
|
376
|
+
"requires": []
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"kind": "plugin",
|
|
380
|
+
"surface": "plugin",
|
|
381
|
+
"packageId": "official/status",
|
|
382
|
+
"name": "Status",
|
|
383
|
+
"description": "Status and request-control commands for Discord.",
|
|
384
|
+
"version": "0.0.1",
|
|
385
|
+
"recommendedForSetup": false,
|
|
386
|
+
"tags": [],
|
|
387
|
+
"source": {
|
|
388
|
+
"kind": "remote_archive",
|
|
389
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-plugin-status-0.0.1.tar.gz",
|
|
390
|
+
"sha256": "a2508d602c4213683471bdd3e3bd7d9e87a73e2322fe4cfb8eeb1d38ece76d2f"
|
|
391
|
+
},
|
|
392
|
+
"requires": [
|
|
393
|
+
"official/discord"
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"kind": "provider",
|
|
398
|
+
"surface": "provider",
|
|
399
|
+
"packageId": "official/codex",
|
|
400
|
+
"name": "Codex Provider",
|
|
401
|
+
"description": "Official Codex provider package for Moorline.",
|
|
402
|
+
"version": "0.0.1",
|
|
403
|
+
"recommendedForSetup": false,
|
|
404
|
+
"tags": [
|
|
405
|
+
"official",
|
|
406
|
+
"codex",
|
|
407
|
+
"provider"
|
|
408
|
+
],
|
|
409
|
+
"source": {
|
|
410
|
+
"kind": "remote_archive",
|
|
411
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-provider-codex-0.0.1.tar.gz",
|
|
412
|
+
"sha256": "45630d8ea605d104c78bf5a8c5c6ad118dde09cbf1a4c15c5b6164c0db74b697"
|
|
413
|
+
},
|
|
414
|
+
"requires": []
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"kind": "transport",
|
|
418
|
+
"surface": "transport",
|
|
419
|
+
"packageId": "official/discord",
|
|
420
|
+
"name": "Discord Transport",
|
|
421
|
+
"description": "Official Discord transport package for Moorline.",
|
|
422
|
+
"version": "0.0.1",
|
|
423
|
+
"recommendedForSetup": false,
|
|
424
|
+
"tags": [
|
|
425
|
+
"official",
|
|
426
|
+
"discord",
|
|
427
|
+
"transport"
|
|
428
|
+
],
|
|
429
|
+
"source": {
|
|
430
|
+
"kind": "remote_archive",
|
|
431
|
+
"url": "https://github.com/Moorline/packages/releases/download/v0.0.1/moorline-transport-discord-0.0.1.tar.gz",
|
|
432
|
+
"sha256": "5a4dcf82413e6f76d64cca6a7a05c63a76d37d29a9b91686f0bfd0e82a91d92d"
|
|
433
|
+
},
|
|
434
|
+
"requires": [],
|
|
435
|
+
"suggestedAfterInstall": [
|
|
436
|
+
"official/admin-control",
|
|
437
|
+
"official/channel-lifecycle",
|
|
438
|
+
"official/main-chat",
|
|
439
|
+
"official/session-agent",
|
|
440
|
+
"official/session-commands",
|
|
441
|
+
"official/status"
|
|
442
|
+
]
|
|
443
|
+
}
|
|
444
|
+
]
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
{
|
|
2
|
+
"profile": "default-secure@0.1",
|
|
3
|
+
"network": {
|
|
4
|
+
"mode": "allowlist",
|
|
5
|
+
"allowlist": [
|
|
6
|
+
"provider:*",
|
|
7
|
+
"http://localhost*",
|
|
8
|
+
"https://localhost*",
|
|
9
|
+
"http://127.0.0.1*",
|
|
10
|
+
"https://127.0.0.1*",
|
|
11
|
+
"http://[::1]*",
|
|
12
|
+
"https://[::1]*"
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
"denyUnknownCapabilities": true,
|
|
16
|
+
"allowCapabilities": [
|
|
17
|
+
"command.exec",
|
|
18
|
+
"transport.message.send",
|
|
19
|
+
"transport.action.register",
|
|
20
|
+
"transport.space.create",
|
|
21
|
+
"transport.space.update",
|
|
22
|
+
"transport.space.delete",
|
|
23
|
+
"fs.read",
|
|
24
|
+
"fs.write",
|
|
25
|
+
"memory.read",
|
|
26
|
+
"memory.write",
|
|
27
|
+
"session.inspect",
|
|
28
|
+
"session.create",
|
|
29
|
+
"session.direct",
|
|
30
|
+
"session.archive",
|
|
31
|
+
"session.delete",
|
|
32
|
+
"mission.inspect",
|
|
33
|
+
"mission.create",
|
|
34
|
+
"mission.control",
|
|
35
|
+
"mission.archive",
|
|
36
|
+
"mission.delete",
|
|
37
|
+
"net.connect",
|
|
38
|
+
"runtime.control",
|
|
39
|
+
"sidecar.manage"
|
|
40
|
+
],
|
|
41
|
+
"actorRules": [
|
|
42
|
+
{
|
|
43
|
+
"actorPrefix": "runtime:transport/",
|
|
44
|
+
"allowCapabilities": [
|
|
45
|
+
"transport.action.register",
|
|
46
|
+
"transport.message.send",
|
|
47
|
+
"transport.space.update",
|
|
48
|
+
"session.archive",
|
|
49
|
+
"mission.create",
|
|
50
|
+
"mission.archive"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"actorPrefix": "runtime:namespace/",
|
|
55
|
+
"allowCapabilities": ["transport.space.create", "transport.space.update", "transport.space.delete"]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"actorPrefix": "runtime:status",
|
|
59
|
+
"allowCapabilities": ["transport.message.send"]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"actorPrefix": "runtime:command-runner",
|
|
63
|
+
"allowCapabilities": ["command.exec"]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"actorPrefix": "runtime:lifecycle/",
|
|
67
|
+
"allowCapabilities": ["memory.write", "session.archive", "transport.space.update"]
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"actorPrefix": "runtime:mission/",
|
|
71
|
+
"allowCapabilities": ["transport.message.send", "net.connect"]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"actorPrefix": "runtime:pending-request-action",
|
|
75
|
+
"allowCapabilities": ["net.connect"]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"actorPrefix": "runtime:provider/",
|
|
79
|
+
"allowCapabilities": ["net.connect"]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"actorPrefix": "plugin:official/model-picker",
|
|
83
|
+
"allowCapabilities": ["fs.write"]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"actorPrefix": "plugin:official/main-chat",
|
|
87
|
+
"allowCapabilities": ["transport.message.send", "net.connect", "fs.read"]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"actorPrefix": "plugin:official/session-agent",
|
|
91
|
+
"allowCapabilities": ["transport.message.send", "net.connect", "fs.read"]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"actorPrefix": "plugin:official/session-commands",
|
|
95
|
+
"allowCapabilities": [
|
|
96
|
+
"transport.message.send",
|
|
97
|
+
"transport.space.create",
|
|
98
|
+
"transport.space.update",
|
|
99
|
+
"transport.space.delete",
|
|
100
|
+
"session.create",
|
|
101
|
+
"session.archive",
|
|
102
|
+
"session.delete",
|
|
103
|
+
"mission.create",
|
|
104
|
+
"mission.control",
|
|
105
|
+
"mission.inspect"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"actorPrefix": "plugin:official/channel-lifecycle",
|
|
110
|
+
"allowCapabilities": [
|
|
111
|
+
"transport.message.send",
|
|
112
|
+
"transport.space.update",
|
|
113
|
+
"transport.space.delete",
|
|
114
|
+
"session.archive",
|
|
115
|
+
"session.delete",
|
|
116
|
+
"mission.archive",
|
|
117
|
+
"mission.delete"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"actorPrefix": "plugin:official/session-orchestration",
|
|
122
|
+
"allowCapabilities": [
|
|
123
|
+
"transport.message.send",
|
|
124
|
+
"transport.space.create",
|
|
125
|
+
"transport.space.update",
|
|
126
|
+
"transport.space.delete",
|
|
127
|
+
"net.connect",
|
|
128
|
+
"session.inspect",
|
|
129
|
+
"session.create",
|
|
130
|
+
"session.direct",
|
|
131
|
+
"session.archive",
|
|
132
|
+
"session.delete",
|
|
133
|
+
"mission.inspect",
|
|
134
|
+
"mission.create",
|
|
135
|
+
"mission.control",
|
|
136
|
+
"sidecar.manage"
|
|
137
|
+
]
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"actorPrefix": "plugin:official/status",
|
|
141
|
+
"allowCapabilities": ["memory.read", "net.connect", "transport.message.send"]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"actorPrefix": "plugin:official/memory",
|
|
145
|
+
"allowCapabilities": ["memory.read", "memory.write", "fs.write"]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"actorPrefix": "plugin:official/skills",
|
|
149
|
+
"allowCapabilities": ["fs.read"]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"actorPrefix": "plugin:official/self-edit",
|
|
153
|
+
"allowCapabilities": ["fs.write", "fs.read"]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"actorPrefix": "plugin:official/admin-control",
|
|
157
|
+
"allowCapabilities": ["runtime.control", "transport.message.send"]
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
}
|