refactor: move plugin setup and memory capabilities to registries

This commit is contained in:
Peter Steinberger
2026-04-05 14:43:29 +01:00
parent 695c9c887b
commit 629baf5fa7
76 changed files with 1300 additions and 298 deletions

View File

@@ -0,0 +1,18 @@
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
import { normalizeGoogleProviderConfig } from "./api.js";
export default definePluginEntry({
id: "google",
name: "Google Setup",
description: "Lightweight Google setup hooks",
register(api) {
api.registerProvider({
id: "google",
label: "Google AI Studio",
hookAliases: ["google-antigravity", "google-vertex"],
auth: [],
normalizeConfig: ({ provider, providerConfig }) =>
normalizeGoogleProviderConfig(provider, providerConfig),
});
},
});