Agent skill
calendar-setup
Grant Python calendar access for 30x faster calendar queries (30s → <1s)
Install this agent skill to your Project
npx add-skill https://github.com/davekilleen/Dex/tree/main/.claude/skills/calendar-setup
SKILL.md
Calendar Setup - Enable Fast Queries
Purpose: Grant Python calendar access for 30x faster calendar queries (30s → <1s)
When to run:
- After initial Dex installation
- If calendar queries feel slow
- If you see "Calendar access denied" errors
Process
-
Check current permission status:
- Run the permission checker:
python3 core/mcp/scripts/check_calendar_permission.py - Show the user what status was returned
- Run the permission checker:
-
If Already Authorized:
- Great! Calendar queries are already optimized.
- No action needed.
-
If NotDetermined (permission not yet requested):
- The script will show a macOS permission dialog
- Guide user: "Click 'OK' when the dialog appears to grant Python access to Calendar"
- Run the script again to verify
-
If Denied (previously rejected):
- Show clear instructions:
To enable fast calendar queries: 1. Open System Settings (Command+Space, type "System Settings") 2. Click "Privacy & Security" in the sidebar 3. Click "Calendars" 4. Find "Python" or "python3" in the list 5. Enable the checkbox 6. Run `/calendar-setup` again to verify
- Show clear instructions:
-
If Restricted:
- Explain: "Calendar access is blocked by system policies (parental controls or enterprise MDM)"
- Calendar queries will use AppleScript (slower but functional)
- No user action possible
-
After Success:
- Confirm: "✅ Calendar access granted! Queries are now 30x faster."
- Explain: "Calendar queries now use native EventKit instead of AppleScript"
- No need to run this again - permission is persistent
Technical Notes
- EventKit vs AppleScript: EventKit uses database queries (fast), AppleScript loads all events then filters (slow)
- Permission is persistent: Once granted, Python keeps access until explicitly revoked
- Privacy: All calendar data stays local - Dex never sends calendar data anywhere
- Fallback: If EventKit isn't available, Dex falls back to AppleScript (works but slower)
Troubleshooting
"Module EventKit not found":
- Run:
pip3 install pyobjc-framework-EventKit - This should have been installed during Dex setup
Permission dialog doesn't appear:
- System Settings might already show "Denied" from a previous attempt
- Follow the manual steps above to toggle permission on
Still seeing slow queries after granting access:
- Restart your coding harness (Cursor/Claude Code/Pi) to reload MCP server
- Verify permission:
python3 core/mcp/scripts/check_calendar_permission.py
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
getting-started
Interactive post-onboarding tour with adaptive pathways based on available data
industry-truths
Define time-horizoned assumptions about your industry/domain that ground strategic thinking and prevent building on quicksand
process-meetings
Process synced Granola meetings to update person pages, extract tasks, and organize meeting notes
pi-tools
View and manage Pi-built extensions synced to Dex. Shows available tools, commands, and sync status.
pi
Route tasks to Pi for comparison testing. Toggle Pi mode or run specific commands through Pi.
commitment-extractor
Extract and track commitments from meeting notes - who promised what to whom, with deadlines and status tracking.
Didn't find tool you were looking for?