Install
openclaw skills install apple-notes-extractorExtract and monitor Apple Notes content for workflow integration. Supports bulk extraction, real-time monitoring, and export to various formats.
openclaw skills install apple-notes-extractorExtract and monitor Apple Notes content for workflow integration with support for bulk extraction, real-time monitoring, and export to various formats.
# Run the installation script
./scripts/setup.sh
# Or manual setup
chmod +x scripts/*.py
pip3 install -r requirements.txt
# Basic extraction (all notes)
python3 scripts/extract-notes.py --method simple
# Full extraction with attachments
python3 scripts/extract-notes.py --method full
# Extract specific folder
python3 scripts/extract-notes.py --folder "Work Notes"
# Output to specific format
python3 scripts/extract-notes.py --format markdown --output ~/notes
# Start monitoring daemon
python3 scripts/monitor-notes.py --daemon
# Single check for changes
python3 scripts/monitor-notes.py --check-once
# Monitor with custom interval (seconds)
python3 scripts/monitor-notes.py --interval 30
# Process extracted notes
python3 scripts/notes-processor.py output/raw -o output/processed
# Export to Obsidian
python3 scripts/export-obsidian.py --vault ~/MyVault
# Generate knowledge graph
python3 scripts/knowledge-graph.py --input output/processed
Edit configs/extractor.json for:
Edit configs/monitor.json for:
| Format | Description | Use Case |
|---|---|---|
json | Structured data with metadata | API integration |
markdown | Human-readable text files | Documentation |
sqlite | Database format | Searchable archive |
obsidian | Obsidian vault format | Knowledge management |
# Quick start - extract all notes to Markdown
python3 scripts/extract-notes.py --format markdown --output ~/extracted-notes
# Monitor and auto-export to Obsidian
python3 scripts/monitor-notes.py --daemon --auto-export obsidian
# Extract work notes with full content
python3 scripts/extract-notes.py --method full --folder "Work Notes" --format json
# Process and create knowledge graph
python3 scripts/extract-notes.py --method full
python3 scripts/notes-processor.py output/raw -o output/processed
python3 scripts/knowledge-graph.py --input output/processed --output knowledge-graph.json
Compatible with:
Common issues:
See README.md for detailed troubleshooting guide.