llluchy/dsh-hive
llluchy★ 0TypeScript最后同步: 2026-08-16
—
README 摘要
dsh-hive Turn DeepSeek Harness conversations into a hive: one conversation can send a task straight into another conversation, wake it up, and get the result back automatically — peer-to-peer conversations, not subagents. This is a plugin for DeepSeek Harness that exposes two model-facing tools: - list sessions — list the conversations that are currently live in this process (id + status + cwd), so you can discover a target session id. - send to session — deliver a text message directly into another conversation and wake it. The target conversation starts a new turn immediately, in its own independent context. Why not subagents? DeepSeek Harness ships with a subagent system: a parent conversation forks a child agent that shares its context and dies when the task ends. dsh-hive solves the opposite need: multiple independent, long-lived top-level conversations (each with its own context, tools, and history) that call each other directly, like colleagues. Typical flow: a "coordinator" conversation breaks work into subtasks and sends each one to a "worker" conversation via send to session . Each worker works in its own context — which can be long and messy without polluting the coordin…
在 GitHub 查看完整 README →