Hotkey: extract todos from your clipboard

fulton · copycat ●●○

Copy a message or meeting notes, press a hotkey, get structured action items with deadlines. Schema enforcement means you always get parseable JSON back.

$ fulton --key "cmd+shift+d" --exec \ "copycat read public.utf8-plain-text | llm -m apple \ 'extract todos' --schema-multi '{\"type\":\"object\",\"properties\":{\"task\":{\"type\":\"string\"},\"deadline\":{\"type\":\"string\"}},\"required\":[\"task\"]}'"
{"items":[ {"task":"Finalize the API docs","deadline":"Friday"}, {"task":"Set up the staging environment","deadline":"Wednesday"}, {"task":"Follow up with design team about new icons"}, {"task":"Submit timesheets","deadline":"end of day"} ]}
Requires: fulton, copycat, llm