mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-01 23:31:33 +00:00
* refactor: share talk event metric extraction * refactor: reuse shared coercion helpers * refactor: reuse shared primitive guards * refactor: reuse shared record guard * refactor: reuse shared primitive helpers * refactor: reuse shared string guards * refactor: reuse shared non-empty string guard * refactor: share plugin primitive coercion helpers * refactor: reuse plugin coercion helpers * refactor: reuse plugin coercion helpers in more plugins * refactor: reuse channel coercion helpers * refactor: reuse monitor coercion helpers * refactor: reuse provider coercion helpers * refactor: reuse core coercion helpers * refactor: reuse runtime coercion helpers * refactor: reuse helper coercion in codex paths * refactor: reuse helper coercion in runtime paths * refactor: reuse codex app-server coercion helpers * refactor: reuse codex record helpers * refactor: reuse migration and qa record helpers * refactor: reuse feishu and core helper guards * refactor: reuse browser and policy coercion helpers * refactor: reuse memory wiki record helper * refactor: share boolean coercion helpers * refactor: reuse finite number coercion * refactor: reuse trimmed string list helpers * refactor: reuse string list normalization * refactor: reuse remaining string list helpers * refactor: reuse string entry normalizer * refactor: share sorted string helpers * refactor: share string list normalization * test: preserve command registry browser imports * refactor: reuse trimmed list helpers * refactor: reuse string dedupe helpers * refactor: reuse local dedupe helpers * refactor: reuse more string dedupe helpers * refactor: reuse command string dedupe helpers * refactor: dedupe memory path lists with helper * refactor: expose string dedupe helpers to plugins * refactor: reuse core string dedupe helpers * refactor: reuse shared unique value helpers * refactor: reuse unique helpers in agent utilities * refactor: reuse unique helpers in config plumbing * refactor: reuse unique helpers in extensions * refactor: reuse unique helpers in core utilities * refactor: reuse unique helpers in qa plugins * refactor: reuse unique helpers in memory plugins * refactor: reuse unique helpers in channel plugins * refactor: reuse unique helpers in core tails * refactor: reuse unique helper in comfy workflow * refactor: reuse unique helpers in test utilities * refactor: expose unique value helper to plugins * refactor: reuse unique helpers for numeric lists * refactor: replace index dedupe filters * refactor: reuse string entry normalization * refactor: reuse string normalization in plugin helpers * refactor: reuse string normalization in extension helpers * refactor: reuse string normalization in channel parsers * refactor: reuse string normalization in memory search * refactor: reuse string normalization in provider parsers * refactor: reuse string normalization in qa helpers * refactor: reuse string normalization in infra parsers * refactor: reuse string normalization in messaging parsers * refactor: reuse string normalization in core parsers * refactor: reuse string normalization in extension parsers * refactor: reuse string normalization in remaining parsers * refactor: reuse string normalization in final parser spots * refactor: reuse string normalization in qa media helpers * refactor: reuse normalization in provider and media lists * refactor: reuse normalization for remaining set filters * refactor: reuse normalization in policy allowlists * refactor: reuse normalization in session and owner lists * refactor: centralize primitive string lists * refactor: reuse lowercase entry helpers * refactor: reuse sorted string helpers * refactor: reuse unique trimmed helpers * refactor: reuse string normalization helpers * refactor: reuse catalog string helpers * refactor: reuse remaining string helpers * refactor: simplify remaining list normalization * refactor: reuse codex auth order normalization * chore: refresh plugin sdk api baseline * fix: make shared string sorting deterministic * chore: refresh plugin sdk api baseline * fix: align host env security ordering
264 lines
6.5 KiB
TypeScript
264 lines
6.5 KiB
TypeScript
import { isRecord } from "../shared/record-coerce.js";
|
|
|
|
export type QaBusConversationKind = "direct" | "channel" | "group";
|
|
|
|
export type QaBusConversation = {
|
|
id: string;
|
|
kind: QaBusConversationKind;
|
|
title?: string;
|
|
};
|
|
|
|
export type QaBusAttachment = {
|
|
id: string;
|
|
kind: "image" | "video" | "audio" | "file";
|
|
mimeType: string;
|
|
fileName?: string;
|
|
inline?: boolean;
|
|
url?: string;
|
|
contentBase64?: string;
|
|
width?: number;
|
|
height?: number;
|
|
durationMs?: number;
|
|
altText?: string;
|
|
transcript?: string;
|
|
};
|
|
|
|
export type QaBusToolCall = {
|
|
name: string;
|
|
arguments?: Record<string, unknown>;
|
|
};
|
|
|
|
export type QaBusMessage = {
|
|
id: string;
|
|
accountId: string;
|
|
direction: "inbound" | "outbound";
|
|
conversation: QaBusConversation;
|
|
senderId: string;
|
|
senderName?: string;
|
|
text: string;
|
|
timestamp: number;
|
|
threadId?: string;
|
|
threadTitle?: string;
|
|
replyToId?: string;
|
|
deleted?: boolean;
|
|
editedAt?: number;
|
|
attachments?: QaBusAttachment[];
|
|
toolCalls?: QaBusToolCall[];
|
|
reactions: Array<{
|
|
emoji: string;
|
|
senderId: string;
|
|
timestamp: number;
|
|
}>;
|
|
};
|
|
|
|
export type QaBusThread = {
|
|
id: string;
|
|
accountId: string;
|
|
conversationId: string;
|
|
title: string;
|
|
createdAt: number;
|
|
createdBy: string;
|
|
};
|
|
|
|
export type QaBusEvent =
|
|
| { cursor: number; kind: "inbound-message"; accountId: string; message: QaBusMessage }
|
|
| { cursor: number; kind: "outbound-message"; accountId: string; message: QaBusMessage }
|
|
| { cursor: number; kind: "thread-created"; accountId: string; thread: QaBusThread }
|
|
| { cursor: number; kind: "message-edited"; accountId: string; message: QaBusMessage }
|
|
| { cursor: number; kind: "message-deleted"; accountId: string; message: QaBusMessage }
|
|
| {
|
|
cursor: number;
|
|
kind: "reaction-added";
|
|
accountId: string;
|
|
message: QaBusMessage;
|
|
emoji: string;
|
|
senderId: string;
|
|
};
|
|
|
|
export type QaBusInboundMessageInput = {
|
|
accountId?: string;
|
|
conversation: QaBusConversation;
|
|
senderId: string;
|
|
senderName?: string;
|
|
text: string;
|
|
timestamp?: number;
|
|
threadId?: string;
|
|
threadTitle?: string;
|
|
replyToId?: string;
|
|
attachments?: QaBusAttachment[];
|
|
toolCalls?: QaBusToolCall[];
|
|
};
|
|
|
|
export type QaBusOutboundMessageInput = {
|
|
accountId?: string;
|
|
to: string;
|
|
senderId?: string;
|
|
senderName?: string;
|
|
text: string;
|
|
timestamp?: number;
|
|
threadId?: string;
|
|
replyToId?: string;
|
|
attachments?: QaBusAttachment[];
|
|
toolCalls?: QaBusToolCall[];
|
|
};
|
|
|
|
export type QaBusCreateThreadInput = {
|
|
accountId?: string;
|
|
conversationId: string;
|
|
title: string;
|
|
createdBy?: string;
|
|
timestamp?: number;
|
|
};
|
|
|
|
export type QaBusReactToMessageInput = {
|
|
accountId?: string;
|
|
messageId: string;
|
|
emoji: string;
|
|
senderId?: string;
|
|
timestamp?: number;
|
|
};
|
|
|
|
export type QaBusEditMessageInput = {
|
|
accountId?: string;
|
|
messageId: string;
|
|
text: string;
|
|
timestamp?: number;
|
|
};
|
|
|
|
export type QaBusDeleteMessageInput = {
|
|
accountId?: string;
|
|
messageId: string;
|
|
timestamp?: number;
|
|
};
|
|
|
|
export type QaBusSearchMessagesInput = {
|
|
accountId?: string;
|
|
query?: string;
|
|
conversationId?: string;
|
|
threadId?: string;
|
|
limit?: number;
|
|
};
|
|
|
|
export type QaBusReadMessageInput = {
|
|
accountId?: string;
|
|
messageId: string;
|
|
};
|
|
|
|
export type QaBusPollInput = {
|
|
accountId?: string;
|
|
cursor?: number;
|
|
timeoutMs?: number;
|
|
limit?: number;
|
|
};
|
|
|
|
export type QaBusPollResult = {
|
|
cursor: number;
|
|
events: QaBusEvent[];
|
|
};
|
|
|
|
export type QaBusStateSnapshot = {
|
|
cursor: number;
|
|
conversations: QaBusConversation[];
|
|
threads: QaBusThread[];
|
|
messages: QaBusMessage[];
|
|
events: QaBusEvent[];
|
|
};
|
|
|
|
const QA_BUS_TOOL_CALL_MAX_COUNT = 50;
|
|
const QA_BUS_TOOL_CALL_MAX_DEPTH = 4;
|
|
const QA_BUS_TOOL_CALL_MAX_ARRAY_LENGTH = 20;
|
|
const QA_BUS_TOOL_CALL_MAX_OBJECT_KEYS = 40;
|
|
const QA_BUS_TOOL_CALL_REDACTED = "[redacted]";
|
|
|
|
const QA_BUS_TOOL_CALL_SENSITIVE_KEY_RE =
|
|
/authorization|cookie|credential|password|secret|token|api[-_]?key|access[-_]?key|private[-_]?key/iu;
|
|
|
|
function sanitizeQaBusToolCallValue(value: unknown, depth: number, key?: string): unknown {
|
|
if (key && QA_BUS_TOOL_CALL_SENSITIVE_KEY_RE.test(key)) {
|
|
return QA_BUS_TOOL_CALL_REDACTED;
|
|
}
|
|
if (value === null || typeof value === "boolean" || typeof value === "number") {
|
|
return Number.isFinite(value as number) || typeof value !== "number" ? value : String(value);
|
|
}
|
|
if (typeof value === "string") {
|
|
// Tool args often embed credentials in command/header/env shapes; keep structure, not raw text.
|
|
return QA_BUS_TOOL_CALL_REDACTED;
|
|
}
|
|
if (typeof value === "bigint") {
|
|
return value.toString();
|
|
}
|
|
if (value === undefined || typeof value === "function" || typeof value === "symbol") {
|
|
return undefined;
|
|
}
|
|
if (depth >= QA_BUS_TOOL_CALL_MAX_DEPTH) {
|
|
return "[truncated]";
|
|
}
|
|
if (Array.isArray(value)) {
|
|
return value.slice(0, QA_BUS_TOOL_CALL_MAX_ARRAY_LENGTH).map((entry) => {
|
|
return sanitizeQaBusToolCallValue(entry, depth + 1);
|
|
});
|
|
}
|
|
if (isRecord(value)) {
|
|
return Object.fromEntries(
|
|
Object.entries(value)
|
|
.slice(0, QA_BUS_TOOL_CALL_MAX_OBJECT_KEYS)
|
|
.flatMap(([entryKey, entryValue]) => {
|
|
const sanitized = sanitizeQaBusToolCallValue(entryValue, depth + 1, entryKey);
|
|
return sanitized === undefined ? [] : [[entryKey, sanitized]];
|
|
}),
|
|
);
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
export function sanitizeQaBusToolCallArguments(
|
|
value: unknown,
|
|
): Record<string, unknown> | undefined {
|
|
if (!isRecord(value)) {
|
|
return undefined;
|
|
}
|
|
const sanitized = sanitizeQaBusToolCallValue(value, 0);
|
|
return isRecord(sanitized) ? sanitized : undefined;
|
|
}
|
|
|
|
export function sanitizeQaBusToolCalls(value: unknown): QaBusToolCall[] | undefined {
|
|
if (!Array.isArray(value)) {
|
|
return undefined;
|
|
}
|
|
const sanitized = value.slice(0, QA_BUS_TOOL_CALL_MAX_COUNT).flatMap((toolCall) => {
|
|
if (!isRecord(toolCall)) {
|
|
return [];
|
|
}
|
|
const name = typeof toolCall.name === "string" ? toolCall.name.trim() : "";
|
|
if (!name) {
|
|
return [];
|
|
}
|
|
const args = sanitizeQaBusToolCallArguments(toolCall.arguments);
|
|
return [
|
|
{
|
|
name,
|
|
...(args && Object.keys(args).length > 0 ? { arguments: args } : {}),
|
|
},
|
|
];
|
|
});
|
|
return sanitized.length > 0 ? sanitized : undefined;
|
|
}
|
|
|
|
export type QaBusWaitForInput =
|
|
| {
|
|
timeoutMs?: number;
|
|
kind: "event-kind";
|
|
eventKind: QaBusEvent["kind"];
|
|
}
|
|
| {
|
|
timeoutMs?: number;
|
|
kind: "message-text";
|
|
textIncludes: string;
|
|
direction?: QaBusMessage["direction"];
|
|
}
|
|
| {
|
|
timeoutMs?: number;
|
|
kind: "thread-id";
|
|
threadId: string;
|
|
};
|