fix(tools): restore tool display serializer export

This commit is contained in:
Clawdbot
2026-05-02 01:04:18 +10:00
parent 1773b62b5a
commit a2cd832d01

View File

@@ -569,3 +569,9 @@ export const TOOL_DISPLAY_CONFIG: ToolDisplayConfig = {
},
},
};
export function serializeToolDisplayConfig(
config: ToolDisplayConfig = TOOL_DISPLAY_CONFIG,
): string {
return `${JSON.stringify(config, null, 2)}\n`;
}