一键导入
travel-mode
Leaving home for a trip — turn off every light, pause media, cancel timers, optional away-style briefing, broadcast a goodbye to other speakers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Leaving home for a trip — turn off every light, pause media, cancel timers, optional away-style briefing, broadcast a goodbye to other speakers.
用 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 | travel-mode |
| description | Leaving home for a trip — turn off every light, pause media, cancel timers, optional away-style briefing, broadcast a goodbye to other speakers. |
Trigger on "travel mode", "I'm going on a trip", "starting a vacation",
"旅行モード", "出かける / 旅行に行く" when the context suggests
multi-day absence (rather than a short errand — that's leave_home).
get_forecast with that location
so we can speak a 3-day outlook.execute_command {device_type:"light", action:"turn_off"}
for every light; don't just run leave_home because that keeps
front-door lighting on a timer for short absences.execute_command action:"media_pause".cancel_all_timers — no alarms firing in an empty house.broadcast_tts with
{ text: "Travel mode — see you soon." } so other rooms' speakers
announce the house is going quiet. Skip cleanly when multi-room is
off or the secret is missing.Trigger on "I'm back", "we're home from the trip", "帰ってきた":
arrive_home composite (lights on, volume 50).list_notifications for today, spoken
headline count; get_weather for today.get_forecastexecute_command (lights + media_player)cancel_all_timersbroadcast_tts (optional)arrive_home (on return)list_notifications / get_weather (on return)