openclaw/plugin-sdk/channel-outbound. Use
openclaw/plugin-sdk/channel-inbound for receive/context/dispatch
orchestration.
Core owns queueing, durability, the durable ingress monitor and drain
(createChannelIngressMonitor, createChannelIngressDrain, and
openChannelIngressDrain), generic retry policy, turn-adoption lifecycle
(turnAdoptionLifecycle / bindIngressLifecycleToReplyOptions), hooks,
receipts, and the shared message tool. The plugin owns native
send/edit/delete calls, target normalization, platform threading, selected
quotes, notification flags, account state, ingress inspection and payload
encoding, lane keys, non-retryable predicates, optional supersede
authorization, and platform-specific side effects.
Durable ingress monitors
UsecreateChannelIngressMonitor(...) when a channel must persist accepted
transport events before dispatch. It composes a channel ingress queue and drain
with the shared admission, polling, pruning, delivery, and shutdown lifecycle.
Use the lower-level createChannelIngressDrain(...) only when the transport
owns a materially different admission or pump contract.
The required options are:
The monitor serializes admissions so append backoff cannot invert a lane. The
default bounded append delays are
0, 100, and 300 ms; exhaustion rejects
the transport callback instead of dispatching an event that was not made
durable. At claim time it decodes the versioned payload, re-runs inspect, and
rejects an id or lane mismatch before delivery.
deliver receives onAdopted, onDeferred, onAdoptionFinalizing,
onAbandoned, and abortSignal. Returning without an explicit handoff marks a
terminal no-dispatch event adopted. admission is always exclusive. A
deferred handoff keeps the claim held, while shutdown or abort leaves unadopted
work retryable. The monitor tracks delivery independently from claim settlement
because adoption can tombstone a row before the channel’s delivery promise
returns.
Optional settings include custom append delays, a drain option block for
advanced drain ordering/concurrency/retry policy, an external abortSignal, a
clock, pump error reporting, a stopped-error factory, and admission policy.
The returned monitor exposes admit, start, pause, stop, waitForIdle,
isRunning, and isStopped. stop first settles accepted admissions, then
aborts and disposes the drain, waits for the pump and active deliveries, and
disposes again to close the lazy-creation race.
Keep transport-specific redaction, raw-envelope validation, non-retryable
classification, and persisted payload shape in the plugin. Webhook transports
should acknowledge only after admit resolves; non-replay transports should
surface durable append exhaustion rather than silently dispatching.
Adapter
Most plugins define onemessage adapter:
Outbound echo suppression
When a platform may redeliver the plugin’s own outbound message as inbound, callrecordOutboundMessageIdentity(...) with the channel, account, conversation, and a stable platform message or source identity. The shared inbound turn path drops matching identities for a bounded 30-second window before session recording or agent dispatch; a source identity may be reserved before send or refreshed when a channel route is removed to close delivery races. isRecentOutboundMessageIdentity(...) exposes the same query for channel diagnostics and tests. Do not maintain a parallel channel-local TTL cache for the same stable identity.
Plain-text sanitization
UsesanitizeForPlainText(...) when an outbound adapter needs to convert the
supported HTML formatting tags into lightweight text markup. The default keeps
the existing chat-style bold and strikethrough markers. Pass
{ style: "markdown" } only when the channel reparses the result as Markdown:
**bold** and ~~strikethrough~~; italic and inline
code keep _italic_ and backtick markers in both styles. Select the style at
the channel boundary instead of rewriting marker text after sanitization.
Delivery Evidence
AMessageReceipt records the result returned by a channel adapter. Concrete
platform message identifiers show that the platform send path accepted the
message; they do not prove that a recipient’s device displayed or read it.
Receipts without platform message identifiers are local receipt metadata only.
Channels with read receipts or device-delivery state should track those facts
through a separate channel-specific path.
If a channel adapter can prove that retrying a failure cannot duplicate a
recipient-visible send and no finalization-capable call began, throw
new PlatformMessageNotDispatchedError("...", { cause: error }) from
openclaw/plugin-sdk/error-runtime. Core can then clear stale send-attempt
evidence and safely retry the queued intent. Only the adapter that owns the
final dispatch boundary may make this assertion. Never use the marker after a
finalization/send call begins or returns an ambiguous result; false marking can
duplicate messages.
Existing outbound adapters
If the channel already has a compatibleoutbound adapter, derive the
message adapter instead of duplicating send code:
Durable sends
Runtime send helpers also live onchannel-outbound:
sendDurableMessageBatch(...)withDurableMessageSendContext(...)deliverInboundReplyWithMessageSendContext(...)- draft streaming/progress helpers such as
resolveChannelDraftStreamingChunking(...)
sendDurableMessageBatch(...) returns one explicit outcome:
Use
payloadOutcomes when a batch mixes sent, suppressed, and failed
payloads. Do not infer hook cancellation from an empty legacy
direct-delivery result.
Deferred delivery admission
Usemessage.durableFinal.admitDeferredDelivery(...) when a resolved account
cannot safely accept core-managed outbound or deferred delivery. Core calls
this hook synchronously before live outbound work, including paths that skip
queue persistence, and again before replaying a recovered intent. The context
includes cfg, channel, to, accountId, and a phase of live or
recovery.
Return { status: "allowed" } to continue. Return
{ status: "permanent_rejection", reason } when the delivery must not be
persisted, sent directly, or replayed. A live rejection fails before queue
creation, message hooks, or platform work. A recovery rejection marks the
queued record failed and skips reconciliation and replay. Omitting the hook
means allowed.
The hook is a synchronous admission decision, not a send path. Read only
already-loaded config or runtime state; do not perform network, filesystem, or
other asynchronous I/O. Contract tests should exercise both phases and both
result variants through ChannelMessageDurableFinalAdapter from
openclaw/plugin-sdk/channel-outbound.
Compatibility dispatch
Assemble inbound reply dispatch throughdispatchChannelInboundReply(...)
from channel-inbound. Keep platform delivery in the delivery adapter; use
channel-outbound for message adapters, durable sends, receipts, live
preview, and reply pipeline options.