feat: task reminders via ntfy/signal/email/SMS #44
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
track:api
track:auto
track:core
track:deploy
track:infra
track:ui
v0.1.0
v0.1.1
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/delta#44
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
No way to get reminded about upcoming task deadlines. Self-hosted setup means we have full control over notification infrastructure.
Proposed Solution
Schema
New
reminderstable:taskId,channel,beforeMin,sentAt. Tracks which reminders have fired to avoid duplicates.Channels (priority order)
signal-cli(nix package exists). Requires phone number registration. More brittle but messages land in Signal directly.notify-sendon VPS (limited use).UX
In task detail, below due date: multi-select channel toggles + timing dropdown (30m, 1h, 1d, custom). Multiple reminders per task supported.
Implementation
reminderin automation frameworkdue - beforeMin <= now AND sentAt IS NULLNTFY_TOPIC,SMTP_HOST,SIGNAL_NUMBER)src/core/channels/Superseded by #189 and the current reminder architecture. The original proposal no longer matches the implemented design: reminders are now a first-class task subsystem with adapter-based delivery, and active remaining work is tracked in #200, #201, #202, #203, and #204.