来源信息
- 仓库
- google-ai-edge/gallery
- 最近来源活动
- 2026年5月13日 21:01
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 24,714
- 分支
- 2,680
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- schedule-notification
- description
- Schedule a notification for a specific date or repeating daily.
# Schedule Notification
## Instructions
To schedule a notification, you must follow these exact steps:
1. First, if the notification doesn't need to repeat daily, call the `run_intent` tool with `intent` as `get_current_date_and_time` and `parameters` as `{}` to get the user's local date and time. Then explicitly calculate the scheduling date and time in your response. Write out:
- Today's exact date.
- The target day or relative time requested by the user (e.g., "tomorrow", "this Friday").
- The exact number of days you need to add to today's date.
- The final calculated dates, ensuring you correctly roll over to the next month or year if the added days exceed the days in the current month.
2. Call the `run_intent` tool with the following exact parameters:
- intent: schedule_notification
- parameters: A JSON string with the following fields:
- title: the title of the notification. String.
- message: the message content of the notification. String.
- hour: the hour of the day (0-23) for the notification. Integer.
- minute: the minute of the hour (0-59) for the notification. Integer.
- task_id: (optional) the task ID for the target page (e.g., "llm_agent_chat"). String.
- model_name: (optional) the model name for the target page (e.g., "Gemma-4-E4B-it"). String.
- deeplink: (optional) the full deeplink URI to open when the notification is tapped. String.
- year: (optional) the year for the notification. Integer.
- month: (optional) the month (1-12) for the notification. Integer.
- day: (optional) the day of the month (1-31) for the notification. Integer.
- repeat_daily: (optional) true if the notification should repeat daily at this time. Boolean.
在 GitHub 查看