Pomodoro

built-in

A built-in focus timer with a two-step flow: name what you're working on, then pick a duration. The countdown is always visible—both in the Clyde window and in your macOS menu bar. A notification fires when the session completes. Session history tracks how many focus blocks you've completed today.

Download Clyde

WHAT IT DOES

  • Two-step setup: enter a task name, then choose a duration
  • Preset durations: 25 min, 30 min, 45 min, 1 hour, 90 min—or enter a custom time
  • Live countdown visible in the Clyde window and the macOS menu bar
  • Pause, resume, or end the timer at any time
  • macOS notification when the session completes
  • View session count and history for the day via Pomodoro Status

TRIGGERS

pomodoro / pomo / focuspomodoro start / start focuspomodoro pause / pomo pausepomodoro end / pomo endpomodoro status / pomo status

DATA

local only
// UserDefaults["pomodoroSessions"]
[
  {
    "id": "A1B2C3D4-...",
    "task": "Building Clyde the super app!",
    "duration": 1500,
    "startedAt": "2026-03-09T10:00:00Z",
    "completedAt": "2026-03-09T10:25:00Z"
  },
  {
    "id": "E5F6G7H8-...",
    "task": "Code review",
    "duration": 2700,
    "startedAt": "2026-03-09T10:30:00Z",
    "completedAt": "2026-03-09T11:15:00Z"
  }
]

Session history is stored in UserDefaults under key `pomodoroSessions`. Task names and durations stay on your device. Nothing is sent to a server. No account required.

This is a built-in Clyde command. No installation required—it ships with every copy of the app.