편집자 노트

待办新鲜度守护

Problem it solves: During long agent turns, the model may keep calling tools without updating its unfinished todo write list. The visible plan then stops matching the work actually being done.

이것은 DeepSeek Harness(DSH) 플러그인입니다. 이 사이트는 GitHub README, 설치 정보, 유지보수 상태, 공개 보안 시그널을 모아 보여줍니다.

DSH Todo Freshness Guard|DSH 待办新鲜度守卫

English | 简体中文

Problem it solves: During long agent turns, the model may keep calling tools without updating its unfinished todo_write list. The visible plan then stops matching the work actually being done.

Most painful failure: The agent is still active, but the user is looking at stale status—completed work still appears pending, new blockers are missing, and the next step is unclear. This removes progress visibility exactly when a long task needs it most.

How it fixes it: This out-of-tree DeepSeek Harness Guard reminds the model to reconcile the complete Todo list, then blocks ordinary tools if the list remains stale. todo_write and the outer run_code recovery path always remain available.

解决的问题:Agent 在长任务中可能持续调用工具,却不更新未完成的 todo_write 列表,导致用户看到的计划与真实执行状态脱节。

最痛的问题:Agent 明明还在运行,用户看到的却是过期状态——已完成事项仍显示未完成,新阻塞没有记录,下一步也无法判断。任务越长,进度越不可信。

DSH Todo Freshness Guard keeps long-running task progress visible

Behavior

After a successful todo_write contains unfinished items, the Guard counts non-bookkeeping tool attempts for that Session:

  • At reminderAfterCalls, it injects one model-visible reminder to reconcile the complete todo list.
  • After blockAfterCalls, it denies ordinary tools until another complete todo_write replaces the list.
  • Native calls and Code Mode SDK sub-dispatches share the counter.
  • todo_write always remains reachable.
  • The outer run_code transport remains reachable so Code Mode can call todo_write.
  • A completed or empty todo list disables enforcement.

This plugin fixes stale todo_write state. It does not replace or patch the filesystem Write tool.

Compatibility

  • DeepSeek Harness: 0.1.0-rc.6
  • Node.js: ^22.19.0 || >=24.0.0
  • Package status: community preview

Install

Install the compatible DSH CLI, then add the release archive to the profile that should enforce the Guard:

npm install --global @deepseek-ai/dsh@0.1.0-rc.6
dsh plugin --profile web add https://github.com/lamost423/dsh-todo-freshness-guard/releases/download/v0.1.1/dsh-todo-freshness-guard-0.1.1.tgz
dsh web

To install from a checkout instead:

git clone https://github.com/lamost423/dsh-todo-freshness-guard.git
cd dsh-todo-freshness-guard
corepack enable
pnpm install --frozen-lockfile
pnpm build
dsh plugin --profile web add .
dsh web

The package contributes this default patch layer:

- insert:
    - id: todo-freshness-guard
      name: dsh-todo-freshness-guard
      config:
        reminderAfterCalls: 5
        blockAfterCalls: 8

Profile and command-line patch layers applied after this bundle may replace the row configuration. blockAfterCalls must be an integer greater than reminderAfterCalls; both values must be positive integers.

Remove it with:

dsh plugin --profile web remove dsh-todo-freshness-guard

Verify

pnpm check
pnpm pack --pack-destination /tmp

The test suite covers the native and Code Mode policies, concurrent resets, Loader composition, the packed Bundle contract, and an actual Web startup through official DSH 0.1.0-rc.6.

License

MIT. Derived portions retain the DeepSeek Harness license; see NOTICE.

REPOSITORY SIGNALS

보안 및 설치 증거

이 점수는 공개 저장소 메타데이터와 이 사이트에 등록된 설치 증거에만 기반하며, 코드 보안 감사와 다릅니다.

출처 추적 가능

공개 플러그인 카탈로그에서 왔으며, 공개 GitHub 저장소로 연결됩니다.

라이선스

저장소가 MIT 라이선스를 선언했습니다.

유지보수 활동

최근 180일 내 코드 업데이트가 있습니다.

설치 증거

재현 가능한 정확한 설치 메타데이터가 아직 등록되지 않았습니다. 저장소 설명에 따라 직접 확인하세요.

설치 라이프사이클 스크립트

검사한 패키지 메타데이터에 설치 라이프사이클 스크립트가 선언되지 않았습니다.