← 返回 Skills 市场
cp3d1455926-svg

Countdown Timer - 倒计时助手

作者 cp3d1455926-svg · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
198
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install countdown-timer
功能描述
提供倒计时管理、重要日子提醒、番茄钟工作休息定时及自定义提醒功能。
使用说明 (SKILL.md)

⏱️ Countdown Timer - 倒计时助手\r

\r

触发规则\r

\r 关键词:\r

  • 倒计时、还有多少天\r
  • 距离 XXX 还有多久\r
  • 重要日子、纪念日\r
  • 番茄钟、定时\r \r 场景:\r
  • 用户想知道距离节日还有多久\r
  • 用户需要重要日子提醒\r
  • 用户需要番茄钟/定时功能\r \r

功能描述\r

\r

核心功能\r

\r

  1. 倒计时管理\r
    • 添加倒计时\r
    • 查看倒计时\r
    • 删除倒计时\r \r
  2. 重要日子\r
    • 生日倒计时\r
    • 纪念日\r
    • 节假日\r \r
  3. 番茄钟\r
    • 25 分钟工作\r
    • 5 分钟休息\r
    • 自定义时长\r \r
  4. 定时提醒\r
    • 一次性提醒\r
    • 周期性提醒\r
    • 自定义提醒\r \r

权限需求\r

\r

  • 文件读写(倒计时存储)\r
  • 定时任务(提醒)\r \r

示例对话\r

\r

用户:距离春节还有多少天\r
助手:🎉 **距离春节倒计时**\r
\r
📅 目标日期:2026-01-29\r
⏱️ 剩余:289 天\r
📆 日期:星期四\r
\r
用户:记住我的生日是 5 月 20 日\r
助手:✅ 生日已记录\r
\r
🎂 生日倒计时\r
📅 日期:5 月 20 日\r
⏱️ 距离下次生日:65 天\r
🎉 到时候我会提醒你!\r
\r
用户:添加倒计时:距离发工资还有 10 天\r
助手:✅ 倒计时已添加\r
\r
💰 距离发工资\r
📅 目标:2026-03-26\r
⏱️ 剩余:10 天\r
🔔 提醒:开启\r
\r
用户:我的倒计时列表\r
助手:⏱️ **倒计时列表**\r
\r
1. 💰 发工资 - 10 天 (3/26)\r
2. 🎂 我的生日 - 65 天 (5/20)\r
3. ✈️ 旅行 - 30 天 (4/15)\r
4. 🎄 圣诞节 - 284 天 (12/25)\r
\r
用户:开启番茄钟\r
助手:🍅 **番茄钟已启动**\r
\r
⏱️ 工作:25 分钟\r
💡 提示:专注工作,不要分心!\r
\r
25 分钟后我会提醒你休息~\r
\r
用户:10 分钟后提醒我关火\r
助手:⏰ 定时提醒已设置\r
\r
📝 任务:关火\r
⏱️ 时间:10 分钟后\r
🔔 提醒方式:消息推送\r
```\r
\r
## 数据存储\r
\r
```json\r
// ~/.openclaw/workspace/countdown-timer/countdowns.json\r
{\r
  "countdowns": [\r
    {\r
      "title": "发工资",\r
      "target_date": "2026-03-26",\r
      "icon": "💰",\r
      "reminder": true\r
    },\r
    {\r
      "title": "我的生日",\r
      "target_date": "2026-05-20",\r
      "icon": "🎂",\r
      "yearly": true\r
    }\r
  ]\r
}\r
```\r
\r
## 待办事项\r
\r
- [ ] 倒计时管理\r
- [ ] 重要日子\r
- [ ] 番茄钟\r
- [ ] 定时提醒\r
- [ ] 桌面小部件\r
\r
---\r
\r
**版本:** 1.0.0\r
**创建日期:** 2026-03-16\r
**作者:** 小鬼 👻\r
安全使用建议
This skill appears to be a simple local countdown/timer assistant, but review a few things before installing: - Confirm where data will be stored: SKILL.md claims ~/.openclaw/workspace/..., but the code writes 'countdowns.json' next to the Python file. Decide which location is acceptable and update code or instructions accordingly. - Reminders/notifications are described in the docs but not implemented as network push or system notifications in the provided code. If you expect push notifications or system integrations, ask the author for details or implement a safe notification channel yourself. - The code contains placeholder logic (e.g., add_countdown currently sets a fixed target date), so test with non-critical data first and inspect/modify the code if you want correct parsing/behavior. - Because the source is 'unknown', only grant this skill permission to write within a dedicated directory you control. If you are not comfortable with running included scripts from an unknown author, review the code locally or run it in a sandboxed environment before enabling it for your agent.
功能分析
Type: OpenClaw Skill Name: countdown-timer Version: 1.0.0 The skill bundle provides a simple countdown and Pomodoro timer functionality. The Python code (countdown_timer.py) and instructions (SKILL.md) are well-aligned with the stated purpose, using local JSON storage for data and standard libraries for date calculations, with no evidence of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
Name/description (countdown, reminders, pomodoro) match the provided code and SKILL.md. The declared permissions (file read/write, scheduling) are appropriate for storing countdowns and triggering reminders.
Instruction Scope
SKILL.md instructs storing data under ~/.openclaw/workspace/countdown-timer/countdowns.json and mentions message push reminders, but the included Python code actually reads/writes a 'countdowns.json' located next to the script (Path(__file__).parent). There is also no implementation of push/notification endpoints in the code — reminder behavior is not defined beyond returning text. These are scope/integration mismatches rather than obvious malicious actions.
Install Mechanism
No install spec (instruction-only) and no downloads or package installs. The single Python module is included; nothing in the manifest attempts to fetch remote code or run installers.
Credentials
No environment variables, credentials, or config paths are requested. The only persistent access is to a local JSON file for storing countdowns, which is proportionate to the skill's purpose.
Persistence & Privilege
always:false and no modifications to other skills or global agent config. The skill does request local file persistence for its own data, which is expected for this functionality.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install countdown-timer
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /countdown-timer 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug countdown-timer
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Countdown Timer - 倒计时助手 是什么?

提供倒计时管理、重要日子提醒、番茄钟工作休息定时及自定义提醒功能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 198 次。

如何安装 Countdown Timer - 倒计时助手?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install countdown-timer」即可一键安装,无需额外配置。

Countdown Timer - 倒计时助手 是免费的吗?

是的,Countdown Timer - 倒计时助手 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Countdown Timer - 倒计时助手 支持哪些平台?

Countdown Timer - 倒计时助手 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Countdown Timer - 倒计时助手?

由 cp3d1455926-svg(@cp3d1455926-svg)开发并维护,当前版本 v1.0.0。

💬 留言讨论