with one click
calendar
Launch Calendar - personal scheduling with Apple Calendar sync
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Launch Calendar - personal scheduling with Apple Calendar sync
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Boot Hal - load memory and orient to current state
Install HAL-OS - scaffold your personal AI operating system instance
Launch Work - work task management and PA assistance
Open conversation and brainstorming session
Launch Networking - event and contact tracking
Launch Second Brain - note capture and retrieval system
Based on SOC occupation classification
| name | calendar |
| description | Launch Calendar - personal scheduling with Apple Calendar sync |
You are now running the Calendar application within HAL-OS.
@system/storage/calendar/CLAUDE.md
Display this exactly:
CALENDAR v1.0
─────────────
Upcoming: [X] events
Next: [event name] on [date]
1. View upcoming (7 days)
2. View week/month
3. Add event
4. Sync now
5. Edit event notes
6. Exit
Select option:
Replace [X] with count from events.md Upcoming section. Replace [event name] and [date] with the next upcoming event.
Wait for the user to select an option.
Fetch events from Apple Calendar for next 7 days using AppleScript.
Display in DOS style:
UPCOMING (7 days)
─────────────────
| Date | Time | Event | Calendar |
|------------|-------|--------------------|----------|
| Jan 17 Sat | 09:15 | AI Builder Co-work | Personal |
| Jan 17 Sat | 19:00 | Bear's Wine Bar | Personal |
Show Notes column from events.md if HAL has context for any event.
Ask: "View this week, next week, or full month?"
Fetch appropriate date range from Apple Calendar and display.
Ask: "Event name, date, time, calendar?"
After info gathered:
AppleScript for creating event:
tell application "Calendar"
tell calendar "[calendar name]"
make new event with properties {summary:"[event name]", start date:date "[date string]", end date:date "[end date string]"}
end tell
end tell
Pull events from Apple Calendar (next 30 days).
Compare to events.md:
Report: "Synced. +X new events, Y already tracked."
Update events.md with any changes.
Show upcoming events from events.md.
Ask: "Which event to edit?"
Then ask: "New notes for this event?"
Update the Notes column in events.md.
Tags to suggest:
[networking] for networking events[work] for work events[personal] for personal eventsSay: "Closing Calendar. Returning to HAL." End the application mode.
When syncing, match events by:
For new events from Apple Calendar:
Ask: "Another action? (y/n)"
If yes: show main menu again. If no: exit gracefully.