Notes

Manage notes, folders, and labels from the terminal. Notes support views, trash, and restore, and organize into folders and colored labels.

Notes

floggy notes list
floggy notes list --view pinned --json
floggy notes get <id>
floggy notes create --title "Idea" --content "raw text"
floggy notes create --title "Quick" --stdin
floggy notes edit <id> --title "New title"
floggy notes search "todo" --limit 10
floggy notes delete <id>           # trashes then permanently deletes
floggy notes restore <id>          # un-trash
floggy notes empty-trash

Note content is stored as a string. The dashboard editor stores serialized Tiptap JSON; passing raw text is also accepted.

notes list --view: all | pinned | archived | trash | recent.

Note folders

floggy folders list
floggy folders create --name "Reading" --icon "📚"
floggy folders edit <id> --name "Reading list"
floggy folders delete <id>

Folders nest at most one level deep.

Note labels

floggy note-labels list
floggy note-labels create --name research --color "#0ea5e9"
floggy note-labels edit <id> --color "#22c55e"
floggy note-labels delete <id>