/** * Core plugin package lists shared by runtime startup and the API server. * * Keeping this in a standalone module avoids a circular dependency between * `api/server.ts` and `runtime/eliza.ts`. */ /** Core plugins that should always be loaded. collectPluginNames() seeds from this list only. */ export declare const CORE_PLUGINS: readonly string[]; /** * Plugins that can be enabled from the admin panel. * Not loaded by default — require explicit configuration or have platform dependencies. */ export declare const OPTIONAL_CORE_PLUGINS: readonly string[]; //# sourceMappingURL=core-plugins.d.ts.map