dsh-bridge
其他 活跃维护

dsh-bridge

baixianger/dsh-bridge

轻量级同进程会话消息传递插件,无需跨进程通信即可实现不同会话间的消息互通,配置简单部署便捷,运行开销极低,可无缝集成到现有会话流程稳定运行。

0
Stars 标星
0
Forks 分支
0
Watchers 关注
0
Open Issues
JavaScript
主要语言
None
开源协议
36 KB
仓库大小
1 个月前
最后推送
一键安装扩展 / 插件指令
dsh plugin --profile web add github:baixianger/dsh-bridge
git clone https://github.com/baixianger/dsh-bridge.git
git clone git@github.com:baixianger/dsh-bridge.git
README.md main

dsh-bridge

Local, cross-session messaging for DeepSeek Harness.

DSH Bridge is the local messaging foundation of the DSH family. It lets live
sessions in one DSH host discover one another and exchange messages. It has no
Web UI and no network transport.

dsh-weave can extend Bridge across machines; dsh-chat can present its
messages as a human-facing group chat. Neither is required for local use.

The plugin exposes the ctx.dshBridge service and registers session_list,
session_send, and session_messages for agents. The old ctx.sessionMessaging
accessor remains as a temporary compatibility alias.

ctx.dshBridge.deliverExternal() is the controlled inbound seam for a trusted
transport such as Weave: it emits the same session follow-up and audit record
as local delivery, rather than letting a transport manipulate agents directly.
Delivery uses the public ctx.agents registry and Agent.followup(). An idle
target is woken, a running target receives ordinary queued work, and a persisted
offline target is resumed through DSH's configured Host agent resolver before
delivery. Concurrent messages to the same cold session share one resume operation.
The resolver reconstructs the recorded agent preset and model selection exactly
as the Web host does. A bounded
in-memory recent log (the latest 1,000 delivered messages) is kept only for
session_messages replay and diagnostics; it is not a second delivery queue.
Messages carry sender, target, UUID, and timestamp metadata.

ctx.dshBridge.status(sessionId) reports a session's presentation state:
waking while a cold resume is in flight, archived when the id is in the
workspace registry's archive set, idle/running for live agents, offline
for persisted sessions, and missing otherwise. Archive takes precedence over
live presence: archiving a session hides it from live surfaces (such as
dsh-chat room member indicators) without stopping its agent. Delivery to an
archived session is rejected: session_send and deliverExternal refuse to
wake or reach an archived target, so an archived agent stops receiving messages
entirely rather than merely dropping off live surfaces.

session_send accepts a target session id or its human-readable title. The
optional mode parameter controls interpretation: auto (default) tries the
id first then the title, id accepts an exact known id only, and name
matches titles only. Titles resolve accent-insensitively through the live
sessionTitle service and the persisted projection cache; an unknown name or
an ambiguous title rejects with the candidate ids.

This package intentionally does not implement cross-host transport. dsh-weave
will provide the authenticated network backend while preserving the local
message semantics.

Install

dsh plugin --profile web add dsh-bridge@next

Known Limitations and Deferred Work

  • Process boundary — sessions in another process or host are not visible;
    add an authenticated relay/backend before advertising cross-host delivery.
  • In-memory retention — messages are lost when the plugin process exits and
    older than the latest 1,000 are evicted; durable inbox/outbox persistence is
    still deferred until a cross-process relay needs it.
  • Delivery acknowledgement — the current result means the target was live
    (or successfully resumed) and accepted the follow-up call, not that the target
    model processed it.

Model Experience

None, as session_list, session_send, and session_messages expose their
schemas directly through the tool registry.

KV Cache effect

Independent tool schemas; sending a message changes only the target session's
queued input and does not alter the sender's cached prompt prefix.