Remember Calendar
SkillDocs & knowledgeImport calendar events and scheduling commitments into persistent memory. Configure a calendar MCP for live sync.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Remember Calendar skill
What this skill tells your AI
The instructions your AI receives, as published by markmhendrickson/neotoma in skills/remember-calendar/SKILL.md and read by ahel’s review.
Import calendar events into Neotoma memory — either from a live calendar MCP or from ICS file exports. Extracts scheduling commitments, attendees, and recurring patterns.
When to use
When the user wants to persist calendar events, scheduling commitments, and associated contacts into durable memory.
Prerequisites
Run the ensure-neotoma skill first if Neotoma is not yet installed or configured in your current harness.
Supported sources
| Source | Format | Method |
|---|---|---|
| Google Calendar | Live API | Google Calendar MCP |
| Apple Calendar | ICS export | File read |
| Outlook | ICS export | File read |
| Any calendar | .ics files | File read |
Workflow
Phase 0: Verify Neotoma
Confirm Neotoma MCP is connected (call get_session_identity).
Phase 1: Identify source
- Check if a calendar MCP is configured (e.g.
list_eventstool available). - If no MCP, ask the user for an ICS file path.
- For MCP: ask for a time range (default: past 30 days + next 30 days).
- For ICS: read the file to determine the date range available.
Phase 2: Retrieve and preview
- Calendar MCP: use
list_eventsto retrieve events in the specified range. - ICS file: parse the iCalendar format to extract events.
- Present a preview: event count, date range, recurring vs one-time, top attendees.
- Ask for confirmation.
Phase 3: Extract entities
For each event:
- Event: create an
evententity withtitle,start_time,end_time,location,description,recurrence. - Contacts: extract attendees as
contactentities (deduplicate against existing contacts). - Tasks: for events with action-oriented titles or descriptions, create associated tasks.
- Places: extract locations as
placeentities when they are specific venues.
For MCP sources, hydrate via the detail endpoint (get_event) before persisting, and set data_source per event with the event ID.
Phase 4: Store with provenance
- For MCP-sourced events: set
data_sourceper entity with the calendar event ID. - For ICS files: use the combined store path (entities + file_path) to preserve the raw ICS.
- Batch REFERS_TO relationships from events to attendee contacts.
Phase 5: Report results
Summarize:
- Events imported (count, date range)
- Contacts extracted
- Upcoming commitments highlighted
- Offer to set up recurring sync or import a different date range.
Do not
- Import without user confirmation.
- Create duplicate events — check by title + start_time before storing.
- Create duplicate contacts — deduplicate by email first.
Signals
- GitHub stars
- 32
- Forks
- 3
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
remember-calendar- Source
- github.com/markmhendrickson/neotoma