@dsh-crosstalk/bundle
dsh-crosstalk — cross-session messaging for DSH: any session on the machine can list and message any other, Claude Code-style
AI 分析
核心用途是实现多个独立 AI 会话之间的横向通信与协作。适合需要构建多智能体协同网络、让不同工作区或任务的 AI 相互传递信息的进阶用户。
インストール
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Jesse-njx/dsh-crosstalkドキュメント
README 全文を読む ↗Install
Add the bundle to every profile that should participate (each side of a conversation needs it). From the repo checkout:
git clone https://github.com/Jesse-njx/dsh-crosstalk
cd dsh-crosstalk && pnpm install && pnpm build
dsh plugin --profile web add /path/to/dsh-crosstalk
dsh plugin --profile add /path/to/dsh-crosstalk
(Once the package is published to npm, dsh plugin add @dsh-crosstalk/bundle works the same way.)
That's it. Two terminals (or two repos) running DSH with the bundle installed can now do:
You: list_agents peers
dsh-cowork-amber [idle] — /Users/me/projects/dsh-cowork
dsh-memory-azure [running] — /Users/me/projects/dsh-memory
You: send_message to="dsh-cowork-amber" message="Round-trip check: can you list the files in your repo?" summary="ping for round-trip"
The peer session wakes (or picks it up at its next turn boundary), sees [message from session …], replies with send_message to your name, and its reply wakes you the same way.