perf(test): narrow sdk seams for channel hotspots

This commit is contained in:
Vincent Koc
2026-04-01 23:14:40 +09:00
parent 8988894ff7
commit 76c4ecd651
21 changed files with 114 additions and 35 deletions

View File

@@ -0,0 +1,6 @@
export {
hasControlCommand,
hasInlineCommandTokens,
isControlCommandMessage,
shouldComputeCommandAuthorized,
} from "../auto-reply/command-detection.js";

View File

@@ -0,0 +1,4 @@
export {
normalizeCommandBody,
shouldHandleTextCommands,
} from "../auto-reply/commands-registry.js";

View File

@@ -0,0 +1,2 @@
export { resolveMarkdownTableMode } from "../config/markdown-tables.js";
export type { MarkdownTableMode } from "../config/types.base.js";

View File

@@ -0,0 +1,6 @@
export {
buildModelsProviderData,
formatModelsAvailableHeader,
resolveModelsCommandReply,
} from "../auto-reply/reply/commands-models.js";
export type { ModelsProviderData } from "../auto-reply/reply/commands-models.js";

View File

@@ -0,0 +1,2 @@
export { getRuntimeConfigSnapshot } from "../config/io.js";
export type { OpenClawConfig } from "../config/types.js";

View File

@@ -0,0 +1,5 @@
export {
TELEGRAM_COMMAND_NAME_PATTERN,
normalizeTelegramCommandName,
resolveTelegramCustomCommands,
} from "../config/telegram-custom-commands.js";