Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Reminder Telegram

Lorenzo StrambiLorenzo Strambi206 downloads

Sends Telegram notifications when your tasks reach their deadline.

Add to Obsidian
Reminder Telegram screenshot
  • Overview
  • Scorecard
  • Updates7
Obsidian_plugin

Reminder Telegram

Never miss a deadline again! Get Telegram notifications automatically when your Obsidian tasks are due.

Why This Plugin?

Do you manage tasks in Obsidian but sometimes forget to check them? This plugin bridges the gap between your note-taking and your daily workflow by sending timely Telegram reminders directly to your phone or desktop.

Whether you use YAML frontmatter for structured task management or prefer inline task lists, Reminder Telegram ensures you stay on top of your deadlines without constantly checking Obsidian.

Key Features

  • 📋 YAML Frontmatter Support: Parse tasks from markdown files with structured frontmatter
  • ✅ Inline Task Support: Works with traditional Obsidian task format (- [ ] Task 📅 2024-01-01)
  • 🗂️ Flexible Scanning: Choose to scan your entire vault or a specific folder
  • 📱 Telegram Integration: Instant notifications via Telegram Bot API
  • ⏱️ Configurable Intervals: Check for due tasks every 30 minutes (or your preferred interval)
  • 📦 Multi-task Digest: Get all due tasks in a single organized message
  • 🚫 Duplicate Prevention: Smart tracking to avoid repeated notifications
  • 🔔 Interactive Status Bar: Click the status bar icon to manually check for due tasks
  • ⏰ Status Updates: See when the last check was performed in the status bar
  • 🎨 Customizable Messages: Personalize Telegram notification text with templates and variables
  • 📝 Markdown Support: Enable Telegram Markdown formatting for rich text notifications
  • 📊 Task Sidebar: Dedicated sidebar panel showing overdue, due today, and upcoming tasks at a glance
  • ✨ Enhanced UX: Clickable variable chips, character counters, and live preview

Installation

From Obsidian Community Plugins

  1. Go to Settings → Community plugins → Browse
  2. Search for "Reminder Telegram"
  3. Install and enable the plugin

Manual Installation

  1. Clone this repository or download the latest release
  2. Copy main.js, manifest.json, and styles.css to your vault's .obsidian/plugins/obsidian-reminder-telegram/ folder
  3. Reload Obsidian and enable the plugin in Settings → Community plugins

Usage

Setting Up Telegram

  1. Create a Telegram Bot:

    • Open Telegram and search for @BotFather
    • Send /newbot command
    • Follow instructions to name your bot and get the Bot Token
  2. Get Your Chat ID:

    • Open Telegram and search for @userinfobot
    • Send /start command
    • It will reply with your Chat ID
  3. Configure the Plugin:

    • Go to Settings → Reminder Telegram
    • Enter your Telegram Bot Token
    • Enter your Telegram Chat ID
    • Enable Notifications
    • Set your preferred Check Interval (default: 30 minutes)

Task Formats Supported

YAML Frontmatter (Recommended)

Create markdown files with YAML frontmatter:

---
status: open
priority: normal
scheduled: 2024-12-25
tags:
  - task
---

# My Task
Complete this task by Christmas

Supported Frontmatter Fields:

  • status: open, done, in-progress, completed, cancelled, archived
  • scheduled: Deadline date (ISO format: YYYY-MM-DD or YYYY-MM-DDTHH:MM)
  • due: Alternative deadline field
  • tags: Array of tags (must include task or #task to be recognized)
  • completedDate: If set, task is considered completed

Inline Tasks

Traditional Obsidian task format within any markdown file:

- [ ] Complete project by 📅 2024-12-25
- [ ] Review notes due:: 2024-12-20
- [ ] Meeting scheduled:: 2024-12-15

Supported Date Formats:

  • 📅 YYYY-MM-DD
  • due:: YYYY-MM-DD
  • scheduled:: YYYY-MM-DD
  • starts:: YYYY-MM-DD
  • Plain dates: YYYY-MM-DD, MM/DD/YYYY, DD-MM-YYYY

Scan Configuration

Choose what to scan:

  1. Whole Vault (default): Scans all markdown files in your entire vault
  2. Specific Folder: Scans only files in a specified folder

To use a specific folder:

  • Set Scan Mode to "Specific Folder"
  • Enter the folder path (e.g., Tasks or Meta/TaskNotes/Tasks)

Sidebar

Open the Reminder Telegram sidebar via:

  • The 🔔 bell icon in the left ribbon
  • Command palette → "Toggle sidebar"

The sidebar shows three sections:

  1. Overdue — tasks past their deadline (highlighted in red)
  2. Due Today — tasks due today
  3. Upcoming — tasks due in the next N days (configurable)

Each task row shows:

  • Task description
  • Source file name
  • Relative date (Today, Yesterday, Tomorrow, etc.)

Click any task to open its source file and jump directly to the task line.

Filters:

  • Today — shows only Overdue + Due Today (hides Upcoming)
  • Week — shows all sections with Upcoming limited to next 7 days
  • Tag — intersect with a selected frontmatter tag
  • Clear — removes all filters, showing everything

Commands

Command Description
Check reminders now Manually trigger a deadline check
Send test Telegram notification Verify your Telegram configuration
Toggle sidebar Open/close the task sidebar

Message Template Customization

Customize the content and format of your Telegram notifications with an enhanced editing experience:

Available Template Variables

Multi-task Digest Template (for multiple tasks):

  • {count}: Number of due tasks
  • {tasks}: List of formatted tasks (each using the individual template)

Individual Message Template (for single tasks):

  • {taskName}: Task name/text
  • {fileName}: File name containing the task
  • {deadline}: Task deadline date
  • {filePath}: Full path to the file
  • {taskId}: Unique task identifier

Enhanced Template Editing

The plugin now includes powerful UX improvements for template customization:

Clickable Variable Chips

Instead of manually typing variables, click on the available variable chips to insert them at your cursor position:

  • Multi-task digest: {count}, {tasks} chips
  • Individual template: {taskName}, {fileName}, {deadline}, {filePath}, {taskId} chips

Character Counter

Telegram has a 4096 character limit for messages. The character counter shows:

  • Current character count vs limit
  • Percentage used
  • Warning when approaching 80% of the limit

Live Preview

Enable the "Live preview" setting to see real-time rendering of your templates with sample data:

  • Individual task preview with example content
  • Multi-task digest preview with multiple sample tasks
  • Test notification preview

Markdown Examples

The Markdown formatting toggle now includes examples:

  • *bold* for bold text
  • _italic_ for italic text
  • `code` for monospace text
  • [link](https://example.com) for links

Example Templates

Bulk Notification:

📋 You have {count} pending tasks due today:

{tasks}

Please check your Obsidian vault!

Individual Notification:

🔔 REMINDER: {taskName}
📁 File: {fileName}
📅 Due: {deadline}

Test Notification:

✅ Reminder Telegram plugin is working!
This is a test from your Obsidian vault.

Markdown Formatting

Enable Markdown formatting in settings to use Telegram's Markdown syntax for rich text formatting:

  • *bold* for bold text
  • _italic_ for italic text
  • `code` for monospace text
  • [link](https://example.com) for links

Settings

Setting Type Default Description
Telegram Bot Token string '' Bot token from @BotFather
Telegram Chat ID string '' Your chat ID for notifications
Notifications Enabled boolean true Enable/disable notifications
Check Interval (minutes) number 30 How often to check for due tasks
Scan Mode dropdown whole-vault Scan entire vault or specific folder
Target Folder string '' Folder to scan (when Scan Mode is "Specific Folder")
Multi-task Digest Template string "You have {count} task(s) due:\n\n{tasks}" Template for multiple tasks
Individual Message Template string "Task Reminder\n\nTask: {taskName}\nFile: {fileName}\nDeadline: {deadline}" Template for single tasks
Test Message Template string "Test notification from reminder telegram plugin" Template for test notifications
Live Preview boolean true Show real-time preview of templates
Use Markdown Formatting boolean false Enable Telegram Markdown formatting (examples: bold, italic)
Upcoming Days Ahead number 1 How many days ahead to show in Upcoming sidebar section

Notification Content

Bulk Notification (Multiple Tasks)

⏰ You have X task(s) due:

• Task 1 (2024-01-01) - file1.md
• Task 2 (2024-01-02) - file2.md

Individual Notification

⏰ Task Reminder

📝 Task name
📁 File name
📅 Deadline

Test Notification

✅ Reminder Telegram plugin is working!

This is a test notification from your Obsidian vault.

When Notifications Are Sent

  1. On startup: If periodic checking is enabled
  2. On interval: Every N minutes (configurable)
  3. Manual trigger: Via command palette or status bar

Notifications are sent for tasks that are:

  • Due today
  • Overdue (past deadline)

Completed tasks (status: done or [x]) are skipped.

Future Improvements

Here are some planned enhancements for future versions:

  • Message templates: Customization of Telegram notification text ✅ IMPLEMENTED
  • Enhanced UX: Clickable variables, character counters, and live preview ✅ IMPLEMENTED
  • Task sidebar: Dedicated sidebar with urgency grouping and filters ✅ IMPLEMENTED
  • Advanced filters: Exclude specific folders or patterns from the scan
  • Timezone aware: Explicit time zone management for precise deadlines
  • Recurring support: Recognition of recurring tasks (daily, weekly)
  • Snooze / Postpone: Inline interaction on Telegram to postpone a task
  • Advance notifications: Alert N days before the deadline

Development

Prerequisites

  • Node.js 18+
  • npm

Install Dependencies

npm install

Development Mode (Watch)

npm run dev

Production Build

npm run build

Lint

npm run lint

Contributing

Pull requests are welcome! Please open an issue first for significant changes.

License

This plugin is licensed under the GNU General Public License version 3 (GPLv3). See LICENSE for details.

Credits

  • Inspired by the Obsidian Tasks plugin
  • Built with Obsidian Plugin API
HealthExcellent
ReviewPassed
About
Receive Telegram reminders when your Obsidian tasks become due. Parse tasks from YAML frontmatter or inline lists, scan your vault or a folder, send grouped Telegram messages via Bot API, and prevent duplicate alerts.
TasksIntegrations
Details
Current version
1.0.7
Last updated
Last month
Created
2 months ago
Updates
7 releases
Downloads
206
Compatible with
Obsidian 1.4.0+
Platforms
Desktop, Mobile
License
GPL-3.0
Report bugRequest featureReport plugin
Sponsor
Ko-fi
PayPal
Author
Lorenzo StrambiLorenzo Strambilukather
www.ilgiocatore.net
GitHublukather
Mastodonmastodon.uno
  1. Community
  2. Plugins
  3. Tasks
  4. Reminder Telegram

Related plugins

Todoist Sync

Materialize Todoist tasks within your notes.

Reminder

Manage Markdown TODOs with reminder.

Todoist Board

A Todoist tasks board with sidebar and embedded views. Full 2-way sync.

TaskNotes

Note-based task management with calendar, pomodoro and time-tracking integration.

BRAT

Easily install a beta version of a plugin for testing.

Local REST API with MCP

Unlock your automation needs by interacting with your notes over a secure REST API.

Day Planner

Day planning from a task list in a Markdown note with enhanced time block functionality.

Maps

Adds a map layout to bases so you can display notes as an interactive map view.

Tasks

Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering. Maintained by Clare Macrae and Ilyas Landikov, created by Martin Schenck.

Terminal

Integrate consoles, shells, and terminals.