dsh-btw
提供 `/btw` 斜杠命令的 DSH 插件,允许在不中断 Agent 运行的情况下追加补充备注。
AI 分析
核心用途是在 Agent 执行任务时安全地追加新信息。适合需要补充上下文但不想打断当前运行步骤的用户,备注会自动排队在下一轮处理。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:XiaoWind/dsh-btw说明文档
阅读完整 README ↗Usage
| 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.