Founder

Apple Reminders Set From Telegram β€” "Remind Me Friday" and It Just Works

5 sec task creationProductivity & Security4 min read

Key Takeaway

One Telegram message to my AI agent creates an Apple Reminder or Things 3 task β€” synced across every device I own β€” in 5 seconds flat.

The Problem

I live in Telegram. My task management lives in Apple Reminders and Things 3. That's two different apps, two different mental contexts, and a friction tax I pay every single time I need to remember something.

Here's what "just setting a reminder" actually looks like without an agent:

  1. Leave Telegram. Open Reminders.
  2. Tap the plus button.
  3. Type the title.
  4. Tap the date field. Scroll to Friday.
  5. Tap the time field. Set 10:00 AM.
  6. Save. Switch back to Telegram.

One minute. Minimum. And that's if I don't get distracted by whatever else is on my screen. Multiply by 15 tasks a day and you've burned 15 minutes doing data entry that adds zero value.

Things 3 is worse. Project assignment, tags, deadlines β€” each one is another tap. The app is beautiful. Using it as an input mechanism is not.

The real cost isn't the time. It's the context switch. I'm mid-conversation, a task surfaces, and instead of capturing it in flow, I have to break state. Half the time I tell myself "I'll add it later." Later never comes.

The Solution

I message Alfrawd in Telegram. Natural language. Done.

Alfrawd is my master agent running on Mr.Chief. He sits on a Linux gateway, but he has a paired node β€” my Mac. That Mac node can talk to Apple Reminders, Things 3, Notes, anything local. The architecture is simple: Telegram β†’ agent β†’ Mac node β†’ Apple app β†’ syncs everywhere.

No app switching. No date pickers. No friction.

The Process

The setup is a Mac node paired to the Mr.Chief gateway via Tailscale. The agent has allowlisted commands on the Mac, including osascript for AppleScript execution and the Things 3 URL scheme.

When I send a message like:

View details
remind me to call Christophe about Stealth AM on Friday at 10am

Alfrawd parses the intent, extracts the structured data, and routes to the Mac node:

bashShow code
# Agent executes on Mac node (100.75.113.94)
osascript -e '
tell application "Reminders"
    tell list "Reminders"
        set newReminder to make new reminder with properties {
            name: "Call Christophe about Stealth AM",
            due date: date "Friday, March 13, 2026 10:00:00 AM"
        }
    end tell
end tell'

For Things 3, the pattern is similar but uses the URL scheme:

View details
add task: review Bookplayer contract, due Monday, project: Legal

Becomes:

bashShow code
open "things:///add?title=Review%20Bookplayer%20contract&when=2026-03-16&list=Legal"

The agent confirms back in Telegram:

View details
βœ… Reminder set: "Call Christophe about Stealth AM"
   πŸ“… Friday, March 13 at 10:00 AM
   πŸ“± Syncing to all devices

iCloud handles the rest. iPhone, Mac, Apple Watch β€” they all see it within seconds.

The Results

MetricBefore (Manual)After (Agent)
Time to create task45-90 sec5 sec
Context switches2 (leave app, return)0
Tasks captured vs. intended~60% (rest forgotten)~98%
Daily time on task entry~15 min~1 min
Devices syncedSame (iCloud)Same (iCloud)
Works mid-conversationNoYes

The capture rate is the number that matters. I went from forgetting 4 out of 10 tasks to forgetting almost none. Not because I got more disciplined β€” because the friction disappeared.

Try It Yourself

  1. Set up an Mr.Chief gateway with a Mac node paired via Tailscale
  2. Allowlist osascript and open commands on the Mac node
  3. Send natural language task messages to your agent via Telegram
  4. Agent parses intent β†’ routes to Mac β†’ creates reminder/task β†’ confirms

The entire setup takes 20 minutes. The daily time savings compound forever.


Your phone is a capture device, not an input form. Treat it that way.

TelegramApple RemindersThings 3Task ManagementMac Automation

Want results like these?

Start free with your own AI team. No credit card required.

Apple Reminders Set From Telegram β€” "Remind Me Friday" and It Just Works β€” Mr.Chief