원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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.
SOC 직업 분류 기준
| 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"}}'