XiaoWind/dsh-btw0

dsh-btw

DeepSeek Harness plugin: a /btw slash command to add notes without interrupting the agent

AI 분석

核心用途是在 Agent 执行任务时安全地追加新信息。适合需要补充上下文但不想打断当前运行步骤的用户,备注会自动排队在下一轮处理。

패키지
dsh-btw
버전
0.1.0
라이선스
MIT
최근 업데이트
2026. 8. 26.

설치

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:XiaoWind/dsh-btw

Usage

CommandResult
/btw Queue a supplementary note (any language) for the agent.
/btw helpShow help.

The note is added as an ordinary user message, so the model treats it as your own words and folds it into the task it is already working on.

Semantics

  • Never interrupts. /btw appends the note to the agent's next-turn queue. If the agent is mid-turn, the running turn completes exactly as it would have, then the note is handled as the next message. If the agent is idle, the note is picked up immediately.
  • Nothing is cancelled or restarted. The note is a continuation, not a new directive. The current objective stays intact.
  • Order preserved. Multiple /btw notes are delivered in the order they were submitted (FIFO).
  • Stateless. There is no persistence: once delivered, a note leaves nothing behind, so a restart never replays an old note.

Configuration

This plugin has no configuration. The acknowledgement it prints simply reflects whether the agent was busy or idle at the moment the note was queued.