fix: restore status usage summary output

This commit is contained in:
Peter Steinberger
2026-01-16 02:49:10 +00:00
parent e7c16cc0e6
commit 29476b222d
6 changed files with 37 additions and 24 deletions

View File

@@ -191,7 +191,6 @@ function createPluginRecord(params: {
toolNames: [],
providerIds: [],
channelIds: [],
providerIds: [],
gatewayMethods: [],
cliCommands: [],
services: [],

View File

@@ -138,11 +138,6 @@ export type ClawdbotPluginChannelRegistration = {
dock?: ChannelDock;
};
export type ClawdbotPluginProviderRegistration = {
id: string;
[key: string]: unknown;
};
export type ClawdbotPluginDefinition = {
id?: string;
name?: string;
@@ -170,7 +165,6 @@ export type ClawdbotPluginApi = {
tool: AnyAgentTool | ClawdbotPluginToolFactory,
opts?: { name?: string; names?: string[] },
) => void;
registerProvider: (provider: ClawdbotPluginProviderRegistration) => void;
registerHttpHandler: (handler: ClawdbotPluginHttpHandler) => void;
registerChannel: (registration: ClawdbotPluginChannelRegistration | ChannelPlugin) => void;
registerGatewayMethod: (method: string, handler: GatewayRequestHandler) => void;