name: simplenote description: Integrate with Simplenote for reading, searching, creating, and updating notes. Use when the user wants to manage their Simplenote notes through natural language like "show my notes", "find notes about recipes", "create a note called shopping list", or "update my meeting notes".
Simplenote Skill
Manage your Simplenote notes conversationally.
Natural Language Examples
List/search notes:
- "Show my recent notes"
- "Find notes about project ideas"
- "Search my notes for recipe"
Read a note:
- "Read my shopping list note"
- "Show me the note about meeting notes"
Create notes:
- "Create a note called 'Project Ideas'"
- "Make a new note with my grocery list"
Update notes:
- "Add milk to my shopping list note"
- "Update my meeting notes with action items"
Prerequisites
Environment variables required:
SIMPLENOTE_EMAIL— Your Simplenote account emailSIMPLENOTE_PASSWORD— Your Simplenote account password
Technical Usage
# List recent notes
python3 scripts/simplenote.py list
# Search notes
python3 scripts/simplenote.py list --search "project"
# Read a note by key
python3 scripts/simplenote.py read NOTE_KEY
# Create a new note
python3 scripts/simplenote.py create "Note title" --content "Note body here"
# Update a note
python3 scripts/simplenote.py update NOTE_KEY --content "New content"
# Append to a note
python3 scripts/simplenote.py append NOTE_KEY --content "Additional text"
Output
All commands output JSON for easy parsing.
Notes
- Notes are sorted by most recently modified
- The first line of a note is typically treated as the title by Simplenote
- Deleted notes (in trash) are excluded by default