返回技能列表

c-timer

daxaur
更新于 2 days ago
5 次查看
143
6
143
在 GitHub 上查看
通信timeralarmpomodorocountdownreminder

关于

c-timer is a CLI utility for setting timers, alarms, and Pomodoro sessions that trigger native macOS notifications. It uses background sleep processes with `terminal-notifier` to deliver alerts, making it ideal for developers needing simple, scriptable time management from the terminal. Use it for quick reminders, break scheduling, or any timed task requiring a system alert.

快速安装

Claude Code

推荐
主要方式
npx skills add daxaur/openpaw -a claude-code
插件命令备选方式
/plugin add https://github.com/daxaur/openpaw
Git 克隆备选方式
git clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-timer

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

Timer — Countdowns & Pomodoro

Set timers and get notified via native macOS notifications. Uses terminal-notifier and background sleep.

Commands

# Simple timer (runs in background)
(sleep 300 && terminal-notifier -title "Timer" -message "5 minutes is up!" -sound default) &

# Timer with custom message
(sleep 1800 && terminal-notifier -title "Timer" -message "Break time!" -sound Glass) &

# Pomodoro (25 min work, 5 min break)
(sleep 1500 && terminal-notifier -title "Pomodoro" -message "Time for a break!" -sound Purr) &

# Quick reminder (with say for audio)
(sleep 60 && say "One minute timer done" && terminal-notifier -title "Timer" -message "1 minute" -sound default) &

Time Conversions

DurationSeconds
1 minute60
5 minutes300
10 minutes600
15 minutes900
25 minutes1500
30 minutes1800
1 hour3600

Notification Sounds

Available: default, Basso, Blow, Bottle, Frog, Funk, Glass, Hero, Morse, Ping, Pop, Purr, Sosumi, Submarine, Tink

Pomodoro Workflow

When the user asks for pomodoro:

  1. Start 25-minute work timer
  2. Notify when work session ends
  3. Start 5-minute break timer
  4. Notify when break ends
  5. Repeat (ask user after 4 cycles if they want a 15-min long break)

Guidelines

  • Always confirm the timer was set with the exact duration
  • Use & to run in background so the terminal stays responsive
  • Default sound: default for timers, Purr for pomodoro
  • If terminal-notifier is not installed, fall back to say command
  • For "remind me in X minutes", treat as a timer
  • Convert natural language: "half hour" = 1800s, "quarter hour" = 900s

GitHub 仓库

daxaur/openpaw
路径: skills/c-timer
0
ai-agentanthropicautomationclaudeclaude-codecli

相关推荐技能

himalaya-email-manager

通信

这个Claude Skill通过Himalaya CLI工具提供IMAP邮箱管理功能,支持使用自然语言查询搜索、总结和删除邮件。它特别适合开发者快速获取每日邮件摘要和执行批量邮件操作,所有功能都通过Python脚本封装,简化了环境配置和命令执行流程。关键特性包括支持富文本表格输出、多文件夹分类处理,以及完整的Unicode字符和表情符号显示。

查看技能

imsg

通信

imsg是一个macOS命令行工具,让开发者能通过终端直接访问和操作iMessage/SMS。它支持查看聊天列表、获取历史记录、实时监控消息以及发送文本和附件。这个工具特别适合需要自动化处理消息或与Messages.app集成的开发工作流。

查看技能

internationalization-i18n

通信

这个Skill为开发者提供全面的国际化(i18n)和本地化实现指南,适用于构建多语言应用和支持国际用户。它涵盖消息提取、翻译管理、复数规则、日期/时间/数字格式化以及RTL语言支持等关键功能,并集成i18next和gettext等主流库。开发者可借助此Skill快速设置本地化工作流,处理语言切换和区域特定格式需求。

查看技能

wacli

通信

wacli是一个通过命令行管理WhatsApp的工具,支持消息同步、搜索和发送。它通过WhatsApp Web协议工作,适用于需要自动化处理WhatsApp消息或与外部系统集成的开发场景。关键功能包括持续同步消息、历史记录检索以及向指定联系人发送文本和文件。

查看技能