一键导入
remind-me-tomorrow
// Capture "remind me tomorrow to X" into a dated memory entry the morning-briefing surface will read back automatically.
// Capture "remind me tomorrow to X" into a dated memory entry the morning-briefing surface will read back automatically.
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.
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.
Rainy-day check-in — inspect the forecast, and if rain is likely today, suggest a cozy indoor plan (playlist, close blinds/windows reminder) without taking destructive action.
| name | remind-me-tomorrow |
| description | Capture "remind me tomorrow to X" into a dated memory entry the morning-briefing surface will read back automatically. |
Trigger on "remind me tomorrow", "remind me in the morning",
"明日", "明日思い出させて", "朝リマインド". Complements the broader
task-manager skill — that one handles generic "remind me to X"
with no time anchor; this skill specifically captures
tomorrow-morning intent into the shape morning_briefing already
knows to read.
remember { text: "[tomorrow] <extracted task>", namespace: "reminders" }.
The [tomorrow] prefix is the contract morning_briefing scans
for; leave it literal and bracket-surrounded.morning_briefing (both the tool and the
MorningBriefingSuggestionRule) look up
search_memory { query: "[tomorrow]" } and read back any hits found
at the top of the daily briefing. After reading, the flow clears each
read reminder via forget to prevent the item re-surfacing the
following day. The skill does NOT need to schedule anything — no
timers, no AlarmManager, no WorkManager. Calendar-like scheduling
belongs to set_timer / set_alarm.
set_alarm or a future
schedule-reminder skill.quiet-hours / hydration-reminder for recurring nudges.forget { query: "[tomorrow]", namespace: "reminders" } and
confirm "Cleared." / "消しました。".