为 DeepSeek Harness 的 reasoning 与 answer 单元提供可搜索、可恢复的管理视图,支持类型筛选和批量操作,使用 sidecar 保存隐藏状态并保留原始 Session。
安装
# Release 预构建包
dsh plugin --profile web add "https://github.com/jermaine123123/agent-context-editor/releases/download/v0.1.0-alpha.1/context-editor-deepseek-harness-0.1.1.tgz"
# GitHub 源码(首次需按提示配置 allowBuilds 构建授权后重试)
dsh plugin --profile web add github:jermaine123123/agent-context-editor#path:/adapters/deepseek-harness
装任何插件都等于在你的机器上跑第三方代码,权限和你本人一样大——能读你的文件、用你的凭据、访问网络,工具审批管不到它。GitHub 来源的插件还会在安装时执行构建脚本。请只安装可信来源,并尽量锁定 commit(github:owner/repo#sha)。
README
该插件的 README 只有英文版本。
Agent Context Editor adds a searchable, hideable, and reversible management view for long DeepSeek Harness conversations while preserving the original Session. Long-running Coding Agent sessions accumulate reasoning, older answers, and tool output; this adapter keeps those records available while providing search, type filters, batch selection, hide, restore, and undo in a separate view.
This adapter targets the official DeepSeek Harness Developer Preview commit
47f943859bef60e4160492346772ded9b24f765a0 and installs as one bundle. The
package adds a Context Editor tab beside the normal Chat view for the same
Session; it never creates a second conversation.
Version 0.1.1 supports independent reasoning and answer units: each can
be searched, selected, hidden, restored and persisted separately. The original
Harness Session log and model input are not rewritten. View state is kept in
the context_editor storage-domain sidecar, and hiding currently does not
reduce token usage.
The browser view resolves navigator.languages when it opens: zh-* locales
use Chinese labels and all other locales use English. Only editor controls and
status messages are translated; Session content remains unchanged.
Install the tarball
From this directory, create the package and install the resulting file into a Harness profile:
node ./scripts/build-core.mjs
node ./scripts/build-client.mjs
npm pack --ignore-scripts
dsh plugin --profile <profile> add ./context-editor-deepseek-harness-0.1.1.tgz
On Windows, dsh may not be on PATH even when Harness is installed. Use
the profile's bundled launcher explicitly from PowerShell:
$env:DSH_HOME = '<harness-root>\.dsh'
& '<harness-root>\node_modules\.bin\dsh.cmd' plugin --profile web add '<package-path>\context-editor-deepseek-harness-0.1.1.tgz'
If the launcher reports that pnpm is missing, add the Harness-provided pnpm
directory to PATH for that PowerShell process, or install pnpm before running
the official dsh plugin command. For a same-version replacement, remove the
existing package from the profile before adding the new tarball so pnpm does
not retain an old hard-linked copy.
The supported acceptance command is the official dsh plugin --profile <profile> add <package> flow. During local iteration, a profile may instead
use the package's cordis.patch.yml through the Harness --patch option.
Host boundary
The Host reads complete persisted Session history and projects:
user/message→user;- reasoning and answer blocks from one turn → one
airecord with separate#reasoningand#answereditable units; tool/call+tool/resultbycallId→ onetoolrecord.
Stream chunks, system/request headers, summaries and compaction events do not
become editable records in this phase. Reasoning and answer units can be
selected and hidden independently; old record-level view events remain
compatible. Hide/restore/reset/undo events are
stored in the context_editor storage-domain sidecar, fenced by Session
createdAt/cwd. Session event logs and model input are never rewritten.
Current scope
Search, literal match counts, navigation, filters, placeholders, selection, Shift-selection, persistence and CAS/revision handling are included. While a Session is running the Host remains readable/searchable, while mutations are rejected until the settled log can be projected again. Context exclusion, Tool Output replacement, summaries, token budgets and request rewriting are deliberately deferred to the next phase.
The generated core-runtime.js is bundled from the canonical Core sources in
packages/context-editor-core. Rebuild it after changing Core and run the root
verification command before publishing.
链接
同类插件
zhu1090093659/dsh-web-ui#packages/dsh-web-ui-all★ 4634
DSH Web UI 插件与皮肤合集:任务看板、git 图、右侧面板、远程移动端 UI、桌宠、实时 token 统计与皮肤中心。
omdsh-dev/DSH-better-sidebar★ 2203
侧边栏完整工作台:内置文件渲染编辑、终端、Git 与子代理,支持三方插件注册新 Tab。
ccch1mneyyy/dsh-TUI★ 1996
Claude Code 风格全屏终端 UI:像素鲸鱼顶栏、实时工作状态行、思考流式展开。
omdsh-dev/dsh-at-file★ 391
Codex 风格的 `@file` 文件引用,输入框里直接搜索并引用工作区文件。
omdsh-dev/dsh-genui★ 223
助手回复内渲染交互式 UI 组件:布局、图表、表单、测验、mermaid、3D 场景与回传事件循环。
huiliyi37/dsh-tianshu-tui★ 215
DeepSeek Harness 的终端 UI(TUI)。