openclaw / src /agents /command /cli-compaction-runtime.test-support.ts
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
e249c6d verified
Raw
History Blame Contribute Delete
614 Bytes
// Real setup entries share the invocation build instead of transforming plugins inside a test.
const currentModuleUrl = import.meta.url;
export const cliCompactionBackendEntrypoints = [
{
provider: "claude-cli",
pluginId: "anthropic",
currentModuleUrl,
sourceWorkerName: "../../../extensions/anthropic/setup-api",
distWorkerPath: "extensions/anthropic/setup-api.js",
},
{
provider: "google-gemini-cli",
pluginId: "google",
currentModuleUrl,
sourceWorkerName: "../../../extensions/google/setup-api",
distWorkerPath: "extensions/google/setup-api.js",
},
] as const;