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.
WHAT IT DOES
TRIGGERS
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.