name: jpeng-calendar-sync description: "Calendar synchronization skill. Sync events between Google Calendar, Outlook, and local storage. Supports CRUD operations and reminders." version: "1.0.0" author: "jpeng" tags: ["calendar", "google", "outlook", "scheduling", "events"]
Synchronize calendar events across Google Calendar, Outlook, and local storage.
# Google Calendar
export GOOGLE_CLIENT_ID="xxx"
export GOOGLE_CLIENT_SECRET="xxx"
export GOOGLE_REDIRECT_URI="http://localhost:8080/callback"
# Microsoft Outlook
export OUTLOOK_CLIENT_ID="xxx"
export OUTLOOK_CLIENT_SECRET="xxx"
python3 scripts/calendar.py list --days 7
python3 scripts/calendar.py add \
--title "Team Meeting" \
--start "2024-01-15T10:00:00" \
--end "2024-01-15T11:00:00" \
--description "Weekly sync" \
--reminder 15
python3 scripts/calendar.py delete --event-id "xxx"
python3 scripts/calendar.py available \
--date "2024-01-15" \
--duration 60
{
"success": true,
"event_id": "evt_xxx",
"calendar_link": "https://calendar.google.com/..."
}
这个日历同步工具文档写得比较清晰,但对于普通用户来说,目前只是"纸上谈兵"——文档提到的功能都需要代码才能用,但现在根本没有代码文件。质量评级:中等偏下。主要问题是文档与实际实现完全脱节,想用却用不了。建议等有完整代码的版本再考虑使用。"}