一键导入
calendar
Manage user schedules (add, update, delete, search).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage user schedules (add, update, delete, search).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage personal finances (income, expense, analytics).
Manage user notes (create, read, update, delete, search).
Convert values between various units (excluding currency).
Scrape data from a specified URL using the scraping tool.
Performs a search or extracts content using the Tavily API.
Get current time information in a specific timezone using Python.
| name | Calendar |
| description | Manage user schedules (add, update, delete, search). |
This skill allows you to manage calendar schedules.
Run the calendar.py script using the bash tool.
Command:
.venv/bin/python scripts/calendar.py '<json_arguments>'
Arguments: The script accepts a single JSON string argument.
Parameters (JSON structure):
action: (Required) add_schedule, update_schedule, delete_schedule, search_by_date, search_by_title, search_by_tags.user_id: (Required) User ID.schedule: (Required for add/update) Object containing title, description, start_time (RFC3339), end_time (RFC3339), tags.schedule_id: (Required for delete).date_range: (Required for search_by_date) Object with start and end.title: (Required for search_by_title).tags: (Required for search_by_tags) List of strings.Examples:
Add Schedule:
Bash Command:
command: .venv/bin/python ~/.myaaw/skills/calendar/scripts/calendar.py '{"action": "add_schedule", "user_id": "u1", "schedule": {"title": "Team Meeting", "description": "Weekly sync", "start_time": "2023-10-27T10:00:00Z", "end_time": "2023-10-27T11:00:00Z", "tags": ["work"]}}'
Search by Date:
Bash Command:
command: .venv/bin/python ~/.myaaw/skills/calendar/scripts/calendar.py '{"action": "search_by_date", "user_id": "u1", "date_range": {"start": "2023-10-27T00:00:00Z", "end": "2023-10-27T23:59:59Z"}}'