Skip to main content

schedule-notification

Schedule a notification for a specific date or repeating daily.

설치로 이동

소스 정보

저장소
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에서 보기