mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-23 10:55:31 -06:00
1adaa28dc8
Merged via squash.
Prepared head SHA: 68e5f2ce19
Co-authored-by: 100yenadmin <239388517+100yenadmin@users.noreply.github.com>
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Reviewed-by: @jalehman
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import type { PluginRegistry } from "./registry-types.js";
|
|
|
|
export function createEmptyPluginRegistry(): PluginRegistry {
|
|
return {
|
|
plugins: [],
|
|
tools: [],
|
|
hooks: [],
|
|
typedHooks: [],
|
|
channels: [],
|
|
channelSetups: [],
|
|
providers: [],
|
|
cliBackends: [],
|
|
textTransforms: [],
|
|
speechProviders: [],
|
|
realtimeTranscriptionProviders: [],
|
|
realtimeVoiceProviders: [],
|
|
mediaUnderstandingProviders: [],
|
|
imageGenerationProviders: [],
|
|
videoGenerationProviders: [],
|
|
musicGenerationProviders: [],
|
|
webFetchProviders: [],
|
|
webSearchProviders: [],
|
|
migrationProviders: [],
|
|
codexAppServerExtensionFactories: [],
|
|
agentToolResultMiddlewares: [],
|
|
memoryEmbeddingProviders: [],
|
|
agentHarnesses: [],
|
|
gatewayHandlers: {},
|
|
gatewayMethodScopes: {},
|
|
httpRoutes: [],
|
|
cliRegistrars: [],
|
|
reloads: [],
|
|
nodeHostCommands: [],
|
|
securityAuditCollectors: [],
|
|
services: [],
|
|
gatewayDiscoveryServices: [],
|
|
commands: [],
|
|
sessionExtensions: [],
|
|
trustedToolPolicies: [],
|
|
toolMetadata: [],
|
|
controlUiDescriptors: [],
|
|
runtimeLifecycles: [],
|
|
agentEventSubscriptions: [],
|
|
sessionSchedulerJobs: [],
|
|
conversationBindingResolvedHandlers: [],
|
|
diagnostics: [],
|
|
};
|
|
}
|