You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
773 B
29 lines
773 B
{ |
|
"name": "google-calendar", |
|
"version": "1.0.0", |
|
"description": "Google Calendar 集成 - 读取和写入用户日程", |
|
"author": "OpenClaw Team", |
|
"enabled": true, |
|
"commands": [ |
|
{ |
|
"name": "calendar", |
|
"description": "日历管理命令", |
|
"handler": "google_calendar.handle_calendar_command", |
|
"usage": "/calendar <today|tomorrow|week|add|delete> [参数]", |
|
"examples": [ |
|
"/calendar today", |
|
"/calendar tomorrow", |
|
"/calendar add 明天 14:00 开会" |
|
] |
|
} |
|
], |
|
"config": { |
|
"credentials_path": "/root/.openclaw/credentials/google-calendar-life.json", |
|
"timezone": "Asia/Shanghai", |
|
"calendar_id": "primary" |
|
}, |
|
"dependencies": [ |
|
"google-auth", |
|
"google-api-python-client" |
|
] |
|
}
|
|
|