一键导入
pomodoro
Classic 25/5 pomodoro cycle — strict 25-minute work blocks, 5-minute rests, and a longer 15-minute rest every fourth cycle.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Classic 25/5 pomodoro cycle — strict 25-minute work blocks, 5-minute rests, and a longer 15-minute rest every fourth cycle.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run shell commands through the user's Termux app when no first-class tool fits — e.g. "git status in my project folder", "list downloads", "run ffmpeg on this file". Only used when the user has opted in under Settings → Advanced → Termux shell access.
Capture "remind me tomorrow to X" into a dated memory entry the morning-briefing surface will read back automatically.
Gentle rest mode for when the user is unwell — dim lights, low volume, quiet hours, and a single hydration reminder every two hours without lecturing.
Finds a misplaced item by searching the user's memory store for prior "I put X in Y" statements; if nothing matches, offers to remember the current location instead.
Quick send-off when the user is leaving — lights out, low-battery reminder, optional weather preview, all inside a single calm sentence.
Warm welcome when the user gets home — lights up the entry, says hi, and recaps the next calendar event plus any urgent notifications in one short line.
| name | pomodoro |
| description | Classic 25/5 pomodoro cycle — strict 25-minute work blocks, 5-minute rests, and a longer 15-minute rest every fourth cycle. |
Trigger on "pomodoro", "start pomodoro", "25 minute timer",
"pomodoro mode", "ポモドーロ". Distinct from focus-mode (an
open-ended deep-work session with lights and volume tweaks) and
stretch-break (a 5-minute standing micro-routine): pomodoro is a
strict cadence of 25-minute work blocks and 5-minute sit-rests,
with a longer 15-minute rest after every fourth work block. No
stretching, no lights, no media changes — just timers and cues.
set_timer with
{ seconds: 1500, label: "pomodoro-work" }. The label scopes the
session so we can cancel it without touching cooking / laundry
timers.broadcast_tts, broadcast_timer, broadcast_announcement.quiet-hours is active, suppress
the voice cue — do not speak, do not bump volume. Still advance
the cycle and schedule the break timer silently; the user opted
into quiet hours, and pomodoro cues must not wake the room.set_timer:
{ seconds: 300, label: "pomodoro-break" }.{ seconds: 900, label: "pomodoro-long-break" }.set_timer with
{ seconds: 1500, label: "pomodoro-work" }. On the cycle after a
long break, reset the cycle counter to 1.stretch-break's job.Trigger on "stop pomodoro", "pomodoro off", "ポモドーロ終了", "もう終わり":
cancel_all_timers scoped to the pomodoro labels
(pomodoro-work, pomodoro-break, pomodoro-long-break) only.
Do NOT cancel unrelated timers — cooking and laundry timers must
survive.If the user enables quiet-hours mid-session, do not auto-cancel
the pomodoro. The per-fire check above handles the suppression. When
quiet-hours ends, the next scheduled cue fires normally — no catch-up
for missed cues.
Do NOT broadcast. Pomodoro is individual. If the user has multiple tablets running, each one tracks its own session.
Use set_volume only if the user explicitly asks for a quieter or
louder cue ("pomodoro quieter", 「ポモドーロ音量下げて」). Never
auto-adjust volume on activation or between cycles.
set_timercancel_all_timersset_volume (only on explicit user request)broadcast_tts, broadcast_timer, broadcast_announcement —
pomodoro is personal, no fan-out