ワンクリックで
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"}}'