No description
Find a file
renatomen bcfe3ff01c docs: add collapsible groups documentation for subtask widget
- Add bullet point about collapsible groups in widget features list
- Add new subsection with visual reference to demonstration GIF
- Document persistent state and expand/collapse all functionality
- Include demonstration GIF asset
2025-08-16 13:55:28 +00:00
.github debug: Temporarily test only Node.js 20 with verbose output 2025-07-26 13:54:37 +10:00
docs docs: add collapsible groups documentation for subtask widget 2025-08-16 13:55:28 +00:00
media fix: Move inline task widget screenshots to docs/assets folder 2025-07-17 21:19:22 +10:00
src feat: add collapsible groups to subtask widget 2025-08-16 13:45:35 +00:00
styles feat: add collapsible groups to subtask widget 2025-08-16 13:45:35 +00:00
tests feat: add collapsible groups to subtask widget 2025-08-16 13:45:35 +00:00
.editorconfig Refactor plugin architecture and implement best practices 2025-05-18 11:50:16 +10:00
.eslintignore Refactor plugin architecture and implement best practices 2025-05-18 11:50:16 +10:00
.eslintrc update linting rues 2025-06-25 21:02:02 +10:00
.gitignore feat: add collapsible groups to subtask widget 2025-08-16 13:45:35 +00:00
.npmrc Refactor plugin architecture and implement best practices 2025-05-18 11:50:16 +10:00
build-css.mjs feat(ui): add comprehensive webhook settings styling 2025-08-13 10:37:02 +10:00
copy-files.mjs chore(dev): support .copy-files.local override for copy-files and ignore it 2025-08-13 00:33:12 +00:00
esbuild.config.mjs Refactor plugin architecture and implement best practices 2025-05-18 11:50:16 +10:00
jest.config.js fix: Adjust Jest coverage thresholds to realistic levels 2025-07-26 13:47:31 +10:00
jest.integration.config.js Add actions read permission to docs workflow 2025-06-29 12:39:17 +10:00
LICENSE update license 2025-05-30 00:49:39 +10:00
main.ts Rename ChronoSync Plugin to TaskNotes Plugin and Remove Legacy Daily Metadata Commands 2025-05-31 11:29:32 +10:00
manifest.json release 3.19.1 2025-08-12 21:32:35 +10:00
mkdocs.yml docs: Add comprehensive release notes documentation 2025-07-20 08:27:31 +10:00
package-lock.json feat: add OpenAPI specification and Pomodoro API endpoints 2025-08-13 22:12:14 +10:00
package.json feat: add OpenAPI specification and Pomodoro API endpoints 2025-08-13 22:12:14 +10:00
README.md feat: add custom TaskNotes icons 2025-08-15 23:48:35 +10:00
Tasknotes-Development-Guidelines.md feat: Implement UTC Anchor principle for robust timezone handling 2025-08-02 22:54:11 +10:00
tasknotes-gradient.svg feat: add custom TaskNotes icons 2025-08-15 23:48:35 +10:00
tasknotes-simple.svg feat: add custom TaskNotes icons 2025-08-15 23:48:35 +10:00
test-overdue-setting.md feat: Add setting to hide completed tasks from overdue status (#300) 2025-07-27 10:20:40 +10:00
test-webhook.js feat(webhooks): add comprehensive webhook testing server 2025-08-13 10:42:46 +10:00
tsconfig.json feat: add OpenAPI specification and Pomodoro API endpoints 2025-08-13 22:12:14 +10:00
version-bump.mjs Refactor plugin architecture and implement best practices 2025-05-18 11:50:16 +10:00
versions.json release: 0.7.0 2025-06-01 21:58:08 +10:00

TaskNotes for Obsidian

A task management plugin where each task is stored as an individual note using YAML frontmatter with calendar, kanban and pomodoro integration.

Downloads Screenshot of biblib Obsidian plugin

Documentation

📖 Complete Documentation

Overview

TaskNotes treats each task as an individual Markdown file with YAML frontmatter containing the task's metadata (due date, status, priority, etc.) and the note body for additional context, descriptions, or progress notes. This creates a flexible system where tasks can be as simple or detailed as needed.

The plugin includes several views: calendar, kanban boards, filtered task lists, and a daily agenda. Tasks can link to projects using Obsidian's note linking. Recurring tasks track completion per instance.

You can track time on tasks with start/stop buttons and view session history. There's also a pomodoro timer that connects to tasks, with configurable work/break periods and stats.

Rationale

Using YAML frontmatter for task storage has multiple benefits. YAML is a standard data format that works with many tools, so you can easily extract and transform your task data into other formats. This keeps your data portable and aligns with Obsidian's file-over-app philosophy.

The frontmatter is also extensible—you can add custom fields like "assigned-to" or "attachments" and use other tools like Obsidian Bases to work with that data. This flexibility made it easy to add features like time-tracking, which is tricky in other task formats where there's no obvious place to store timing information.

Since each task is a full note, you can write detailed descriptions, jot down thoughts as you work, and connect tasks to other notes through Obsidian's linking and graph features. The frontmatter compatibility with Bases also means you can use that plugin for different views and bulk operations if you want.

Core Features

Task Management

  • Individual Markdown files with YAML frontmatter
  • Properties: title, status, priority, due date, scheduled date, contexts, projects, tags, time estimates, completion date
  • Project organization using note-based linking
  • Recurring tasks with per-date completion tracking
  • Time tracking with multiple sessions per task
  • Archive function using tags
  • Filtering and grouping options

Calendar Integration

  • Month view displaying tasks and notes
  • Mini calendar view for compact layouts
  • ICS/iCal feed subscriptions
  • Direct navigation to daily notes

Time Management

  • Time tracking with start/stop functionality
  • Pomodoro timer with task integration
  • Session history and statistics

Editor Integration

  • Interactive task previews for wikilinks
  • Universal line-to-task conversion
  • Template support with parent note context

Views

  • Calendar: Month view with agenda
  • Task List: Filtering and grouping options
  • Kanban: Drag-and-drop task management
  • Agenda: Daily task and note overview
  • Notes: Date-based note browser
  • Pomodoro: Timer with statistics

Task creation dialog Create tasks with natural language parsing for due dates, recurrence, and contexts

Pomodoro timer Built-in pomodoro timer with task integration and daily completion tracking

Kanban board view Kanban boards with drag-and-drop functionality and customizable columns

Project subtasks view Project management with subtasks and hierarchical organization

Configuration

Customization

  • Field Mapping: Customize YAML property names to match existing workflows
  • Custom Statuses: Define task statuses with colors and completion behavior
  • Custom Priorities: Create priority levels with weight-based sorting
  • Templates: Configure daily note templates with Obsidian variables

YAML Structure

Task Example

title: "Complete documentation"
status: "in-progress"
due: "2024-01-20"
priority: "high"
contexts: ["work"]
projects: ["[[Website Redesign]]"]
timeEstimate: 120
timeEntries:
  - startTime: "2024-01-15T10:30:00Z"
    endTime: "2024-01-15T11:15:00Z"

Recurring Task

title: "Weekly meeting"
recurrence: "FREQ=WEEKLY;BYDAY=MO"
complete_instances: ["2024-01-08"]

HTTP API

TaskNotes includes an optional HTTP API server for external integrations. This enables creating tasks from browsers, automation tools, mobile apps, and custom scripts.

Quick Start

  1. Enable the HTTP API in Settings → HTTP API tab (desktop only)
  2. Configure port (default: 8080) and optional auth token
  3. Restart Obsidian to start the server

Basic Usage

# Health check
curl http://localhost:8080/api/health

# List all tasks
curl http://localhost:8080/api/tasks

# Create a task
curl -X POST http://localhost:8080/api/tasks \
  -H "Content-Type: application/json" \
  -d '{"title": "New task", "priority": "High"}'

# Get task statistics
curl http://localhost:8080/api/stats

Browser Integration

The API enables powerful browser integrations:

  • Bookmarklets for one-click task creation from any webpage
  • Browser extensions for Gmail, Outlook, and other email providers
  • Automation with Zapier, IFTTT, and similar services

Documentation

See HTTP API Documentation for complete endpoint reference and integration examples.

Credits

This plugin uses FullCalendar.io for its calendar components.

License

This project is licensed under the MIT License - see the LICENSE file for details.