원클릭으로
calendar
Launch Calendar - personal scheduling with Apple Calendar sync
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Launch Calendar - personal scheduling with Apple Calendar sync
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
| 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.