MeghanBao/dsh-crumbs0

dsh-crumbs

趣味信息填充插件:在长任务运行的等待时间内展示与主题相关的趣味小知识

AI 分析

核心用途是在 Agent 执行耗时工具(如 Bash 脚本)时,在界面展示趣味科普或问答。适合想要缓解长时间等待焦虑的用户。

包名
dsh-crumbs
版本
0.1.0
许可证
MIT
最近更新
2026年8月22日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:MeghanBao/dsh-crumbs

Configuration

Everything is opt-out with safe defaults.

  • Env: DSH_CRUMBS_DISABLE=1 turns off the automatic long-task surfacing entirely (the /crumb command and crumb tool still work).
  • Per repo: .dsh/crumbs.config.json
{
  "autoSurface": true,   // drip crumbs during long tasks
  "minTaskMs": 8000,     // a task must run this long to qualify
  "intervalMs": 12000,   // gap between crumbs while it keeps running
  "mode": "fact",        // "fact" | "quiz"
  "longTools": ["bash", "shell", "exec", "run"]  // which tool calls count as "long"
}