com um clique
com um clique
Lock In Mode — orchestrate distraction blocking, environment setup, and session tracking.
OpenPaw coordinator — routes requests to skills, manages memory, knows what's installed. Use /c for any task.
System clipboard — copy, paste, transform content between clipboard and files.
macOS Contacts — search, list, and look up contact details via AppleScript.
Weather forecasts and conditions — current, hourly, multi-day. No API key needed.
Persistent memory across Claude Code sessions — remember facts, preferences, and context
| name | c-timer |
| description | Timers, alarms, and pomodoro — set countdowns with native notifications. |
| tags | ["timer","alarm","pomodoro","countdown","reminder"] |
Set timers and get notified via native macOS notifications. Uses terminal-notifier and background sleep.
# 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) &
| Duration | Seconds |
|---|---|
| 1 minute | 60 |
| 5 minutes | 300 |
| 10 minutes | 600 |
| 15 minutes | 900 |
| 25 minutes | 1500 |
| 30 minutes | 1800 |
| 1 hour | 3600 |
Available: default, Basso, Blow, Bottle, Frog, Funk, Glass, Hero, Morse, Ping, Pop, Purr, Sosumi, Submarine, Tink
When the user asks for pomodoro:
& to run in background so the terminal stays responsivedefault for timers, Purr for pomodoroterminal-notifier is not installed, fall back to say command