Focus Tracker

by Jeet Sukumaran
5
4
3
2
1
Score: 54/100

Description

Category: Productivity Tools

The Focus Tracker plugin helps users monitor and plan their focus, attention, and efforts across various notes and projects in Obsidian. By creating visual timelines and dashboards, users can track engagement with specific topics, identify patterns, and prioritize tasks effectively. It supports customizable rating systems, flag-based future planning, and integration with tags, metadata, and file paths for tailored tracking. Designed for diverse use cases like project management, research, habit tracking, and goal planning, this plugin provides a structured way to analyze past focus and align future efforts with objectives.

Reviews

No reviews yet.

Stats

7
stars
1,657
downloads
0
forks
806
days
164
days
164
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
2
total issues
1
open issues
1
closed issues
206
commits

Latest Version

5 months ago

Changelog

README file from

Github

Focus Tracker

Synopsis

Track and align your focus!

Focus Tracker is an Obsidian plugin for tracking activity, progress, and engagement across your notes over time. It creates a visual timeline that helps you monitor patterns, maintain consistency, and identify gaps in your attention areas.

image

Focus Tracker helps you:

  • Track effort and attention across multiple projects and activities
  • Review past focus patterns to identify gaps and successes
  • Plan and direct future attention to align with your goals
  • Maintain awareness of project engagement over time

Overview

What

Track your past and plan your future focus, attention, efforts, and activities so as to better align with the directions you want to go.

Why

One may find this useful as a component of their productivity/task-management system to help decide what areas need more attention in the future based on lack of attention or quality of attention in the past, leading to different prioritization of tasks, or as lead indicators in an OKR framework.

I also find this useful as a component of my ADHD self-management system to help align my hyperfocus with my intent, setting time-block targets, etc..

Use Cases

  • Research Progress: Track engagement with different research threads, marking days with breakthroughs, reviews, or blocks
  • Project Management: Monitor activity across multiple project workstreams, identifying active and stalled tracks
  • Habit Formation: Visualize your consistency in engaging with specific topics or practices
  • Learning Journeys: Track your engagement with different subjects or skills you're developing
  • Content Creation: Monitor your writing or content development progress across different pieces
  • Task Management: Keep an eye on recurring responsibilities or long-running tasks
  • Goal Tracking: Monitor progress on different goals or objectives over time

Installation

  1. Open Obsidian Settings
  2. Go to Community Plugins
  3. Search for "Focus Tracker"
  4. Click Install, then Enable

Quick Start

Add a focus tracker to any note using this code block:

```focustracker
tag-set:
  - track/research
  - lane/active
```

This will:

  1. Find all notes tagged with BOTH #track/research AND #lane/active
  2. Create a row for each matching note
  3. Show a timeline where you can track engagement

Other options let you add metadata columns or customize the structure and appearance of the board.

Specifying the "tracks" to be viewed

A "track" in this context, is just the note(s) that you want to view in the dashboard.

Tag-based selection

Find notes with ANY of these tags:

```focustracker
tags:
  - area/health
  - area/fitness

Find notes with ALL of these tags:

```focustracker
tag-set:
  - status/active
  - type/project

Exclude notes with ANY of these tags:

```focustracker
tag-set:
  - status/active
  - type/project
exclude-tags:
  - status/hold
  - status/completed
```

Exclude notes with ALL of these tags:

```focustracker
tags:
  - area/work
exclude-tag-set:
  - status/archived
  - status/inactive
```

Tag-based selection with regular expression patterns

All tag-based queries support regular expressions, making it powerful to select notes with specific tag patterns. The pattern is matched against the full tag (without the # prefix).

Basic Tag Queries with Patterns

Match tags starting with "area/":

```focustracker
tags:
  - ^area/
```

Match any health-related tags:

```focustracker
tags:
  - health
  - health/.*     # Matches health/mental, health/physical, etc.
```

Complex pattern matching:

```focustracker
tag-set:
  - ^track/p      # Matches track/project, track/personal, etc.
  - status/(active|pending)   # Matches status/active or status/pending
```

Excluding with Patterns

Exclude all archived tracks:

```focustracker
tags:
  - ^track/
exclude-tags:
  - .*/archived$   # Excludes any tag ending in "archived"
```

Common Pattern Examples
```focustracker
# Find active projects but exclude maintenance tasks
tags:
  - ^project/.*
exclude-tag-set:
  - type/maintenance
  - status/(done|archived)

# Track all areas except personal
tags:
  - ^area/
exclude-tags:
  - area/personal/.*

# Monitor specific project phases
tag-set:
  - ^project/
  - phase/(planning|execution)

# Complex categorization
tags:
  - ^(area|domain)/tech/.*  # Matches both area/tech/... and domain/tech/...
exclude-tags:
  - .*/legacy$
  - status/(hold|blocked)
```

The pattern matching follows regular expression rules, where:

  • ^ matches the start of the tag
  • $ matches the end of the tag
  • . matches any character
  • .* matches zero or more characters
  • | means OR
  • () groups patterns together
  • [] matches any single character from the set

Property-based selection

Select files by frontmatter properties:

```focustracker
properties:
  status: active
  priority: high
```

File path selection methods

Select files by path pattern:

```focustracker
paths:
  - Projects/Active
  - Areas/Health
```

Combined selection

You can combine any selection methods:

```focustracker
paths:
  - Projects/
tags:
  - status/active
properties:
  priority: high
exclude-tags:
  - status/hold
```

Features

Timeline Control

  • Set the number of past and future days to display
  • Navigate through time with forward/backward controls
  • Jump to today with a single click
  • Set a focal date to center your view

Visual Indicators

  • Distinguish weekends from weekdays
  • Highlight today's date
  • Mark future dates distinctly
  • Highlight the focal date

Engagement Tracking

  • Click cells to cycle through rating levels
  • Right-click for precise rating selection
  • Add remarks to any day's entry
  • Use flags for special conditions or states

Custom Columns

Focus Tracker

Custom Columns

Add metadata columns from your notes in two ways:

Dictionary Format

Specify custom display names for columns:

```focustracker
tag-set:
  - type/project
prefix-columns:
  "Status": status
  "Priority Level": priority
  "Project Type": project-type
postfix-columns:
  "Due Date": due-date
  "Assigned To": assigned-to
  "Completion %": completion-percentage
```
Tag-based Metadata with Regular Expression Extraction
```focustracker
tag-set:
  - type/project
prefix-columns:
  "Status": status
  "Priority": "#workflow/priority/(.*)"
  "Type": "#workflow/type/(.*)"
```

Regular expression captures can be used to pull metadata out of tags. In the above, a note with tags "#workflow/priority/high" and "#workflow/type/review" with have "high" and "review" in columns "Priority" and "Type" respectively.

Legacy: Simple Format

Uses property names directly as column headers:

```focustracker
tag-set:
  - type/project
prefix-columns:
  - status
  - priority
postfix-columns:
  - due-date
  - assigned-to
```

The dictionary format allows you to:

  • Use friendly display names in column headers
  • Reference property names that might not be ideal for display
  • Maintain cleaner visualization while keeping flexible property names

Features:

  • Sort by clicking column headers
  • Resize columns by dragging
  • Values from frontmatter properties
  • Arrays displayed with bullet separators
  • Truncated values show in tooltips

Display Customization

  • Alternating row colors for better readability
  • Adjustable date column spacing
  • Optional column borders
  • Customizable through CSS variables

Persistence

  • All ratings and remarks are stored in note frontmatter
  • Data format is plain YAML
  • Easy to query or process with other tools
  • No external dependencies

Configuration

Rating Maps

Custom rating symbols and flags can be configured in settings:

```focustracker
rating-map: research    # Use research rating set
flag-map: blockers     # Use blocker flag set
```

Title Display

Control which frontmatter property to use as row label:

```focustracker
title-property-names:
  - track-label
  - focus-tracker-title
  - title
```

Using the rating system

Ratings (positive numbers) show past effort/focus:

rating-map: "digitsFilled"  # Choose from: digitsFilled, colors1, moonPhases
  • ➊-➓: Filled digits (default)
  • 🔴🟠🟡🟢🔵: Color progression
  • 🌑🌒🌓🌔🌕: Moon phases
3. Flag System

Flags (negative numbers) mark future intentions:

flag-map: "academic"  # Choose from: default, academic, project, health, writing

Each domain has contextually appropriate flags:

  • Academic: 📚(read) ✍️(write) 📝(notes) 🔬(research)
  • Project: 💡(idea) 📋(plan) 👥(collab) 📊(review)
  • Health: 🏃(exercise) 🥗(nutrition) 😴(sleep) 🧘(mindful)
  • Writing: ✍️(draft) 📝(edit) 🔍(research) 📚(reference)
4. Comments

Add context to any entry:

  • Right-click → Add Remarks
  • Stores in file's YAML frontmatter
  • Visible on hover

Configuration

Global settings (Settings → Focus Tracker):

  • Default rating and flag maps
  • Minimum/default days shown
  • Custom map definitions

Per-tracker settings (in codeblock):

```focustracker
paths: "research/"
rating-map: "moonPhases"
flag-map: "academic"
days-past: 14
days-future: 7
```

Policy: How to Use It Effectively

Two-Mode Operation

1. Review Mode (Ratings)

Use ratings to record past focus and effort:

  • Record after work sessions
  • Rate quality of attention
  • Track time invested
  • Note effectiveness
2. Planning Mode (Flags)

Use flags to mark future intentions:

  • Set activity targets
  • Mark deadlines
  • Highlight priorities
  • Note dependencies

Real-World Example: Graduate Student Workflow

Research Project Tracker
```focustracker
paths: "research/projects"
rating-map: "digitsFilled"
flag-map: "academic"
```
  • Rate paper-writing sessions (1-10)
  • Flag upcoming deadlines 📅
  • Mark sections needing focus 📚
  • Track experiment progress 🔬
Reading List
```focustracker
paths: "reading/"
rating-map: "moonPhases"
flag-map: "academic"
```
  • Rate comprehension of papers
  • Flag must-read papers 📚
  • Mark papers for discussion ✍️
  • Track reading group assignments
Health & Wellness
```focustracker
paths: "personal/health"
rating-map: "colors1"
flag-map: "health"
```

  • Track exercise sessions 🏃
  • Rate sleep quality 😴
  • Plan meal prep 🥗
  • Schedule workouts ⏳
Teaching Assistant Duties
```focustracker
paths: "teaching/"
rating-map: "digitsFilled"
flag-map: "academic"
```

  • Rate office hours productivity
  • Flag grading deadlines 📅
  • Track prep time for labs
  • Plan review sessions 👥

Best Practices

  1. Regular Updates

    • Update ratings daily/weekly
    • Plan flags during weekly review
    • Add comments for context
  2. Focus Analysis

    • Review patterns monthly
    • Identify neglected areas
    • Adjust priorities based on gaps
  3. Integration

    • Link to detailed notes
    • Use with daily notes
    • Combine with task management
  4. Progressive Adaptation

    • Start with one area
    • Add trackers gradually
    • Refine rating criteria

Contributing

Found a bug or have a feature request? Please open an issue on GitHub.

Acknowledgements

Based on Habit Tracker 21, with significant adaptations for focus tracking and planning.

License

GPL-3.0 License - See LICENSE.md for details.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Activity Heatmap
2 years ago by Zak Hijaouy
Activity Logger
5 years ago by Creling
Adjacency Matrix Exporter
3 years ago by danielegrazzini
Create a numerical adjacency matrix of your Vault in two ways: Absolute and Normalized
AI integration Hub
a year ago by Hishmat Salehi
A modular AI integration hub for Obsidian
AI Revisionist
2 years ago by Synaptic Labs
ai-writer
2 years ago by Donovan Ye
A plugin for Obsidian that uses AI to help you write better and faster.
Amazing Marvin
5 years ago by Shirayuki Nekomata
Simple plugin for Amazing Marvin
Another Simple Todoist Sync
2 years ago by eudennis
Obsidian.md plugin to integrate with Todoist app.
April Automatic Timelines
2 months ago by april-gras
Simple timeline generator for story tellers.
Asana
a year ago by Ryan Bantz
Obsidan plugin that creates tasks in Asana for highlighted text or the current line
Audio Notes
4 years ago by Jason Maldonis
Easily take notes on podcasts and other audio files using Obsidian Audio Notes.
Auto Periodic Notes
2 years ago by Jamie Hurst
Obsidian plugin to create new periodic notes automatically in the background and allow these to be pinned in your open tabs. Requires the "Periodic Notes" plugin.
Autocomplete
6 years ago by Yeboster
Obsidian plugin to provide text autocomplete
Autocorrect Formatter
3 years ago by b-yp
A plugin running on Obsidian that utilizes autocorrect to format Markdown content.
Barcode Generator
3 years ago by noxonad
A barcode generator for obsidian.
Blockquote Levels
4 years ago by Carlo Zottmann
A plugin for Obsidian (https://obsidian.md) that adds commands for increasing/decreasing the blockquote level of the current line or selection(s).
Blockreffer
2 years ago by tyler.earth
An Obsidian plugin to search and embed blocks with ^block-references (aka ^block-ids)
Bookmarks Caller
2 years ago by namikaze-40p
This is an Obsidian plugin which can easily open bookmarks.
Boost Link Suggestions
4 years ago by Jacob Levernier
An Obsidian (https://obsidian.md) plugin for altering the order of inline link suggestions by link count and manual boosts.
Brain Dump Mode
2 years ago by yesjinu
Obsidian plugin - DISABLE your delete key and eliminate hesitation!
Brainframe
3 years ago by pedersen
Broken Links
2 years ago by ipshing
Browser Interface
2 years ago by Jason Lieb
An obsidian plugin that pairs with a chrome extension to manage your tabs in obsidian.
BuJo Bullets
2 years ago by Will Olson
Alternate checkbox types for Obsidian to support Bullet Journal bullets
Canvas Link to Group
10 months ago by TGRRRR
Plugin for Obsidian Canvas enabling direct links to specific groups within canvas files for improved navigation
CAO
a year ago by Godot
Claude AI for Obsidian
Chronology
4 years ago by Gabriele Cannata
Chronos Timeline
2 years ago by Claire Froelich
Render interactive timelines in your Obsidian notes from simple Markdown.
Click Hint
2 years ago by kbwo
Code Block Labels
5 years ago by Sean Bowers
Provides labels for codeblocks in Obsidian
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
Codename
3 years ago by dstack
Command Alias
5 years ago by @Yajamon
Obsidianのコマンドに対してエイリアスを設定するプラグイン
Content Cards
a year ago by leo
Insert content cards in Markdown, such as timeline, highlightblock, target card, book information card, music information card, movie information card, photoes ablum, business card, content subfield, countdown, SWOT,BCG.
Contribution Graph
2 years ago by vran
generate interactive gitxxx style contribution graph for obsidian, use it to track your goals, habits, or anything else you want to track.
Copy Image
3 years ago by Felipe D.S. Lima
Easily copy image to clipboard by right clicking image.
Copy Inline Code
3 years ago by Ondrej Zavodny
Copy Section
2 years ago by skztr
Obsidian.md plugin adding a Copy button to the top of Headed sections
Crackboard
2 years ago by Franklin
Obsidian plugin for crackboard.dev
CSS Editor
3 years ago by Zachatoo
Edit CSS snippets in Obsidian.
Ctrl-XA cycle various items
3 years ago by nbossard
The equivalent in Obsidian of Vim Ctrl X-A. But supercharged with lists of various items : days, months, ...
Cursor Position History
a year ago by Florian Gubler
A Plugin to remember (and make accessible) the cursor history in Obsidian. Both within a file and across files.
Daily note creator
3 years ago by Mario Holubar
Automatically creates missing daily notes.
Daily notes opener
4 years ago by Reorx
Easily open daily notes and periodic notes in new pane; customize periodic notes background; quick append new line to daily notes.
Daily Prompt
2 years ago by Erl-koenig
Daily Random Note
2 years ago by Alexandre Silva
Daily Random Notes in Obsidian.
Daily Routine
a year ago by sechan100
new version of daily-routine obsidian plugin
Daily Statistics
2 years ago by yefengr
obsidian daily statistics
Daily Stats
5 years ago by Dhruvik Parikh
Plugin to view your daily word count across all notes in your Obsidian.md vault.
Dangling links
6 years ago by Graydon Hoare
obsidian plugin for displaying dangling links
Dataview Autocompletion
2 years ago by Daniel Bauer
Day Planner OG
3 months ago by ebullient
Day planning from a simple task list in a Markdown note (bare bones, preserves the features and behavior of the original plugin).
DEVONlink
5 years ago by ryanjamurphy
Open notes indexed in DEVONthink in, well, DEVONthink
doing
2 years ago by rooyca
What was I doing?
Doubleshift
4 years ago by Qwyntex
Obsidian Plugin to open the command palette by pressing shift twice
Due When
3 years ago by Andy Baxter
An Obsidian plugin which gives shortcuts to insert set due dates
Dynamic Outline
2 years ago by theopavlove
Adds a customizable GitHub-like floating table of contents to Obsidian.
Easy Timeline
2 years ago by Romeliun
The Easy Timeline plugin for Obsidian allows you to create timelines easily.
Edit MDX
3 years ago by Tim Peters
Create and edit mdx files in Obsidian.md as if they were md files.
Editor Autofocus
3 years ago by Mgussekloo
Editor Commands Remap
5 years ago by cactus5
Obsidian plugin to map hotkeys to editor commands
Editor Width Slider
3 years ago by @MugishoMp
With this plugin you can set the line width of the editor in obsidian.
Ego Rock
2 years ago by Ashton Eby
An obsidian plugin that implements a basic taskwarrior UI for listing and modifying tasks.
Epiphany
2 years ago by Epiphany
Epub Importer
3 years ago by aoout
Import EPUB files as Markdown.
Exercises
3 years ago by AlexCCavaco
Create Interactive Exercises along side your Obsidian Notes
Feeds
3 years ago by LukeMT, pashashocky, madx
Magic feeds dataview query for obsidian
Fight Note
2 years ago by Dmitry Loac
Obsidian Plugin for shows Tekken notation into an easy-to-read form.
File Index
3 years ago by Steffo
Obsidian plugin to create a metadata file about the files present in the Vault
File indicators
3 years ago by Jakob
Add custom indicators to the file explorer.
File path to URI
6 years ago by Michal Bureš
Convert file path to uri for easier use of links to local files outside of Obsidian
File Publisher
3 years ago by Devin Sackett
Filename Emoji Remover
4 years ago by Yüksel Tolun
A simple plugin for the note taking app Obsidian that will rename your files to remove emojis in their names.
Flashcard Generator
3 years ago by ChloeDia
Obsidian Plug-in to automatically create a set of questions/answers on your notes !
Floating Search
3 years ago by Boninall
A plugin for searching text by using Obsidian default search view.
Flow
2 years ago by Ben Phillips
Implements key processes in David Allen's Getting Things Done (GTD) methodology
Focus Time
2 years ago by AstraDev
Focus Time is a plugin that helps you track how much time you spend on each note.
Folder overview
a year ago by Lost Paul
Provides a dynamic overview of your vault or folders in the format of a code block.
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
Gantt Calendar
a month ago by Sugar
A powerful visual task management plugin. Visualize and manage tasks created by the Tasks plugin, supporting both emoji and Dataview task formats. Support Feishu Task syncing. - This plugin has not been manually reviewed by Obsidian staff.
Gemini Scribe
2 years ago by Allen Hutchison
An obsidian plugin to interact with Google Gemini
Gemmy
3 years ago by Obsidian
Generate Timeline
a year ago by Shanshuimei
An obsidian plugin to generate timelines from tags, folders, files or metadata automatically. 根据标签,文件夹,文件或者属性自动生成时间轴的插件。
Git File Explorer
3 years ago by Mateus Molina
Go to Line
5 years ago by phibr0
Goal Tracker
2 years ago by Ben Rotholtz
GPT-LiteInquirer
3 years ago by ittuann
💬 Experience OpenAI ChatGPT assistance directly within Obsidian, drafting content without interrupting your creative flow.
Grind Manager
2 years ago by dromse
Gamify your task management with rewards system, craft your tasks by tags.
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.
Habitica Sync
5 years ago by Leoh and Ran
This is a under-development Obsidian Plugin for Habitica
Handwritten Notes
3 years ago by FBarrCa
Obsidian Handwritten Notes Plugin
Hanko
2 years ago by Telehakke
Obsidian plugin.
Harpoon
3 years ago by mask(developermask)
Header Counter
2 years ago by Nancy Lee
Heading Shifter
4 years ago by kasahala
Easily Shift and Change markdown headings.
Homepage
5 years ago by mirnovov
An Obsidian plugin that opens a specified note, canvas, or workspace on startup, instead of the most recent one.
Hotkeys for templates
5 years ago by Vinzent
Image Classify Paste
3 years ago by tianfx
Improved Random Note
3 years ago by ShockThunder
Inboxer
a year ago by Eoin Hurrell
Obsidian plugin to add an inbox to notes
Inline Checkbox Groups
a year ago by Bradley Wyatt
Obsidian Plugin that creates multiple checkboxes on a single line, separated by a customizable separator character (default '|'), with the option to automatically cross out text when all checkboxes in the line are checked.
Inline Code Copy
a year ago by Hongchen Lin
Insert Multiple Attachments
2 years ago by mnaoumov
Obsidian Plugin that allows to insert multiple attachments at a time
JIRA links shortener
a year ago by Ruslans Platonovs
Obsidian JIRA links shortener plugin
Journal Review
3 years ago by Kageetai
Review your daily notes on their anniversaries, like "what happened today last year"
Journal View
8 days ago by RUverse
Turn your daily notes into one continuous, editable journal—scroll through time, jump to any date, and write without leaving the view. - This plugin has not been manually reviewed by Obsidian staff.
Key Promoter
5 years ago by Johannes Theiner
Learn keyboard shortcuts by showing them when using the mouse
Key Sequence Shortcut
4 years ago by anselmwang
Execute obsidian commands with short key sequences. For example, 'tp' for 'Toggle Preview' and 'tb' for 'Toggle Sidebar'. Easier to remember.
Keyshots
4 years ago by KrazyManJ
🔮📝 Obsidian plugin that adds classic hotkey/shortcuts commands from popular IDEs like Visual Studio Code or JetBrains Family.
Kikijiki Habit Tracker
2 years ago by KIKIJIKI
Kikijiki Habit Tracker Plugin for Obsidian
Kindle Highlights Importer
2 years ago by MovingMillennial
KoReader Highlight Importer
2 years ago by Tahsin Kocaman
Imports highlights and metadata from KoReader into Obsidian notes
LaTeX-OCR
3 years ago by Jack Barker
Lemons Search
2 years ago by Moritz Jung
An Obsidian plugin that offers a fast fuzzy finder based quick switcher with preview.
Link to Verse
2 years ago by Alberto Sesiliano (aygjiay)
Link with alias
3 years ago by Pavel Vojtechovsky
Obsidian plugin for handy creation of links and alias in front matter of target document
LinkMagic
2 years ago by AndyReifman
MantouAI
2 years ago by Morino Pan
MantouAI—— 让Obsidian变身智能助手
Marjdown shortcuts
4 years ago by Jules Guesnon
🪨 Obsidian plugin that allows to write markdown from commands
Markdown Timeline
2 years ago by Jiaheng Zhang
An Obsidian plugin to record the events in a Flashback timeline
Markline
3 years ago by 闲耘
Markline: Markdown timeline view in Obsidian.
Markwhen File Sync
a year ago by rouvenjahnke
Synchronize properties from your Obsidian notes with a Markwhen timeline file.
Marp
3 years ago by JichouP
Plugin to use Marp with Obsidian
MemoryLane
2 years ago by BangCa
Relive and celebrate your life's milestones on a personal, interactive timeline. A nostalgic journey through your history with anniversary reminders and cherished memories.
Memos Sync
2 years ago by RyoJerryYu
Syncing Memos to Obsidian daily note. Fully compatible with official Daily Notes plugin, Calendar plugin and Periodic Notes plugin.
Metadata Hider
3 years ago by Benature
Hide metadata property if its value is empty
Mini Toolbar
3 years ago by AidenLx & Boninall
mini context toolbar in editor for Obsidian
MLIR Syntax Highlight
3 years ago by Lewuathe
Modal forms
3 years ago by Danielo Rodriguez
Define forms for filling data that you will be able to open from anywhere you can run JS
Multi State CheckBox Switcher
3 years ago by KubaMiszcz
Multi-line Formatting
5 years ago by nmady
Format Obsidian text over an entire selection, even if that selection has paragraph breaks in the middle!
Mxmind Mindmap
2 years ago by mxmind
mxmind for obsidian plugin
Navigate Cursor History
4 years ago by heycalmdown
Nifty Links
3 years ago by x-Ai
Generating elegant, Notion-styled rich link cards to enhance your note-taking experience.
No more flickering inline math
3 years ago by Ryota Ushio
No longer disturbed by flickering inline math in Obsidian.
Note Chain
2 years ago by ZigHolding
Package my frequently used tools, highly personal plugins.
Note Minimap
a year ago by Yair Segel
Add a minimap to your Obsidian notes.
Note Placeholder
a year ago by XZSt4nce
Replaces text of note link to placeholder in view mode.
Note Progressbar
4 months ago by Ryoma Kawahara
Displays a live progress bar summarizing checkbox completion in the active note.
Obsidian-compatible Watcher for ActivityWatch
3 years ago by Grimmauld
Obsidian plugin to track user activity with ActivityWatch
Organized daily notes
a year ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Page Scroll
2 years ago by triski
Obsidian Page Up|Down|Top|Bottom
PDF break page
2 years ago by CG
Plugin for obsidian that adding shortcuts to create breakpages for pdf exports.
PDF Paste
a year ago by Cormac
Pia viewer
2 years ago by dldisud
Pinned Daily Notes
a year ago by Jeremy Neiman
Dynamically update a pinned tab with today's daily note
Plugin Manager
3 years ago by ohm-en
Allows better management of Obsidian.md plugins.
Pomodoro
5 years ago by Tokuhiro Matsuno
Pomodoro Planner
2 years ago by Onur Nesvat
PopKit
2 years ago by Zhou Hua
Postfix
3 years ago by Bhagya Nirmaan Silva (@bhagyas)
A postfix plugin for Obsidian
Power Bases
9 days 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. - This plugin has not been manually reviewed by Obsidian staff.
Proletarian Wizard Task Manager
2 years ago by Charles Feval
Obsidian plugin ot manage todos and projects directly from your notes.
Publish to Steemit
4 years ago by anpigon
Post directly to your Steemit from Obsidian.
Quick snippets and navigation
4 years ago by @aciq
Quick snippets and navigation for Obsidian
Quiz Generator
2 years ago by Edward Cui
Generate interactive flashcards from your notes using models from OpenAI (ChatGPT), Google (Gemini), Ollama (local LLMs), and more. Or manually create your own to use with the quiz UI.
Quoth
5 years ago by Eric Rykwalder
Random Number Generator
3 years ago by iRewiewer
Gives you a random number
Rapid AI
2 years ago by Rapid AI
AI Assistant for selected text and generating content with Markdown. Shortcuts and quick action buttons provide instant AI assistance. It provides a high availability API for unlimited Chat GPT request rates, so you can ensure smooth work for any workload.
Rapid Notes
4 years ago by valteriomon
Recent Notes
2 years ago by Kamil Rudnicki
Recent Notes Plugin for Obsidian
Release Timeline
4 years ago by cakechaser
Rendered Block Link Suggestions
3 years ago by Ryota Ushio
Upgrade Obsidian's built-in link suggestions with block markdown rendering.
Replicate
2 years ago by Sébastien Dubois
Integrate Replicate.com with Obsidian
RescueTime
3 years ago by Tatsuya Hayashi
A RescueTime integration plugin to view your activity logs in Obsidian.
ReverySky Map
24 days ago by MoonSkorch Studio
Navigate your vault through an interactive 3D graph built with a game engine and shaped into an explorable universe. - This plugin has not been manually reviewed by Obsidian staff.
RSS Copyist
3 years ago by aoout
Get the RSS articles as notes.
Runsh
a year ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
SamePage
4 years ago by SamePage
Search Templates Library
3 years ago by Pentchaff
Obsidian plugin that allows to store searches templates for later use, and displays search results both in the search view and graph view.
Select word
2 years ago by Connor Espino
Sentinel
2 years ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to update properties or run commands based on document visibility changes.
ShaahMaat-md
2 years ago by Mihail Kovachev
Share via Notepad Tab
2 years ago by Iulian Onofrei
Sheets Extended
3 years ago by NicoNekoru
Plugin that adds features to tables in obsidian including merging, vertical headers, and custom css
short tab name
3 years ago by Shumpei Tanaka
a plugin of obsidian for to change showing tab name to short
Shortcuts extender
6 years ago by kitchenrunner
Plugin for Obsidian: Use shortcuts for input special symbols and changing level of headings without language switching
Sidebar Resizer
2 years ago by Jeet Sukumaran
Simple RSS
3 years ago by Monnierant
Simple Todo
2 years ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Single File Daily Notes
3 years ago by Pranav Mangal
An Obsidian plugin to create and manage daily notes in a single file
Smart Composer
2 years ago by Heesu Suh
AI chat assistant for Obsidian with contextual awareness, smart writing assistance, and one-click edits. Features vault-aware conversations, semantic search, and local model support.
Smart Links
4 years ago by David Lynch
Smart Second Brain
2 years ago by Leo310, nicobrauchtgit
An Obsidian plugin to interact with your privacy focused AI-Assistant making your second brain even smarter!
SolidTime Integration
a year ago by proniclabs
Obsidian SolidTime Integration Plugin
Sonkil
a year ago by ohyoungpark
Sort Frontmatter
3 years ago by Kanzi
Sort frontmatter automatically
Spacekeys
2 years ago by Jared Lumpe
Obsidian plugin to define hotkeys based on sequences of keypresses.
Stopwatch
5 years ago by Tokuhiro Matsuno
StoryLine
a month ago by Jan Sandström
Transform your vault into a powerful book planning and writing tool. Corkboard, KanbanBoard view, timeline, plotlines,character tracking, and more. - This plugin has not been manually reviewed by Obsidian staff.
Storyteller Suite
a year ago by Maws
Super Simple Time Tracker
4 years ago by Ellpeck
Multi-purpose time trackers for your notes!
Superstition
2 years ago by Jeffry
An Obsidian plugin for routine management.
Swiss army knife
3 years ago by mwoz123
Tab Limiter
2 years ago by Henry Gustafson
Limits the number of tabs that can be opened in Obsidian
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.
Target Word Count
2 years ago by TwoFive Labs
Target Word Count Plugin for Obsidian
Task Director
2 years ago by Cybertramp
A plugin that allows you to easily manage tasks in bulk.
Task list
2 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
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.
Things Link
4 years ago by @gavmn
TickTick
3 years ago by Viduy Cheung
Timekeep
2 years ago by Jacobtread
Obsidian task time tracking
Timeline
5 years ago by George Butco
Obisdian.md plugin for creating timelines
Timeline Canvas Creator
a year ago by chris-codes1
Quickly create timeline structured canvases in Obsidian.
Timeline Schedule
3 years ago by Evan Bonsignori
Inline timelines generated from human-readable time strings, e.g. 'Walk dog (30min)' in a ```schedule codeblock.
Timeline View
3 years ago by b.camphart
Obsidian plugin for viewing your notes linearly based on a given property
Timelines (Revamped)
3 months ago by seanlowe
Generate a chronological timeline in which all 'events' are notes that include a specific tag or set of tags.
Timelive
a year ago by aNNiMON
Turn a list of dates into a timeline
Timer
3 years ago by Marius Wörfel
Obsidian plugin, which allows you to measure time.
TinyPNG Image
3 years ago by ckt1031
Obsidian plugin for compressing images with TinyPNG
TODO Wrangler
3 years ago by Jeel Shah
An obsidian plugin to wrangle your Todos and put them in their place.
Todos sort
2 years ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Typezen
2 years ago by Ilgam Gabdullin
Plugin for obsidian which lets you turn zen mode instantly
Typing Assistant
3 years ago by Jambo
Typing Assistant is a plugin that improves writing efficiency and provides a user experience similar to that of【Notion】
Uncheck All
3 years ago by Shahar Har-Shuv
Obsidian plugin to uncheck all checkboxes in a file with one action
Unit Converter
2 years ago by Ruslan Zabarov
Unit conversion plugin for Obsidian
Update Time Updater
2 years ago by MURATAGAWA Kei
Obsidian plugin to update the 'update time' element when saving or manually.
URI Converter
a year ago by wenlzhang
An Obsidian plugin to convert Obsidian URIs to Obsidian internal links.
Vault 2 Book
3 years ago by Mitra98t
Obsidian plugin to convert vault to a complete pdf with Table Of Content
Vault Changelog
5 years ago by Badr Bouslikhin
An Obsidian plugin to maintain a changelog of recently edited notes
VaultAI
a year ago by Tharushka Dinujaya
An AI chatbot plugin for Obsidian using the Gemini API for note summarization, content generation, and more. Enhance your workflow with AI assistance like the Notion AI bot.
Vertical Timeline List
a year ago by Jalad
Utilizes task lists to create a timeline... or something like a timeline.
Waka time box
3 years ago by complexzeng
Week Planner
4 years ago by Ralf Wirdemann
Weekly Goal Tracker
2 years ago by George Gorman
Weekly Review
4 years ago by Brandon Boswell
Word Sprint
5 years ago by Andrew Lombardi
Obsidian Word Sprint plugin
WordWise
2 years ago by ckt1031
Writing companion for AI content generation.
Workbench
6 years ago by ryanjamurphy
A plugin to help you collect working materials.