Files
openclaw/src/plugin-sdk/text-runtime.ts
Matt Van Horn e0972db7a2 fix: stop leaking reply tags in iMessage outbound text (#39512) (thanks @mvanhorn)
* fix: stop leaking reply tags in iMessage outbound text (#39512) (thanks @mvanhorn)

* fix: preserve iMessage outbound whitespace without directive tags (#39512) (thanks @mvanhorn)

---------

Co-authored-by: Ayaan Zaidi <hi@obviy.us>
2026-03-25 23:00:16 +05:30

29 lines
1.2 KiB
TypeScript

// Public shared text/formatting helpers for plugins that parse or rewrite message text.
export * from "../logger.js";
export * from "../logging/diagnostic.js";
export * from "../logging/logger.js";
export * from "../logging/redact.js";
export * from "../logging/redact-identifier.js";
export * from "../markdown/ir.js";
export * from "../markdown/render.js";
export * from "../markdown/tables.js";
export * from "../markdown/whatsapp.js";
export * from "../shared/global-singleton.js";
export * from "../shared/scoped-expiring-id-cache.js";
export * from "../shared/string-normalization.js";
export * from "../shared/string-sample.js";
export * from "../shared/text/assistant-visible-text.js";
export * from "../shared/text/auto-linked-file-ref.js";
export * from "../shared/text/code-regions.js";
export * from "../shared/text/reasoning-tags.js";
export * from "../shared/text/strip-markdown.js";
export * from "../shared/scoped-expiring-id-cache.js";
export * from "../terminal/safe-text.js";
export * from "../utils/directive-tags.js";
export * from "../utils.js";
export * from "../utils/chunk-items.js";
export * from "../utils/fetch-timeout.js";
export * from "../utils/reaction-level.js";
export * from "../utils/with-timeout.js";