No description
Find a file
2026-07-18 14:46:42 -07:00
.github Update GitHub Actions runtime 2026-07-18 14:46:42 -07:00
assets Harden public release experience 2026-07-18 14:44:55 -07:00
src Harden public release experience 2026-07-18 14:44:55 -07:00
tests Initial public release 2026-07-18 14:16:25 -07:00
.gitignore Initial public release 2026-07-18 14:16:25 -07:00
CONTRIBUTING.md Initial public release 2026-07-18 14:16:25 -07:00
esbuild.config.mjs Initial public release 2026-07-18 14:16:25 -07:00
LICENSE Initial public release 2026-07-18 14:16:25 -07:00
manifest.json Initial public release 2026-07-18 14:16:25 -07:00
package-lock.json Initial public release 2026-07-18 14:16:25 -07:00
package.json Initial public release 2026-07-18 14:16:25 -07:00
README.md Harden public release experience 2026-07-18 14:44:55 -07:00
SECURITY.md Initial public release 2026-07-18 14:16:25 -07:00
styles.css Harden public release experience 2026-07-18 14:44:55 -07:00
tsconfig.json Initial public release 2026-07-18 14:16:25 -07:00
versions.json Initial public release 2026-07-18 14:16:25 -07:00

Taskline

Taskline is an Obsidian task dashboard and quick-capture plugin. It reads tasks from the notes you choose, groups them into a focused Today view, and writes changes back to Markdown.

Taskline does not create task notes during setup. You keep control of every source path, heading, route, and display group.

Taskline Today view with three example tasks

Features

  • Today, Upcoming, and All task views
  • Natural-language capture for dates, priorities, recurrence, tags, and owners
  • Configurable task sources, headings, areas, and capture routes
  • Inline task editing, status changes, and completion
  • Desktop and mobile layouts with keyboard navigation
  • Local-only operation with no accounts, telemetry, or network requests
  • Optional proposal rows for reviewing suggested completions or cancellations

Requirements

  • Obsidian 1.5.0 or later
  • Markdown task notes that use - [ ] Task syntax
  • The Tasks plugin only if you complete recurring tasks through Taskline

Taskline can read and edit non-recurring tasks without the Tasks plugin.

Install

Taskline is not yet listed in the Obsidian Community plugins directory.

To install a release manually:

  1. Download main.js, manifest.json, and styles.css from the release.
  2. Create <vault>/.obsidian/plugins/vault-tasks/.
  3. Place all three files in that folder.
  4. Reload Obsidian.
  5. Enable Taskline under Settings -> Community plugins.

The folder is named vault-tasks because Obsidian requires it to match the stable plugin ID in manifest.json.

Configure

Open Settings -> Taskline. Taskline starts unconfigured and inactive. Add the source notes and level-two (##) task headings you want, then select Apply.

The settings UI accepts JSON arrays so related routes and groups can be edited together. This minimal configuration reads one note and captures new tasks under its Inbox heading:

Task sources

[
  {
    "id": "tasks",
    "label": "Tasks",
    "path": "Tasks.md",
    "role": "tasks",
    "editPolicy": "stay",
    "proposals": false
  }
]

Areas

[
  {
    "id": "inbox",
    "label": "Inbox",
    "sourceId": "tasks",
    "heading": "Inbox"
  }
]

Display order

["inbox"]

Fallback capture destination

{
  "sourceId": "tasks",
  "heading": "Inbox"
}

Source paths must be relative to the vault. Taskline rejects absolute paths and paths containing ... Configured destinations must already exist as level-two headings; Taskline never creates notes or headings implicitly.

Capture Tasks

Run Taskline: Add task from the command palette. Taskline recognizes common shorthand:

Send report by tomorrow !! #work
Plan review next week #planning
Publish notes every Friday @alex
  • !, !!, and !!! set medium, high, and urgent priority. priority:low sets low priority.
  • Dates such as today, tomorrow, next week, Jul 5, and 2026-07-05 set the due date.
  • daily, weekly, and phrases such as every Friday set recurrence.
  • #tag selects a configured route or keeps a generic tag.
  • @owner records an owner.

Taskline writes Tasks-compatible signifiers at the end of each task line.

Development

npm ci
npm test
npm run build

The production build writes main.js at the repository root.

Privacy and Security

Taskline reads and changes only the vault files configured as task sources. It does not send data off-device. See SECURITY.md to report a vulnerability.

License

MIT