@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
20 lines (19 loc) • 586 B
TypeScript
import type { OpenClawConfig } from "../../config/config.js";
import type { MsgContext } from "../templating.js";
import type { ReplyPayload } from "../types.js";
export declare function handleBashChatCommand(params: {
ctx: MsgContext;
cfg: OpenClawConfig;
agentId?: string;
sessionKey: string;
isGroup: boolean;
elevated: {
enabled: boolean;
allowed: boolean;
failures: Array<{
gate: string;
key: string;
}>;
};
}): Promise<ReplyPayload>;
export declare function resetBashChatCommandForTests(): void;