Wiki Companion

by Mo A
5
4
3
2
1
Score: 50/100

Description

The Bureau plugin turns tagged notes into a connected planning system with calendar, task, reminder, finance, time tracking, posts and contacts views. It reads frontmatter and tags from ordinary markdown notes, projects repeating meetings, events, reminders and tasks from a single source note, and lets you edit dates, times, status, priority, client and reminder lead time from shared dialogs. The calendar supports month, week and day layouts with drag based rescheduling and duration resizing on desktop, while the task board supports column moves and bulk actions. Finance tracks subscriptions, one off expenses, income and invoices, and time tracking covers running timers, manual entries, reports and unbilled work. It also renders a companion dashboard code block inside notes and keeps invoices, clients and service packages tied to their configured folders.

Reviews

No reviews yet.

Stats

0
stars
173
downloads
0
forks
6
days
0
days
0
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
29
commits

README file from

Github

Bureau

Run the admin side of a freelance practice from your own notes: calendar, tasks, reminders, time tracking, invoicing, finances, content and contacts — all read from the plain tags and dates you're already writing.

No new format to adopt, no separate database, no account, no network calls. A note tagged task with a date: shows up on the board and the calendar. Start a timer and it writes its own note. Generate an invoice and it reads back the hours you tracked, then chases the payment for you. Any tab you don't want, switch off in settings.

Tab What it does
Calendar Month, week and day views over every dated note. Drag to reschedule, drag an edge to resize, double-click a slot to create. Repeating events with per-occurrence edit, skip and delete.
Tasks Kanban board and list view grouped by status:, with priorities, checklist progress, drag between columns and bulk actions on a selection.
Reminders Everything dated and due, grouped by urgency, with repeats, snooze and advance desktop notifications.
Finance Subscriptions, expenses, income and invoices, each foldable, filterable and totalled per currency.
Time A live timer in the status bar, a day-by-day log, and a report filterable by client and date range. Unbilled hours priced against each client's rate.
Posts A gallery for blog and social drafts, from idea through to published, with cover images pulled from the note itself.
Contacts Everyone you work with, by type, company and role.
Daily note A one-line code block that embeds a live summary: running timer, today, overdue, due this week.

Every edit writes back exactly the fields that one action changes, on that one note. Deletes go to Obsidian's own trash, never anywhere permanent.

Built and maintained by a one-person planning consultancy. I use it every working day, which is mostly why it keeps getting better.

Why

Most calendar and task plugins ask you to manage events or tasks inside the plugin itself, or to adopt a particular format. Bureau is the opposite: it assumes your notes are already the source of truth, and just gives you views over them, with light editing where it's genuinely useful. It's kept deliberately small and open-sourced so anyone can install it cleanly and check exactly what it does.

What it reads

Any markdown note with:

  • tags: including one of meeting, reminder, task, event, invoice, time, post
  • date: as a Date & time property (YYYY-MM-DD also still parses, for compatibility) — a task note without a date still appears on the task board, just without one on its card
  • end: (same Date & time shape), optional, on a Meeting/Reminder/Task/Event/Invoice — gives it a duration, shown as a sized block on the Week/Day calendar grid instead of a single pill
  • recur: (daily/weekly/monthly/yearly/biennial), optional, on a Meeting/Reminder/Task/Event — makes it a repeating series, projected forward on the calendar from its one real note (see Repeating events below)
  • priority: (low/medium/high), optional, on a Task — set from the shared editor when creating or editing, or by clicking the priority dot on its card
  • amount: and currency:, on an Invoice — written automatically when Bureau generates the invoice; the Finance tab's Invoiced total reads these rather than parsing the figure back out of the invoice body
  • cost: (a number, per period) on a Reminder — combined with recur: this is a Subscription; on its own, without recur:, it's a one-off Expense. Optional on a plain Reminder, but required once Subscription, Expense or Income is picked from the type dropdown — the shared editor won't let you save without one, since none of those three mean anything without a figure attached. Shows up in the Finance tab, not just the calendar.
  • currency: (an ISO 4217 code, e.g. USD), optional, on a Reminder — alongside cost:, picks which currency that Subscription/Expense/Income figure is in, from the full list of world currencies. Omitted means GBP, so every note created before this field existed keeps working unchanged. Displayed as a bare £//¥ for those three currencies, or as CODE amount (e.g. USD 25.00) for everything else, since a bare $ alone is ambiguous across the many currencies that share it.
  • invoiceReminder: true, optional, on a repeating Reminder — shows it with the same pill colour as an Invoice, as a nudge to go generate one that day; it doesn't create an invoice itself
  • income: true, optional, on a Reminder — flips it from an outgoing cost to incoming money in the Finance tab. Combine with recur: for a recurring income source (a monthly payout, say); leave recur: unset for a one-off entry recording money already received. Uses the same currency: field as cost:, GBP by default.
  • remind: (9am/1d/1w/1m), optional, on a Meeting/Reminder/Task/Event — an advance desktop notification (9am on the item's own date, or 1 day/week/month ahead of it), set per item via the shared editor's "Remind" field. Fires regardless of the "Notify when something starts" setting -- it's opted into per item, not gated by that toggle.
  • Any note tagged post with a published: date — shown on the calendar as its own category, pinned to that date. Bureau can create a new Post idea note (see What it writes below) but never edits or deletes an existing one -- clicking one just opens it, and the content workflow itself stays entirely outside the plugin. A Post without a published: date yet (an Idea or an in-progress draft) has nothing to plot, unless it also carries a scheduled: target date -- that earns a dashed, faded pin on that date instead (same look as a projected recurring occurrence), and a desktop notification on the day itself asking whether it's gone out. Fill in published: by hand once it has, and the provisional pin is simply replaced by a real one.
  • For the client dropdown in the Start Timer prompt (and the Meeting/invoice client fields): any note tagged client — its filename is what shows up as an option. No client-tagged notes yet means an empty dropdown, not an error; you can still type a client name freely.

Optionally, a status: field is shown alongside the note's type in the calendar's agenda panel, and drives the task board's three columns.

Notes without one of those tags are ignored — Bureau doesn't try to guess which of your other notes might be calendar- or task-worthy.

What it writes

Each action below writes exactly the field(s) named, and nothing else in the note — its body, other frontmatter, its folder — is ever changed:

  • Drag an event (in the grid or the agenda) onto a different day — sets its date: field. Desktop mouse drag only; the underlying HTML5 drag-and-drop API isn't reliable on mobile touch, so on mobile use the note itself, or the editor below, to change its date.
  • Click an item in the calendar grid, or the pencil next to an agenda/list item — opens one editor for title, type (Meeting/Event/Reminder/Subscription/Expense/Invoice reminder/Income/Task), date, start/end time, an "All day" checkbox, repeat rule, an advance reminder lead time, status and priority (for a Task) and (for a Meeting) client, all in one place, without opening the note itself. Cost only shows once Subscription, Expense, Invoice reminder or Income is picked, or when editing something that already has one set -- and is required, not just shown, for Subscription/Expense/Income specifically. Changing the title renames the file; changing the type updates its tag, status, client and folder together. Converting to or from a real Invoice isn't offered — editing an existing Invoice's own title or schedule still works, its type just shows as a locked label.
  • The "+" button in the agenda panel, task board, reminders view or posts gallery — opens the same editor to create a new item, dated to the selected day (or today). The task board's own "+" is locked to Task (with status and priority fields alongside the usual date/repeat/remind), and the reminders view's own "+" is locked to Reminder, since everything created from either is inherently one type; Post is only offered from the Calendar/Dashboard/command-palette "+" (see below), and the posts gallery's own "+" is locked to Post. Finance's own "+" opens the same editor but narrowed to Subscription/Expense/Income only — see Finance below. Double-clicking an empty day (Month view) or half-hour slot (Week/Day view) opens the full editor too, pre-dated and pre-timed to where you clicked. Invoices aren't offered from any of these — they need the full invoicing workflow (below), which a quick form can't fill in responsibly.
  • Picking "Post" in the "+ New item" dropdown, or the posts gallery's own "+ Post" — writes a minimal <title> - Post Idea.md note in your Posts folder (status: [Idea], empty platform:/published:/cancelled:) and sets its scheduled: field to the date chosen in the dialog; the note's own date: is the day it was created, not the scheduled one. Post is create-only: once a Post note exists, editing it means opening the note itself, same as any other Post (see What it reads above) -- it isn't offered as a type when editing an existing item.
  • Drag a duration block's top or bottom edge (Week/Day view) — adjusts its start or end time, snapped to the nearest half hour, similar to dragging an edge in Google Calendar.
  • ‹ › on the task board, or dragging a card to another column — sets a task's status: field. Drag-and-drop is desktop mouse only, same as the calendar; ‹ › covers the same move on mobile.
  • Right-click an item, in any view — deletes it (moved to Obsidian's trash, never permanent). Shift+click one or more items first to select several, then right-click any selected item, or use the "Delete" button that appears in the selection bar. On a repeating item this menu also offers Skip this occurrence (rolls its own due date forward one period without deleting the series), and — on a not-yet-materialised future occurrence — Edit this and following occurrences / Delete this and following occurrences, which cap the original series and, for edit, start a new one from that date. On the task board specifically, right-clicking with 2 or more tasks selected also offers Move to and Set/Clear priority, applied to every selected task in one action.
  • Renew on a Subscription row in the Finance tab — the same "roll the due date forward one period" action as Skip this occurrence, exposed there since a subscription's next due date is the whole point of the row.
  • Starting/stopping a timer — from the Time view's Start/Stop timer button, or the status bar item at any time from anywhere in the wiki — creates a new time entry against a client and description, or writes end and computes duration on the running one. Starting a new timer while one is already running stops the old one first — only one runs at a time. duration is rounded up per the "Round time entries" setting (off by default).
  • Add entry (Time view, and the Daily Note dashboard's mini timer) — logs an already-finished session that was forgotten at the time, without touching the running timer: a small dialog for description, client, date and start/end time, written as a completed entry in one go.
  • Generate invoice (command palette, or from a client's billing details) — walks through a currency picker (any ISO 4217 currency, GBP by default), then line items (pulled from tracked time, a saved package, or typed by hand), then writes a complete, sequentially-numbered invoice note in your Invoices folder and a "Chase Payment" reminder dated to its due date. Each time entry behind a tracked-time line is marked billed: true with a link to the invoice, so the invoice stays checkable against the time it was built from; the "Delete time entries once invoiced" setting restores the old behaviour of trashing them instead. This is the only way Bureau creates an Invoice — the quick editors above never do.

Repeating events

A repeating Meeting, Event, Reminder or Task has exactly one real note — its recur: field and date: together define the series, and the calendar projects future occurrences from it without creating a note per occurrence. Opening a not-yet-real occurrence offers Edit this occurrence (materialises just that one date into its own note) or Edit this and following occurrences (caps the original series and starts a fresh one from that date); deleting offers the equivalent Skip this occurrence and Delete this and following occurrences, without ever touching the notes of any other occurrence.

Finance

The Finance tab opens with an at-a-glance row of stat tiles (Income/Expenses/Net to date, Recurring net/month, Invoiced/Paid so far -- green for money in, red for money out), then four foldable sections. Subscriptions, Expenses and Income (the Reminder-based one) are the same underlying note shape with different fields set; only Invoiced is built from a different note type. Each section has its own filter box, a sort dropdown (newest/oldest, amount high/low, title A-Z/Z-A), and shows 15 rows at a time with a Load more button, so a list that grows large stays usable -- click a section's header to fold it away entirely.

  • Subscriptions — a Reminder with both recur: and cost: set, and no income: flag: money going out on a repeat basis (software, a membership). Shows a monthly-equivalent running total and a Renew button per row.
  • Expenses — a Reminder with cost: set, no recur:, and no income: flag: a one-off cost, with a running total.
  • Income — a Reminder with cost: and income: true set. With recur: also set, it's a recurring source (a monthly payout); without it, a one-off entry for money already received. Any currency, via the same currency: field as Subscriptions and Expenses. The Paid toggle below doesn't apply here; there's no invoice behind these to be paid.
  • Invoiced — every note in your Invoices folder (subfolders included), newest first, summed per currency (figures in different currencies are never merged into one total). The headline total is everything ever invoiced, not just paid; a circle button on each row toggles its own paid: flag, and a subtitle line under the header shows how much of it has actually come in -- visible even while the section is folded. Rows open the invoice note itself; creating or amending an invoice's own content always goes through Generate invoice, never this view -- Paid is the one thing this view itself writes.

Figures in a currency other than GBP are never merged into the tiles' totals (that would need an exchange rate Bureau doesn't have) -- they show as a compact line underneath instead.

Subscriptions, Expenses and Income are created and edited through the same "+ New item" dropdown the calendar uses, narrowed here to just those three -- Meeting/Event/Reminder/Invoice reminder/Task/Post aren't offered from Finance's own "+", since anything created from this tab is inherently one of the three by definition. Cost is required once one of them is picked; the dialog won't let you save without it. A Subscription note template is available under Templates for typing one in by hand, though the "+" button is quicker.

Time tracking

The Time tab has three modes: Log (a rolling 30-day list, day-grouped and task-grouped, with a daily-goal/streak line if you've set one), Report (any month, or a custom date range, filtered by client) and Unbilled (every client with tracked time not yet invoiced, valued at their rate where one's set, with an Invoice button straight into the invoice generator).

Report shows six stat tiles at a glance: Today, This week and This month (fixed windows, independent of what you're browsing), the browsed period's own total, Billable hours (entries with a client attached, since only those can ever become an invoice line) and Unbilled total (the same figure as the Unbilled tab, a running fact rather than something scoped to the period). The client dropdown and From/To date fields above the tiles narrow all of it down to a specific client or range; setting either date overrides the Prev/Next month nav until you clear it again.

Posts

The Posts gallery is a card view over every note tagged post, for tracking blog and social content through to publication without a separate tool. A card shows a cover image (the first image embedded in the note itself, if it has one), its status, platform and either a "Published" or "Scheduled" date -- each of those is optional and toggleable from the gallery's own menu, so you can show just what's useful. + Post writes a new Post idea note exactly as the Calendar's own "+ New item" dropdown does (see What it writes above). A platform filter is in the same menu once more than one platform is in use. Right-click a card for Edit/Select/Delete, same as any other tab -- Edit here changes just its status, platform, scheduled/published date, or marks it cancelled; the note's title and written content stay yours to edit in the note itself. Shift+click to select several, then right-click for a bulk Delete -- deleting moves a note to Obsidian's own trash, reversible like any other Bureau delete.

Contacts

The Contacts list is a row-per-note view over every note tagged contact, wherever it lives -- surfacing a directory that predates Bureau rather than inventing a new one, so if your vault already has contact_type, company and role fields on these notes, they'll show up as-is. Each row shows the contact's name, type (Client/Prospect/Peer/Corroborator/Supplier/Referral Source/Other), company and role -- each optional and toggleable from the menu, same as every other view's property visibility, with a type filter alongside it once more than one type is in use. + creates a new contact with all four fields up front. Right-click for Edit/Select/Delete -- unlike Posts, a contact's own name is safe to rename here, since there's no filename convention riding on it. Email, phone and any relationship notes stay in the note's own body; Bureau only ever reads/writes the four frontmatter fields above.

Daily Note summary

A fenced ```companion-dashboard``` code block, placed anywhere in a note (typically a Daily Note template), renders a live timer, today's agenda, overdue items and items due soon — no separate tab, just an embed that updates itself as the underlying notes change. Every section (Today/Overdue/Due this week/Recent time entries) starts folded, so opening the note shows a compact summary; click a section's heading to expand it. The Time tracker heading has its own + button that quick-creates a Task/Reminder/Event/Meeting via the same editor the calendar uses; a "What are you working on?" field, client dropdown, a second + (list icon) for logging a finished session you forgot to time — opening a small dialog for description, client, date and start/end time — and a Start button track time inline without opening the Time tab, and recent past entries fold out below with a continue button per row.

Usage

  1. Install and enable Bureau (see below).
  2. Open the calendar (compass icon, or command palette: Open calendar). A Month/Week/Day dropdown switches views; the arrows and Today move by whatever unit is showing. In Month view, click a day to see its agenda — drag the thin handle between the calendar and the agenda to resize it, or use the panel icon to collapse it entirely. Week and Day views trade the agenda for an hourly grid with a red current-time line instead (set Calendar timezone in settings to see times in a zone other than the device's own) -- it already shows each day's items in full, so the agenda panel isn't offered alongside it.
  3. Open the task board (checklist icon, or Open task board), reminders (bell icon, or Open reminders), Finance (wallet icon, or Open finance), the time tracker (timer icon, or Open time tracker), Posts (newspaper icon, or Open posts), or Contacts (people icon, or Open contacts).
  4. New item (command palette) opens the shared editor from anywhere, without opening a view first — handy on mobile.
  5. Settings → Community plugins → Bureau, grouped under General (confirming before delete, Notify when something starts -- an optional desktop notification when a timed item's start arrives; advance reminders are set per item instead, via the "Remind" field in the New/Edit item editor, and cover 9am the same day or 1 day/1 week/1 month before), Tabs (switch any tab except the calendar off entirely, if you don't want it), Finance sections (hide Subscriptions/Expenses/Income/Invoiced independently of the tab as a whole), Time tracking (a daily goal, rounding, which day the week starts on), Calendar (a timezone override) and Invoicing (your own business and payment details used when generating an invoice).

On a phone-sized screen, a header with too many controls to fit one line collapses the less-used ones (a mode toggle, a sort dropdown) into a button rather than wrapping onto a second line -- the primary action (the "+" itself, Start/Stop timer) always stays a normal, tappable button. That same button, on every view and every screen size, also holds "Show ..." options for whatever's optional on that view's cards or rows -- a task's date or priority, a calendar item's client or cost, and so on -- so you can hide what you don't need without it being gone for good.

Installation

From within Obsidian: Settings → Community plugins → Browse → search "Bureau" → Install → Enable.

Manually: download main.js, manifest.json and styles.css from the latest release and place them in <your vault>/.obsidian/plugins/wiki-companion/, then enable the plugin under Settings → Community plugins.

Editing several items at once

Shift+click to select several items in any tab, right-click one of them, and choose Edit N selected. The form offers the fields that make sense for that tab, and applies your changes to every selected note in one go.

Only the fields you tick are written. Nothing is pre-filled, so a bulk edit can never quietly overwrite a property your items legitimately differ on. Tick a field and leave it empty to clear it across the selection.

A few fields are deliberately not offered in bulk: an item's title (it has to be unique), its type (that moves the note to a different folder), a cost, and a time entry's start and end times. Those are the values each record exists to hold, and setting them identically across a batch is far more likely to be an accident than an intention.

A bulk date change keeps each item's own time of day, so a morning meeting stays a morning meeting.

Grouping and view options

Every tab's menu holds that tab's own view options, in the same order throughout: layout, then grouping, then sort, then filters, then which details to show on each card or row.

Group by is available on Posts (status, platform or month), Contacts (type or company) and Reminders (month, or the Due/Upcoming/No date urgency grouping it uses by default). Grouping never hides anything: every item goes in exactly one group, and anything with no value for that field gets its own group at the end. Your chosen sort still applies inside each group.

Posts can be shown as a gallery or as a list, the same way the task board offers Board or List. Same posts either way.

All of this is remembered per tab, so a view you set up stays that way.

Where your notes go

Bureau creates ordinary markdown notes and puts each kind in its own folder. Any folder that doesn't exist yet is created the first time something is written to it, so you never have to set the structure up by hand.

The defaults are:

Note Folder
Tasks Admin/Tasks
Reminders (and Subscriptions, Expenses, Income) Admin/Reminders
Events Admin/Events
Meetings Admin/Meetings
Time entries Admin/Time
Posts Content/Posts
Contacts Admin/Contacts
Invoices Admin/Invoices
Service packages Admin/Packages
Clients Clients

Every one of them can be changed under Settings → Bureau → Folders. Changing one only affects where new notes go; nothing already written is moved.

Moving a note afterwards is safe. Bureau finds your items by their tags, not by their location, so a task dragged somewhere else in your vault still shows up on the board. The three exceptions are invoices, service packages and clients, which are identified by folder rather than by tag, so those three settings should match wherever you actually keep them. Those three also look inside subfolders, so filing invoices by year or by client works fine.

Bases (optional)

Bureau's own views (calendar, task board, reminders, Finance, time log, posts gallery) work as soon as you enable the plugin — they read tags and frontmatter directly, and need no setup beyond that.

If you also use Obsidian's core Bases plugin, you may want native table views over the same tagged notes (sortable columns, filtering by client, and so on) alongside Bureau's views. Bureau doesn't ship any .base files — they're a separate, optional layer, and Bases' own format may change over time — but a simple one is quick to build yourself: Create new Base, then filter on tags.contains("task") (or "reminder", "meeting", "event", "invoice", "time", "post") and add whichever columns you want (date, status, client, duration, and so on).

Roadmap

Bureau is being developed incrementally. The calendar (Month/Week/Day, drag-to-reschedule, drag-to-resize, double-click-to-create, repeating events with per-occurrence edit/skip/delete), task board (with multi-select bulk status/priority actions), reminders, Finance (Subscriptions/Expenses/Income/Invoiced), time tracker (Log/Report/Unbilled), a Posts gallery, a Contacts list and a Daily Note summary embed are all built, with editing and delete throughout, and every tab (bar the calendar) switchable off in settings. On phone-sized screens, layouts that would otherwise sit side by side (the calendar's grid + agenda, the task board's Kanban columns) stack vertically, list rows/buttons get more room rather than being squeezed onto one line, and a header with too many controls collapses the less-used ones into a menu. I use this daily and expect to keep extending it for a long time to come.

License

MIT — see LICENSE.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
TimeStamper
5 years ago by Martin Eder
A plugin for Obsidian to quickly insert customized date- and time-stamps to the currently active note
Big Calendar
5 years ago by Boninall
Big Calendar in Obsidian, for manage your events in a day/week/month and see agenda too!
Things Link
4 years ago by @gavmn
Heatmap Calendar
4 years ago by Richard Slettevoll
An Obsidian plugin for displaying data in a calendar similar to the github activity calendar
Obsidian Google Tasks
4 years ago by YukiGasai
Add Google Tasks inside Obsidian
Agile Task Notes
4 years ago by BoxThatBeat
This Obsidian plugin integrates your TFS data from either Jira or Azure Devops
Google Calendar
4 years ago by YukiGasai
Add Google Calendar inside Obsidian
Super Simple Time Tracker
4 years ago by Ellpeck
Multi-purpose time trackers for your notes!
Week Planner
4 years ago by Ralf Wirdemann
Checkbox 3 states
4 years ago by Renaud Héluin @ NovaGaïa
This is a simple plugin for add a third state to checkbox list.
Old Note Admonitor
4 years ago by tadashi-aikawa
WakaTime
4 years ago by WakaTime
Obsidian.md plugin for automatic time tracking and metrics generated from your Obsidian usage activity.
Checklist Reset
4 years ago by Luke Hansford
Add a command to reset the state of any checklists in a document in Obsidian
Order List
4 years ago by Henry Gustafson
Task Marker
4 years ago by wenlzhang
An Obsidian plugin to change task status and append text with hotkeys and right-click context menu.
Pending notes
4 years ago by Ulises Santana
Obsidian plugin for searching links without notes in your vault.
Habit Calendar
4 years ago by Hedonihilist
Monthly Habit Calendar for DataviewJS. This plugin helps you render a calendar inside DataviewJS code block, showing your habit status within a month.
Obsidian-compatible Watcher for ActivityWatch
4 years ago by Grimmauld
Obsidian plugin to track user activity with ActivityWatch
Tasks Calendar Wrapper
3 years ago by zhuwenq
This plugin currently provides a timeline view to display your tasks from your obsidian valut, with customizable filters and renderring options.
Brainframe
3 years ago by pedersen
Prioritize
3 years ago by EloiMusk
Obsidian Plugin, to prioritize stuff in Obsidian
OZ Calendar
3 years ago by Ozan Tellioglu
Obsidian plugin to display notes on a calendar based on YAML frontmatter or file names
Get Stock Information
3 years ago by Mike Jongbloet
Dynamic Timetable
3 years ago by L7Cy
Calculate the estimated completion time from the estimated task time and dynamically create a timetable.
Pivotal Tracker Integration
3 years ago by jondeates
Custom State for Task List
3 years ago by Okami Wong
A plugin for Obsidian to define your own states for task items.
TodoTxt
3 years ago by Mark Grimes
Obsidian plugin to manage todotxt files
Time Ruler
3 years ago by Joshua Tazman Reinier
A drag-and-drop time ruler combining the best of a task list and a calendar view (integrates with Tasks, Full Calendar, and Dataview).
Due When
3 years ago by Andy Baxter
An Obsidian plugin which gives shortcuts to insert set due dates
ICS
3 years ago by muness
Generate Daily Planner from one or more ical feeds
GTD No Next Step
3 years ago by Tobias Davis
Obsidian plugin for GTD workflow, badge projects with no next step.
Uncheck All
3 years ago by Shahar Har-Shuv
Obsidian plugin to uncheck all checkboxes in a file with one action
TODO Wrangler
3 years ago by Jeel Shah
An obsidian plugin to wrangle your Todos and put them in their place.
Lunar Calendar
3 years ago by OSmile
obsidian插件,一个支持农历的日历插件。
Homework Manager
3 years ago by Kadison McLellan
An Obsidian plugin that keeps track of homework through a to-do list.
MagicCalendar
3 years ago by Vaccarini Lorenzo
An obsidian plugin that exploit a natural language processing engine to find potential events and sync them with iCalendar
RescueTime
3 years ago by Tatsuya Hayashi
A RescueTime integration plugin to view your activity logs in Obsidian.
GChat Reminder
3 years ago by Anil Erdogan
iCal
3 years ago by Andrew Brereton
This is a plugin for Obsidian that searches your vault for tasks that contain dates, and generates a calendar in iCal format that can be imported into your preferred calendar application.
ManicTime
3 years ago by Finkit d.o.o.
Single File Daily Notes
3 years ago by Pranav Mangal
An Obsidian plugin to create and manage daily notes in a single file
Fastimer
3 years ago by vkostyanetsky
Intermittent fasting tracker plugin for Obsidian
Task list
3 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
Alfonso Money Manager
3 years ago by SmartLifeGPT Innovation
This is the repository for the obsidian plugin of the Alfonso Money Manager mobile application
Track-a-Lot
3 years ago by Iulian Onofrei
This is a tracker plugin for Obsidian
Ego Rock
3 years ago by Ashton Eby
An obsidian plugin that implements a basic taskwarrior UI for listing and modifying tasks.
Date Inserter
3 years ago by namikaze-40p
An Obsidian plugin that lets you insert a date at the cursor position using a calendar.
Pomodoro Planner
3 years ago by Onur Nesvat
Calendarium
3 years ago by Jeremy Valentine
The ultimate Obsidian plugin for crafting mind-bending fantasy and sci-fi calendars
Things3 Today
3 years ago by wudanyang6
Grind Manager
2 years ago by dromse
Gamify your task management with rewards system, craft your tasks by tags.
Amazing Marvin Integration
2 years ago by Cloud Atlas
Interoperability between Obsidian and Amazing Marvin
Dust Calendar
2 years ago by 纳米级尘埃
obsidian 日历插件
Personal OS
2 years ago by A.Buot
Calendar Event Sync
2 years ago by Stephen Dolan
Set the title of your note to the current event
Checkbox Sounds
2 years ago by yasd251
Adds a nice completion sound for checkboxes when ticked in Obsidian
Timekeep
2 years ago by Jacobtread
Obsidian task time tracking
Checkbox Time Tracker
2 years ago by UD
Checkbox Time Tracker for Obsidian
Relative Timestamps
2 years ago by Charles Young
Task List Kanban
2 years ago by Chris Kerr
doing
2 years ago by rooyca
What was I doing?
Datepicker
2 years ago by Mostafa Mohamed
Datepicker widget for Obsidian.
Account Viewer
2 years ago by Muaz Yediyüzkırkiki
Obsidian Plugin that automatically generate accounting tables from Markdown code blocks tagged with "accounting" alias.
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
Chinese Calendar
2 years ago by DevilRoshan
在obsidian中使用的更符合中国习惯的日历插件。
Daily Statistics
2 years ago by yefengr
obsidian daily statistics
Diarian
2 years ago by Erika Gozar
All-in-one journaling toolkit.
Morgen Tasks
2 years ago by Morgen AG
Calendar
6 years ago by Liam Cain
Simple calendar widget for Obsidian.
Review
6 years ago by ryanjamurphy
Add the current note to a future daily note to remember to review it.
Apple Reminders
6 years ago by Rishi Raval
A plugin to attempt to bring Apple Reminders into Obsidian.
Kanban
5 years ago by mgmeyers
Create markdown-backed Kanban boards in Obsidian.
Org Mode
5 years ago by ryanpcmcquen
Add Org Mode support to Obsidian.
Stopwatch
5 years ago by Tokuhiro Matsuno
Tasks
5 years ago by Clare Macrae and Ilyas Landikov (created by Martin Schenck)
Task management for the Obsidian knowledge base.
Grandfather
5 years ago by Danny Hernandez
A simple Obsidian plugin to display the time and date on the status bar
Amazing Marvin
5 years ago by Shirayuki Nekomata
Simple plugin for Amazing Marvin
Random To-Do
5 years ago by NatiAris
Pick a random todo item or a file with todo items
Toggl Track
5 years ago by Maxime Cannoodt
A Toggl integration plugin for the popular knowledge base application Obsidian.
Reminder
5 years ago by uphy
Reminder plugin for Obsidian
Trello
5 years ago by Nathonius
An Obsidian Plugin that connects Trello cards to Obsidian notes.
Jump-to-Date
5 years ago by TfTHacker
Jump to a date via a convenient popup form. This plugin is a part of the Obsidian42 family of Obsidian plugins.
Carry-Forward
5 years ago by Jacob Levernier
An Obsidian Notes plugin for generating and copying block IDs, and copying lines with a link to the copied line
Archiver
5 years ago by ivan-lednev
Archive completed tasks in your Obsidian vault (plus other org-mode-like features)
Itinerary
5 years ago by Adam Coddington
Make planning your trip or event easier by rendering a calendar from event information found in your notes.
Habitica Sync
5 years ago by Leoh and Ran
This is a under-development Obsidian Plugin for Habitica
Overdue
5 years ago by Peter Parente
Obsidian plugin that marks items as [[Overdue]] if they are not checked off by their due date
Flow
2 years ago by Ben Phillips
Implements key processes in David Allen's Getting Things Done (GTD) methodology
Another Simple Todoist Sync
2 years ago by eudennis
Obsidian.md plugin to integrate with Todoist app.
Daily notes calendar
2 years ago by bartkessels
Quickly navigate your vault using a calendar view, this plugin allows you to create and navigate to periodic notes and notes that are created on a specific date.
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Heatmap Tracker
2 years ago by Maksim Rubanau
A customizable heatmap tracker plugin for Obsidian to visualize daily data trends with intuitive navigation and flexible settings.
Fetch Prayer Times
2 years ago by Ecys
Fetches times from Aladhan API and inserts into a table.
Focus Time
2 years ago by AstraDev
Focus Time is a plugin that helps you track how much time you spend on each note.
Goal Tracker
2 years ago by Ben Rotholtz
Kikijiki Habit Tracker
2 years ago by KIKIJIKI
Kikijiki Habit Tracker Plugin for Obsidian
Every Day Calendar
2 years ago by QuBe
Obsidian plugin to create calendars inspired by Simone Giertz's Every Day Calendar
Daily Routine
2 years ago by sechan100
new version of daily-routine obsidian plugin
Asana
2 years ago by Ryan Bantz
Obsidan plugin that creates tasks in Asana for highlighted text or the current line
Chronotyper
a year ago by BambusControl
Obsidian plugin for tracking note edit time
Outlook Meeting Notes
a year ago by David Ingerslev
An Obsidian plugin to create meeting notes from Microsoft Outlook .msg files
ProgressTracker
a year ago by Van Nam
A plugin that helps you track progress and manage tasks in your notes.
MemoChron
a year ago by Michalis Efstratiadis
Calendar integration and note creation with support for public iCalendar URLs.
SolidTime Integration
a year ago by proniclabs
Obsidian SolidTime Integration Plugin
Countdown To
a year ago by Gui Cattani
A countdown/progress Obsidian widget using progressbar.js
Markdown Calendar Generator
a year ago by Zach Russell
An intentionally simple obsidian markdown table calendar generator
Send to Canvas
a year ago by wenlzhang
An Obsidian plugin that allows you to send tasks, blocks, and notes to Canvas files as plain text, links, and embeds.
Prologue
10 months ago by joshavanier
notes & reminders on obsidian tabs
Life in Weeks Calendar
10 months ago by Jeff Szuc
Plugin for the Obsidian markdown editor. Displays a calendar of your life in weeks with weekly Periodic Notes plugin integration. Includes options for the traditional Memento Mori/Stoic style calendar, as well as a Gregorian calendar accurate version.
Lark Style CountDown Timer
9 months ago by Zhaoyang Yu
Tag Timer
8 months ago by quantavil
The Tag Timer is a versatile plugin for Obsidian that allows you to seamlessly track the time you spend on specific tasks or sections within your notes.
Timelog
8 months ago by Eddie Blundell
Time logging plugin for obsidian
Role Switch
6 months ago by Zafrem
This program is a tool that recognizes and makes task switching easier, even though multitasking is difficult.
Kanban Bases View
6 months ago by I. Welch Canavan
A kanban-style drag-and-drop custom view for Obsidian Bases that allows you to organize your notes into columns based on any property.
Calendar Bases
5 months ago by Edrick Leong
Synaptic View
5 months ago by Yongmini
Obsidian Plugin : Synaptic View that unifies your dashboards, hub notes, quick-entry notes, periodic notes, web shortcuts, and calendar navigation—enable it as the default new-tab experience or summon it with a command.
Simplest Todo
4 months ago by kintolayli
Yori Task
4 months ago by yorigo77
task manager, week planner, year planner
Project Manager
4 months ago by stepankropachev
Project management natively in your Obsidian vault. Table, Gantt, and Kanban views with subtasks, dependencies, time tracking, and custom fields — all stored as plain Markdown. No external services.
Task Collector
3 months ago by ebullient
Manage tasks and logs within an Obsidian note.
Full Calendar Remastered
3 months ago by obsidian-full-calendar-remastered
Keep events and manage your calendar alongside all your other notes in your Obsidian Vault.
TaskNotes
2 months ago by callumalpass
Task and time-tracking management with calendar integration for Obsidian
Apex Dashboard
2 months ago by PandoraReads
Stop switching between Obsidian notes. One page. Everything you need. Memo your thoughts, crush your todos, track your projects — and make it look incredible doing it.
Gantt Calendar
2 months ago by Sugar
obsidian-gantt-calendar
Live Life Recording
2 months ago by goryugocast
Operate tasks directly in Markdown with start/finish records, routine insertion, and a lightweight daily summary for Obsidian.
Notion Bases
2 months ago by bgarciamoura
Turn any folder into a Notion-style database — 7 views, 17 column types, formulas, relations, rollups, and subtasks. All stored in plain Markdown frontmatter.
GTD Tasks
2 months ago by unpreditable
Sheet Plus
2 months ago by ljcoder
obsidian spreadsheets solutions
Notebook Navigator
a month ago by Johan Sanneblad
A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.
Day Planner
a month ago by ivan-lednev
An Obsidian plugin for day planning with a clean UI and a simple task format
Yuhanbo Task
a month ago by yuhanbo
Obsidian 智能任务管理与番茄时钟插件,集成 AI 智能拆分的任务管理系统,配备专业番茄时钟,提升工作效率。
Power Bases
a month ago by Power Plugins
Add board, calendar, timeline, chart, gallery, and table views to Bases, with inline editing, colors, rollups, field types, formulas, and CSV import.
Prisma Calendar
a month ago by Matej Vavro Productivity
Prisma is not just a calendar plugin. It turns any note with a date into a flexible planning system inside Obsidian. There are no rigid schemas or predefined structures — just your data, your rules, fully under your control. It lets you see your entire vault through time.
Journal View
a month ago by RUverse
A Journal View for Obsidian
BeautyTasks
a month ago by Avni Bilgin
Todoist-style task & project manager for Obsidian — one markdown note per task, native UI, no plugin dependencies.
TODOseq
a month ago by Stephen Cross
TODOseq ("to-do-seek") is a lightweight, keyword-based task tracker for Obsidian
Time Things
a month ago by plasmabit
Know when your note was was last updated. Track how much time you spent writing. Keep an eye on the clock.
Operon
a month ago by Hasan Yılmaz
Task management system for humans and agents in Obsidian.
Xboard
a month ago by wrbin
一款易上手、已美化、更适合AI工作流的obsidian工作台
TaskChute Plus
a month ago by hiroyaiizuka
Execute Taskchute for Obsidian
Budget Vault
a month ago by Ruan
Private budgeting for Obsidian — import bank statements in any currency and track budgets, debt and savings as plain files in your own vault. Twelve languages, works on iPhone and Android.
Gantt this
24 days ago by Altarok
Obsidian plugin showing multiple TTRPG calendars at once in one gantt chart.
WorkLife Calendar
16 days ago by RavenLife
All-in-one: a smart calendar, task and habit tracker, time tracker, and financial planner, all connected into a single ecosystem within Obsidian.
Abele
12 days ago by dudaanton
An Obsidian plugin that adds a lot of functionality I personally find missing.
Xove Dashboard
11 days ago by ty
Obsidian 个人工作台插件:把任务管理 / 项目管理 / 灵感收集 / 笔记统计 收进一个首页,数据全留在本地的。
Rollover Plus
3 days ago by Wren
Move unfinished tasks between daily notes with Rollover Plus.
Weekday Commands
2 days ago by Wren