来源信息
- 仓库
- google-ai-edge/gallery
- 最近来源活动
- 2026年5月7日 20:54
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 24,744
- 分支
- 2,686
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- create-calendar-event
- description
- Create a calendar event.
# Create calendar event
## Instructions
To schedule an event, you must follow these exact steps:
1. First, call the `run_intent` tool with `intent` as `get_current_date_and_time` and `parameters` as `{}` to get the user's local date, time, and the current day of the week.
2. Before creating the event, you must explicitly calculate the exact date in your response. Write out:
- Today's exact date and day of the week.
- 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.
3. Once you have calculated the correct dates, call the `run_intent` tool with the following exact parameters:
- `intent`: create_calendar_event
- `parameters`: A JSON string with the following fields:
- `title`: the title of the event. String.
- `description`: the description of the event. String.
- `begin_time`: the start time of the event in YYYY-MM-DDTHH:MM:SS format. String.
- `end_time`: the end time of the event in YYYY-MM-DDTHH:MM:SS format. String.
在 GitHub 查看