ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pomodoro

Use this skill when a user wants to run timed focus sessions (Pomodoro technique) from the terminal.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/abeljseba/makeovern
Or

Pomodoro Timer

When to use

  • User asks to start a focus session, work timer, or pomodoro.

How it works

Run a 25-minute focus block followed by a 5-minute break. After 4 blocks, take a 15-minute break.

Start a session

echo "🍅 Focus started at $(date +%H:%M)" && sleep 1500 && osascript -e 'display notification "Time for a break!" with title "Pomodoro"' && echo "Break time at $(date +%H:%M)"

Custom duration (minutes)

MINS=15 && echo "Focus: ${MINS}m started at $(date +%H:%M)" && sleep $((MINS * 60)) && echo "Done at $(date +%H:%M)"

Log completed sessions

echo "$(date +%Y-%m-%d) $(date +%H:%M) - 25min focus" >> ~/pomodoro.log

Review today's log

grep "$(date +%Y-%m-%d)" ~/pomodoro.log 2>/dev/null || echo "No sessions today."

Metadata

Author@abeljseba
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-abeljseba-makeovern": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.