Notes

built-in

Quick in-app note-taking with live search. Notes are private to Clyde—separate from Apple Notes. Pinned notes always appear first.

Download Clyde

WHAT IT DOES

  • Save a quick note
  • List all notes (pinned first, then by date)
  • View today's notes
  • Search notes
  • Clear all notes

TRIGGERS

notes / my notesnote: pick up dry cleaningnote buy coffeesave note meeting at 3pmnotes today / today's notesfind note invoicesearch notes meetingclear notes

DATA

local only
// UserDefaults["quickNotes"]
[
  {
    "id": "A1B2C3D4-...",
    "text": "Pick up dry cleaning before 6pm",
    "createdAt": "2026-03-06T10:22:00Z",
    "updatedAt": "2026-03-06T10:22:00Z",
    "isPinned": false
  },
  {
    "id": "E5F6G7H8-...",
    "text": "Meeting notes: align on Q2 roadmap, ship onboarding by end of month",
    "createdAt": "2026-03-05T14:05:00Z",
    "updatedAt": "2026-03-05T14:05:00Z",
    "isPinned": true
  }
]

Notes are stored in UserDefaults under key `quickNotes`. Max 100 notes. Pinned notes are preserved when trimming. Nothing leaves your device.

This is a built-in Clyde command. No installation required—it ships with every copy of the app.