Quick in-app note-taking with live search. Notes are private to Clyde—separate from Apple Notes. Pinned notes always appear first.
WHAT IT DOES
TRIGGERS
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.