원클릭으로
apple-calendar
Apple Calendar.app integration for macOS. CRUD operations for events, search, and multi-calendar support.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Apple Calendar.app integration for macOS. CRUD operations for events, search, and multi-calendar support.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Persistent agent memory that survives across sessions. Store facts, decisions, preferences, and context — recall them later with natural language search. Use this skill when the user wants to: remember something for later, recall past decisions, build persistent context, maintain state across conversations, or says "remember this", "what did we decide about", "save this for next time." Also trigger for any task requiring cross-session persistence, knowledge accumulation, or preference tracking.
AI music prompt templates and best practices for generating music with AI tools like Suno, Udio, Mureka, and others. Use when user needs to create music prompts, song ideas, or wants guidance on writing effective prompts for AI music generation. Includes bilingual prompt templates for various genres, mood descriptors, instrumentation guidance, and lyric writing tips. Also provides techniques for crafting specific musical outcomes and examples of well-structured prompts in Chinese and English.
Search Apple Music, add songs to library, manage playlists, control playback and AirPlay.
Agent memory system with memory graph, context profiles, checkpoint/recover, structured storage, semantic search, and observational memory. Use when: storing/searching memories, preventing context death, graph-aware context retrieval, repairing broken sessions. Don't use when: general file I/O.
Turn raw data into decisions with statistical rigor, proper methodology, and awareness of analytical pitfalls.
Convert between document formats — Markdown to HTML, DOCX to PDF, CSV to JSON, and more. Uses pandoc and Python libraries for reliable, high-quality conversions. Use this skill when the user needs to: convert a file to another format, export a document, change file types, or says "convert this to PDF", "turn this into HTML", "export as CSV." Also trigger for "convert", "export", "pandoc", "format conversion", or when output needs to be in a different format than input.
| name | apple-calendar |
| description | Apple Calendar.app integration for macOS. CRUD operations for events, search, and multi-calendar support. |
| author | G-HunterAi |
| license | MIT |
| version | 1.0.0 |
| tags | ["calendar","macos","scheduling","events"] |
| platforms | ["macos"] |
| category | integration |
| emoji | 📅 |
| metadata | {"clawdbot":{"emoji":"📅","os":["darwin"]}} |
Interact with Calendar.app via AppleScript. Run scripts from: cd {baseDir}
| Command | Usage |
|---|---|
| List calendars | scripts/cal-list.sh |
| List events | scripts/cal-events.sh [days_ahead] [calendar_name] |
| Read event | scripts/cal-read.sh <event-uid> [calendar_name] |
| Create event | scripts/cal-create.sh <calendar> <summary> <start> <end> [location] [description] [allday] [recurrence] |
| Update event | scripts/cal-update.sh <event-uid> [--summary X] [--start X] [--end X] [--location X] [--description X] |
| Delete event | scripts/cal-delete.sh <event-uid> [calendar_name] |
| Search events | scripts/cal-search.sh <query> [days_ahead] [calendar_name] |
YYYY-MM-DD HH:MMYYYY-MM-DD| Pattern | RRULE |
|---|---|
| Daily 10x | FREQ=DAILY;COUNT=10 |
| Weekly M/W/F | FREQ=WEEKLY;BYDAY=MO,WE,FR |
| Monthly 15th | FREQ=MONTHLY;BYMONTHDAY=15 |
UID | Summary | Start | End | AllDay | Location | Calendar| Error | Cause | Solution |
|---|---|---|
Calendar not found | Calendar name doesn't exist or is misspelled | Verify calendar name with cal-list.sh; calendar names are case-sensitive |
UID not found | Event doesn't exist or belongs to different calendar | Confirm event UID with cal-list.sh or cal-search.sh |
Permission denied | Read-only calendar (Birthdays, Holidays) | Use a writable calendar for modifications |