> apple-notes-prod-checklist
Production checklist for Apple Notes automation deployments. Trigger: "apple notes production checklist".
curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-prod-checklist?format=md"Apple Notes Production Checklist
Pre-Deployment
- macOS automation permissions granted and tested
- Notes.app configured to launch at login (if needed)
- iCloud sync verified working
- Error handling for all AppleEvent failures
- Throttling configured (1 op/second for writes)
- Exported data permissions restricted (chmod 600)
- Backup strategy for note content documented
- Script tested on target macOS version
Validation
#!/bin/bash
echo "=== Apple Notes Readiness ==="
echo -n "[$(pgrep -x Notes > /dev/null && echo PASS || echo FAIL)] Notes.app running"
echo ""
echo -n "[$(osascript -l JavaScript -e "Application(\"Notes\").defaultAccount.notes.length" 2>/dev/null && echo PASS || echo FAIL)] Notes accessible"
echo ""
echo -n "[$(sw_vers -productVersion | grep -q "^1[3-9]" && echo PASS || echo WARN)] macOS 13+"
echo ""
echo "=== Done ==="
Resources
> related_skills --same-repo
> fathom-cost-tuning
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
> fathom-core-workflow-b
Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".
> fathom-core-workflow-a
Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".
> fathom-common-errors
Diagnose and fix Fathom API errors including auth failures and missing data. Use when API calls fail, transcripts are empty, or webhooks are not firing. Trigger with phrases like "fathom error", "fathom not working", "fathom api failure", "fix fathom".