DeepSeek Harness plugin

dsh-pomodoro-guozede1

番茄时钟:25/5 标准番茄工作法倒计时(开始/状态/暂停重置),纯本地计时零依赖

Jump to install

Source facts

Repository
guozede12593312/dsh-pomodoro
Latest update
Aug 20, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/guozede12593312/dsh-pomodoro
Plugin: dsh-pomodoro-guozede1
Author: guozede12593312

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-pomodoro

> 为 DSH 用户在对话/编码时提供专注计时,靠 25/5 标准番茄循环倒计时(开始 / 状态 / 暂停重置)

为什么需要它

在 DSH 里写代码、长对话一坐就是几小时。想用番茄工作法保持节奏时,往往要切到手机或浏览器计时,打断心流。dsh-pomodoro 把计时做进对话里:一句话开始,随时问「还剩多久」,模型直接告诉你。纯本地计时、零依赖、零构建。

安装

dsh plugin --profile <your-profile> add https://github.com/guozede12593312/dsh-pomodoro

<your-profile> 替换为你的 profile 名(如 demo / web)。

工具清单

工具功能参数
pomodoro_start开始/继续番茄钟focus_minutes(默认 25)、break_minutes(默认 5)
pomodoro_status查询状态与剩余时间
pomodoro_control暂停/重置action(pause / reset)

使用示例

  • 用户:帮我开始一个 25 分钟的番茄钟 → pomodoro_start 返回 { status: "running", phase: "focus", remainingClock: "25:00" }
  • 用户:还剩多久?→ pomodoro_status 返回当前阶段与剩余倒计时
  • 用户:暂停 / 重置 → pomodoro_control 冻结剩余时间或归零

技术设计

  • 无构建纯 JS:lib.js 纯函数(状态机 + 时间计算)+ index.js 薄壳注册,GitHub 安装零构建
  • 内存态计时:实例重启清零(基础版;跨会话历史留待后续版本)
  • 单测:npm install && node --test

版本

  • v0.1.0:首发,25/5 标准循环 + 开始 / 状态 / 暂停 / 重置