2026-02-16 07:43:31 -07:00
|
|
|
# Scheduled Tasks Configuration
|
|
|
|
|
# Tasks that require the Agent/LLM to execute
|
|
|
|
|
#
|
|
|
|
|
# Copy this file to scheduled_tasks.yaml and customize with your settings
|
|
|
|
|
# scheduled_tasks.yaml is gitignored to protect personal information
|
2026-02-13 19:06:28 -07:00
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
|
# Morning briefing - sent to Slack/Telegram
|
|
|
|
|
- name: morning-weather
|
|
|
|
|
prompt: |
|
2026-02-16 07:43:31 -07:00
|
|
|
Check the user profile ([username].md) for the location. Use the get_weather tool to fetch current weather.
|
2026-02-13 19:06:28 -07:00
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
Format the report as:
|
2026-02-13 19:06:28 -07:00
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
🌤️ **Weather Report for [Your City]**
|
|
|
|
|
- Current: [current]°F
|
|
|
|
|
- High: [high]°F
|
|
|
|
|
- Low: [low]°F
|
|
|
|
|
- Conditions: [conditions]
|
|
|
|
|
- Recommendation: [brief clothing/activity suggestion]
|
|
|
|
|
|
|
|
|
|
Keep it brief and friendly!
|
2026-02-13 19:06:28 -07:00
|
|
|
schedule: "daily 06:00"
|
|
|
|
|
enabled: true
|
2026-02-16 07:43:31 -07:00
|
|
|
send_to_platform: "telegram" # or "slack"
|
|
|
|
|
send_to_channel: "YOUR_TELEGRAM_USER_ID"
|
2026-02-13 19:06:28 -07:00
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
# Daily Zettelkasten Review
|
|
|
|
|
- name: zettelkasten-daily-review
|
2026-02-13 19:06:28 -07:00
|
|
|
prompt: |
|
2026-02-16 07:43:31 -07:00
|
|
|
Time for your daily zettelkasten review! Help process fleeting notes:
|
2026-02-13 19:06:28 -07:00
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
1. Use search_by_tags to find all notes tagged with "fleeting"
|
|
|
|
|
2. Show the list of fleeting notes
|
|
|
|
|
3. For each note, ask: "Would you like to:
|
|
|
|
|
a) Process this into a permanent note
|
|
|
|
|
b) Keep as fleeting for now
|
|
|
|
|
c) Delete (not useful)"
|
2026-02-13 19:06:28 -07:00
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
Keep it conversational and low-pressure!
|
|
|
|
|
schedule: "daily 20:00"
|
|
|
|
|
enabled: true
|
2026-02-13 19:06:28 -07:00
|
|
|
send_to_platform: "telegram"
|
|
|
|
|
send_to_channel: "YOUR_TELEGRAM_USER_ID"
|
|
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
# Daily API cost report
|
|
|
|
|
- name: daily-cost-report
|
2026-02-13 19:06:28 -07:00
|
|
|
prompt: |
|
2026-02-16 07:43:31 -07:00
|
|
|
Generate a daily API usage and cost report:
|
2026-02-13 19:06:28 -07:00
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
Read the usage_data.json file to get today's API usage statistics.
|
2026-02-13 19:06:28 -07:00
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
Format the report with today's costs, token usage, and budget tracking.
|
|
|
|
|
Warn if cumulative cost exceeds 75% of budget.
|
2026-02-13 19:06:28 -07:00
|
|
|
|
2026-02-16 07:43:31 -07:00
|
|
|
Keep it clear and actionable!
|
|
|
|
|
schedule: "daily 23:00"
|
2026-02-13 19:06:28 -07:00
|
|
|
enabled: false
|
2026-02-16 07:43:31 -07:00
|
|
|
send_to_platform: "telegram"
|
|
|
|
|
send_to_channel: "YOUR_TELEGRAM_USER_ID"
|
2026-02-13 19:06:28 -07:00
|
|
|
|
|
|
|
|
# Configuration notes:
|
|
|
|
|
# - schedule formats:
|
|
|
|
|
# - "hourly" - Every hour on the hour
|
|
|
|
|
# - "daily HH:MM" - Every day at specified time (24h format)
|
|
|
|
|
# - "weekly day HH:MM" - Every week on specified day (mon, tue, wed, thu, fri, sat, sun)
|
|
|
|
|
# - send_to_platform: null = don't send to messaging (only log)
|
|
|
|
|
# - username: Agent memory username to use for this task
|