← Back to Skills Marketplace
Countdown Timer - 倒计时助手
by
cp3d1455926-svg
· GitHub ↗
· v1.0.0
· MIT-0
198
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install countdown-timer
Description
提供倒计时管理、重要日子提醒、番茄钟工作休息定时及自定义提醒功能。
README (SKILL.md)
⏱️ Countdown Timer - 倒计时助手\r
\r
触发规则\r
\r 关键词:\r
- 倒计时、还有多少天\r
- 距离 XXX 还有多久\r
- 重要日子、纪念日\r
- 番茄钟、定时\r \r 场景:\r
- 用户想知道距离节日还有多久\r
- 用户需要重要日子提醒\r
- 用户需要番茄钟/定时功能\r \r
功能描述\r
\r
核心功能\r
\r
- 倒计时管理\r
- 添加倒计时\r
- 查看倒计时\r
- 删除倒计时\r \r
- 重要日子\r
- 生日倒计时\r
- 纪念日\r
- 节假日\r \r
- 番茄钟\r
- 25 分钟工作\r
- 5 分钟休息\r
- 自定义时长\r \r
- 定时提醒\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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install countdown-timer - After installation, invoke the skill by name or use
/countdown-timer - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Frequently Asked Questions
What is Countdown Timer - 倒计时助手?
提供倒计时管理、重要日子提醒、番茄钟工作休息定时及自定义提醒功能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 198 downloads so far.
How do I install Countdown Timer - 倒计时助手?
Run "/install countdown-timer" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Countdown Timer - 倒计时助手 free?
Yes, Countdown Timer - 倒计时助手 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Countdown Timer - 倒计时助手 support?
Countdown Timer - 倒计时助手 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Countdown Timer - 倒计时助手?
It is built and maintained by cp3d1455926-svg (@cp3d1455926-svg); the current version is v1.0.0.
More Skills