MeghanBao/dsh-crumbs0

dsh-crumbs

Fill dead waiting time: while a long task runs, surface one small, true, topic-relevant fun fact — never touching the agent's context or result.

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"
}