Planner Boards

pending

by Ivan Patakin

Hub dashboard with 5 board modes β€” daily planner, finance tracker, goals, projects, reading log. Calendar sync (ICS), dynamic dashboards, customizable dictionaries and templates.

Updated 13d agoMITDiscovered via Obsidian Unofficial Plugins
View on GitHub

Planner Boards

A universal interactive planner constructor for Obsidian. The daily planner is the core unit; weekly, monthly, and yearly views are dynamic aggregators. Beautiful planner tables with formulas, checkboxes, progress bars, and automatic synchronization.

Version Obsidian


πŸ“¦ Installation

  1. Copy three files into your vault:
    <vault>/.obsidian/plugins/planner-boards/
    β”œβ”€β”€ main.js
    β”œβ”€β”€ styles.css
    └── manifest.json
    
  2. Settings β†’ Community plugins β†’ enable Planner Boards
  3. A πŸ“‹ icon will appear in the left ribbon

πŸ—οΈ Architecture

Hub (main page)

The πŸ“‹ icon in the ribbon opens the Hub β€” a single entry point:

WidgetDescription
πŸ“… CalendarFull month view with ← Today β†’ navigation. Colored dots: 🟒 daily planner exists, 🟠 finance entry exists, πŸ”΅ ICS events. Click a day β†’ opens the board at that date
πŸ“Š WeekMon–Sun table: tasks (3/5), habits (2/4), income, expenses, balance. Summary row. Quick overview of today's tasks and habits
πŸ“‹ BoardsCards for all boards with show-on-main: true. Click β†’ open board

Data is aggregated from all visible boards β€” if you have multiple boards, the hub shows the combined picture.

Board

Each board is a .planner-board file in a folder. It contains 5 independent modes + settings:

ModeNavigationDaily filesDescription
πŸ“… PlannerYear β†’ Month β†’ Week β†’ Dayβœ…Tasks, habits, schedule, wellness, notes. Dashboards at every level
πŸ’° FinanceYear β†’ Month β†’ Week β†’ Dayβœ…Income, expenses (fixed/variable), debts, savings. Dashboards with totals
🎯 GoalsYear β†’ Quarter β†’ Monthβ€”Goal tracker with statuses and progress
πŸš€ ProjectsYear β†’ Quarter β†’ Monthβ€”Project tasks with priorities, assignees, and deadlines
πŸ“– ReadingYear β†’ Quarter β†’ Monthβ€”Books, articles, courses β€” rating, status, notes
βš™οΈ Settingsβ€”β€”General, dictionaries, templates

Navigation hierarchy

Year 2026
β”œβ”€β”€ January
β”‚   β”œβ”€β”€ Week 30.12 β€” 05.01
β”‚   β”‚   β”œβ”€β”€ 2026-01-01 (planner + finance)
β”‚   β”‚   β”œβ”€β”€ 2026-01-02
β”‚   β”‚   └── ...
β”‚   └── Week 06.01 β€” 12.01
β”‚       └── ...
β”œβ”€β”€ February
β”‚   └── ...
└── ...
  • Year / Month / Week β€” dynamic dashboards that aggregate data from daily files
  • Day β€” a daily file (.planner), created manually and filled with data

πŸ“… Planner β€” detailed

Daily planner

Created via the board calendar or the "+ Create day" button. File is saved to:

<board folder>/daily-planner/January 2026/2026-01-15.planner

Contains the following sections:

SectionDescription
Weekly tasksShared tasks with priorities (carried over within the week)
Daily tasksTasks with priorities and checkboxes
HabitsHabit checkboxes (configured via templates)
ScheduleTime slots (08:00, 09:00, …)
WellnessRatings: mood, energy, sleep, water
WorkoutsType, duration, intensity
NotesFree-form text

Dashboards (weekly, monthly, yearly)

Automatically aggregate data from daily files:

  • Task and habit completion percentage
  • Expense / income totals
  • Day heat map
  • Average wellness scores

πŸ’° Finance β€” detailed

Daily finance

File: <board folder>/daily-finance/January 2026/2026-01-15.planner

SectionDescription
IncomeCategory, amount, description
Fixed expensesRent, utilities, subscriptions
Variable expensesGroceries, transport, entertainment
DebtsCreditor, payment, status
SavingsGoal, amount

Records are added via a modal dialog (buttons in section headers).

Finance dashboards

  • Weekly: income/expense table by day, totals
  • Monthly: summary by week, balance
  • Yearly: summary by month, overall trends

🎯 Goals / πŸš€ Projects / πŸ“– Reading

These modes operate at the Year β†’ Quarter β†’ Month level (no daily files).

ModeColumnsActions
GoalsGoal, category, status, progress, deadlineAdd / remove via modal
ProjectsTask, status, priority, assignee, progress, deadlineAdd / remove via modal
ReadingTitle, author, type, status, rating, notesAdd / remove via modal

Dashboards collect statistics: goals achieved, tasks completed, books read.


βš™οΈ Board settings

Opened via the βš™οΈ button in the board header. Three tabs:

General

  • Folders for templates (daily-planner, daily-finance, goal-tracker, …)
  • File naming format

Dictionaries

Dynamic value lists for dropdown fields, grouped by mode:

GroupDictionaries
PlannerCategories, priorities (weekly and daily)
FinanceFixed expenses, variable expenses
GoalsStatuses, categories
ProjectsStatuses, priorities
ReadingStatuses

Dictionary changes apply to new files only β€” existing files are not affected.

Templates

Full editable template previews. You can:

  • Pre-fill the habit table
  • Set up a creditor list for finance
  • Define default project tasks

The default template is inserted when creating a new daily file.


πŸ“… Online calendar sync (ICS)

The plugin can read ICS feeds (Google Calendar, iCloud, Outlook):

  1. Plugin settings β†’ "Calendars" section β†’ add an ICS URL
  2. Assign a color and name for each source
  3. Events auto-refresh (every 30 min by default)

In the hub, ICS events appear as:

  • πŸ”΅ dots on calendar days
  • "Today" / "Tomorrow" lists below the calendar

πŸ“ File structure

My Planner/
β”œβ”€β”€ Planner Board.planner-board      ← board file (settings, dictionaries)
β”œβ”€β”€ daily-planner/
β”‚   β”œβ”€β”€ January 2026/
β”‚   β”‚   β”œβ”€β”€ 2026-01-01.planner
β”‚   β”‚   β”œβ”€β”€ 2026-01-02.planner
β”‚   β”‚   └── ...
β”‚   └── February 2026/
β”‚       └── ...
β”œβ”€β”€ daily-finance/
β”‚   β”œβ”€β”€ January 2026/
β”‚   β”‚   └── 2026-01-01.planner
β”‚   └── ...
β”œβ”€β”€ goals/
β”‚   └── 2026.planner
β”œβ”€β”€ projects/
β”‚   └── 2026.planner
└── reading/
    └── 2026.planner

🎨 Themes

Select the default theme in plugin settings:

ThemeDescription
defaultStandard Obsidian theme
softSoft pastel tones
darkDark high-contrast
minimalMinimalist

🌐 Localization

The plugin is fully translated into Russian and English. Language is selected in plugin settings.


πŸ”§ For developers

Building

npm install
npm run build    # β†’ main.js
npm run dev      # β†’ watch mode

Testing

npm test         # run unit tests
npm run build    # production build
npm run dev      # watch mode

Templates

Templates are TypeScript functions in src/templates/. Each template takes a YAML schema and returns an extended schema with sections and columns.

Available templates:

KeyFileUsed in
daily-plannerdaily-planner.tsPlanner (day)
daily-financedaily-finance.tsFinance (day)
finance-plannerfinance-planner.tsFinance (month)
goal-trackergoal-tracker.tsGoals
project-trackerproject-tracker.tsProjects
reading-logreading-log.tsReading

Code architecture

FileDescription
src/main.tsPlugin entry point, commands, ribbon, view registration
src/planner-view.tsHub / Dashboard β€” main page with calendar and aggregator
src/single-planner-view.tsBoardView β€” main view for .planner-board files (all 5 modes + settings)
src/settings.tsPlugin settings (theme, language, currency, ICS calendars)
src/i18n.tsRussian and English localization
src/calendar/ICS sync, parser, cache
src/templates/Template generators
src/parser/YAML schema parser
src/engine/Table rendering engine
src/renderers/Cell renderers (checkbox, progress bar, multi-select, …)

πŸ“„ License

MIT


πŸ‡·πŸ‡Ί ΠŸΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ русский язык. Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ язык Π² настройках ΠΏΠ»Π°Π³ΠΈΠ½Π°.

For plugin developers

Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.