dsh-btw
DeepSeek Harness plugin: a /btw slash command to add notes without interrupting the agent
AI 분석
核心用途是在 Agent 执行任务时安全地追加新信息。适合需要补充上下文但不想打断当前运行步骤的用户,备注会自动排队在下一轮处理。
설치
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:XiaoWind/dsh-btwUsage
| Command | Result |
|---|---|
/btw | Queue a supplementary note (any language) for the agent. |
/btw help | Show 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.
/btwappends 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
/btwnotes 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.