精选
为什么选中它
待人工精选——以下事实来自源码仓库。
它能做什么
Private DSH Web turn navigation plugin
适合谁
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
风险提示
- 未发现明显风险信号;安装前仍建议查看源码。
Private DSH Web turn navigation plugin
待人工精选——以下事实来自源码仓库。
Private DSH Web turn navigation plugin
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
dsh plugin --profile web add github:vibeinging/dsh-turn-navigator 作者没有声明支持的平台。
It supports keyboard focus, light and dark themes, and reduced-motion preferences. When needed, it loads only enough older history to decide whether the navigator should appear without moving the reader's current position. ## Installation The plugin is private and not published. Its private repository is dsh-external/dsh-turn-navigator, but the repository remains empty until the first reviewed push. Use the local installation path until a reviewed commit is available, then start Web: sh dsh plugin --profile web add -w "/path/to/dsh-turn-navigator" dsh web After the first reviewed commit is pushed, install that exact private revision with: sh dsh plugin --profile web add -w github:dsh-external/dsh-turn-navigator#<reviewed-commit> The checked-in lib/ output installs without rebuilding. A compatible DSH Web version is required. To remove the plugin: sh dsh plugin --profile web remove -w @deepseek-ai/dsh-turn-navigator ## Required DSH Web slot This plugin registers into conversation.chat.navigator; it does not own or render that slot. A compatible DSH Web build must ship the same contract in both the host runtime and the official private client SDK declarations. A plugin-local type augmentation is not a substitute: it could make TypeScript pass while a host that does not render the slot silently shows no navigator. Add the slot in the owning @deepseek-ai/dsh-client-ui-conversation package at these points: 1. In the slot contract, declare a session-scoped single slot whose owner supplies anchored older-history loading, and include it in the chat view's PropsRenderSlots union: ts export interface TurnNavigatorOwnerProps { loadOlder: () => void } interface SlotMap { 'conversation.chat.navigator': { kind: 'single' scope: 'session' owner: TurnNavigatorOwnerProps } } 2. In the chat view registration, claim the child slot with the same kind and scope: ts children: { 'conversation.chat.navigator': { kind: 'single', scope: 'session' }, } 3. In the chat view component, render the slot beside the transcript scroll container and pass the callback that preserves the current reading row while older history is prepended: tsx {renderSlot('conversation.chat.navigator', { loadOlder: loadOlderAnchored })} 4. Cover declaration and disposal, render dispatch, and anchored older-history loading in the host package tests, then publish a matching private SDK version for @deepseek-ai/dsh-client-ui-conversation and its aligned client peers. A source-only host change does not unblock an external plugin that develops only against official registry packages. ## Development and verification The project .npmrc selects the private @deepseek-ai/* scope; pnpm 11 reads its ${NPM_TOKEN} authentication mapping from the trusted user-level ~/.npmrc. The SDK packages are pinned to the reviewed 0.0.1-rc.2 set. Set NPM_TOKEN, install without lifecycle scripts, then run the checks: sh pnpm install --ignore-scripts pnpm run check Do not link a DSH source checkout into this directory. Use pnpm run watch beside dsh web --dev for live browser changes. See compat/ for the isolated assembled Web fixture. ## Model Experience None. The plugin only renders existing conversation data in the browser. #### KV Cache effect None. ## Known Limitations and Deferred Work - The private 0.0.1-rc.2 SDK does not yet declare the required conversation.chat.navigator slot, so the full development check remains blocked until a matching official SDK release. Do not add a local type shim; the installation target must provide the real slot. - Only loaded history receives markers; earlier turns appear after older history is loaded. - Previews show text only.不看 Star,人工一条条挑的。
把 DSH 的 settings.yaml 做成可视化看板:所有已注册的 settings namespace——包括官方界面从未覆盖的第三方插件配置——都渲染成可编辑表单。项目还早,但方向很对:告别手改 YAML。
给 DSH 的 DIY 轨迹可视化:把 agent 的计划与执行画成图,不用翻原始日志也能看清它在干嘛。项目还早,但补上了「一眼看懂 agent 在做什么」这个真实缺口。
从 Claude Code / Codex 把活派给 DSH:在宿主内拉起带分级预设的 DSH agent 会话,看原生子代理进度,还能借它的多模态桥给纯文本的 DSH 补上视觉和生图。编排型插件,把 DSH 变成其他编码 agent 的后端。