mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 18:01:41 +00:00
* feat: add Claude session fleet * chore: leave release notes to release automation * chore: refresh generated catalogs * fix: satisfy session catalog lint gates
18 lines
635 B
TypeScript
18 lines
635 B
TypeScript
/**
|
|
* Anthropic provider plugin entry. It registers Claude API auth, Claude CLI
|
|
* backend support, native session catalogs, media understanding, stream
|
|
* wrappers, and usage reporting.
|
|
*/
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { registerAnthropicPlugin } from "./register.runtime.js";
|
|
|
|
/** Provider entry for Anthropic API, Claude CLI, and native session surfaces. */
|
|
export default definePluginEntry({
|
|
id: "anthropic",
|
|
name: "Anthropic",
|
|
description: "Anthropic models, Claude CLI, and native Claude session catalog",
|
|
register(api) {
|
|
return registerAnthropicPlugin(api);
|
|
},
|
|
});
|