Use this skill when a user wants to run timed focus sessions (Pomodoro technique) from the terminal.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill makeovern --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Makeovern?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-makeovern)More formats (shields.io, HTML) on the badges page.
---
name: pomodoro
description: Use this skill when a user wants to run timed focus sessions (Pomodoro technique) from the terminal.
---
# 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
```bash
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)
```bash
MINS=15 && echo "Focus: ${MINS}m started at $(date +%H:%M)" && sleep $((MINS * 60)) && echo "Done at $(date +%H:%M)"
```
## Log completed sessions
```bash
echo "$(date +%Y-%m-%d) $(date +%H:%M) - 25min focus" >> ~/pomodoro.log
```
## Review today's log
```bash
grep "$(date +%Y-%m-%d)" ~/pomodoro.log 2>/dev/null || echo "No sessions today."
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...