Original Reddit post

I’ve been using claude code as my main dev environment for a while now. one thing that kept bugging me. I’d be mid conversation, realize “oh shit i need to update that API by friday”, and have literally no way to capture it without alt-tabbing to some notes app. So i built a CLI called remind. it’s an MCP server. You add one line to settings.json and claude gets 15 tools for reminders. not just “add reminder” and “list” though. stuff like: “what’s overdue?” -> pulls all overdue items “give me a summary” -> shows counts by priority, by project, what’s due today “snooze #12 by 2 hours” -> pushes it back “mark #3, #5, #7 as done” -> bulk complete The one that’s kind of wild is agent reminders. You say “at 3am, run the test suite and fix anything that fails” and it actually schedules a claude code session that fires autonomously at that time. your AI literally works while you sleep. (uses --dangerously-skip-permissions so yeah, know what you’re doing) It’s a python cli, sqlite locally, notifications with escalating nudges if you ignore them. free, no account needed. uv tool install remind-cli Curious what other claude code users think. what tools would you actually use day to day if your AI could manage your tasks? BTW: This project’s development was aided by claude code submitted by /u/StudioQuiet7064

Originally posted by u/StudioQuiet7064 on r/ClaudeCode