mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-15 15:00:45 +00:00
Summary: - The PR updates auto-reply message-tool availability and fallback policy, qa-channel group target support, qa-lab scenario coverage, generated config metadata, docs, and the changelog for group visible replies. ClawSweeper fixups: - No separate fixup commits were needed after automerge opt-in. Validation: - ClawSweeper review passed for headadbec93b8a. - Required merge gates passed before the squash merge. Prepared head SHA:adbec93b8aReview: https://github.com/openclaw/openclaw/pull/75382#issuecomment-4357590733 Co-authored-by: Peter Steinberger <steipete@gmail.com>
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
export type { Command } from "commander";
|
|
export type { OpenClawConfig } from "openclaw/plugin-sdk/config-types";
|
|
export { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
export { callGatewayFromCli } from "openclaw/plugin-sdk/gateway-runtime";
|
|
export type { PluginRuntime } from "openclaw/plugin-sdk/runtime-store";
|
|
export { defaultQaRuntimeModelForMode } from "./model-selection.runtime.js";
|
|
export {
|
|
buildQaTarget,
|
|
createQaBusThread,
|
|
deleteQaBusMessage,
|
|
editQaBusMessage,
|
|
getQaBusState,
|
|
injectQaBusInboundMessage,
|
|
normalizeQaTarget,
|
|
parseQaTarget,
|
|
pollQaBus,
|
|
qaChannelPlugin,
|
|
reactToQaBusMessage,
|
|
readQaBusMessage,
|
|
searchQaBusMessages,
|
|
sendQaBusMessage,
|
|
setQaChannelRuntime,
|
|
} from "openclaw/plugin-sdk/qa-channel";
|
|
export type {
|
|
QaBusAttachment,
|
|
QaBusConversation,
|
|
QaBusConversationKind,
|
|
QaBusCreateThreadInput,
|
|
QaBusDeleteMessageInput,
|
|
QaBusEditMessageInput,
|
|
QaBusEvent,
|
|
QaBusInboundMessageInput,
|
|
QaBusMessage,
|
|
QaBusOutboundMessageInput,
|
|
QaBusPollInput,
|
|
QaBusPollResult,
|
|
QaBusReactToMessageInput,
|
|
QaBusReadMessageInput,
|
|
QaBusSearchMessagesInput,
|
|
QaBusStateSnapshot,
|
|
QaBusThread,
|
|
QaBusWaitForInput,
|
|
} from "./protocol.js";
|