gionzi66 downloadsAggregates all incomplete tasks from the vault into a monthly timeline view with in-place date editing and write-back to source notes.
A planning companion for the Obsidian Tasks plugin.
The idea is simple: capture tasks freely, anywhere in your vault, without worrying about dates. Then, when it's time to plan — open this view, see everything at once, and distribute your tasks across the coming weeks.
That's it. This plugin does one thing.
1. Capture — Write tasks wherever they belong, in whatever note makes sense. Don't force a date. Just get them down.
- [ ] Review Q3 budget
- [ ] Call supplier about delivery
- [ ] Draft onboarding doc for new hire
2. Plan — Open Vault Task Planner when you're ready to plan (weekly review, Monday morning, whenever). You'll see every incomplete task in your vault — dated and undated — in a single view.
3. Schedule — Drag tasks from the Unscheduled pile into the timeline. Assign a date type (due, start, before, end) and pick a date. The plugin writes directly back to the source note — no copy-pasting.
It is a dedicated planning surface. One screen, all your tasks, a timeline to fill.
It is not a full task manager, a project tracker, or a replacement for the Tasks plugin. It reads from Tasks and writes back to it. Think of it as the planning session you were already doing manually — now with a UI.
Every incomplete task in your vault appears here — those with a date in their assigned column, those without in the Unscheduled section below the timeline.
Click + Date on any task to open an inline editor. Pick the type and the date — the plugin updates the source file immediately:
| Type | Written to file |
|---|---|
| Due | 📅 YYYY-MM-DD |
| Before | ⏳ YYYY-MM-DD |
| Start | 🛫 YYYY-MM-DD |
| End | 🏁 YYYY-MM-DD |
Tick the ☐ checkbox next to any task to mark it done. The change is written atomically to the source file; the task disappears from the view on the next refresh.
Filter by source note or date type to focus on a specific area of your vault during planning.
The scanner reads both the Tasks plugin emoji syntax and Dataview inline fields. Dates are always written back in the Tasks emoji format.
| Format | Example |
|---|---|
| Tasks emoji | 📅 2025-06-10 · 🛫 2025-06-01 · 🏁 2025-06-15 · ⏳ 2025-06-08 |
| Dataview inline | [due:: 2025-06-10] · [start:: 2025-06-01] |
main.js, manifest.json, and styles.css from the latest release.<your-vault>/.obsidian/plugins/vault-task-planner/.git clone [email protected]:giacomoleonzi/vault-task-planner-obsidian.git
cd vault-task-planner-obsidian
./build.sh
build.sh compiles everything inside a Docker container and outputs main.js to the project root. Then install as above.
npm install
npm run build
Requires Node 18+.
Vault Task Planner: Open Task PlannerThe view opens in the right sidebar. Click any task text to jump to its source note at the exact line.
vault-task-planner/
├── src/
│ ├── main.ts # Entry point — view, ribbon, command
│ ├── TaskPlannerView.ts # Main ItemView (timeline + list + editor)
│ ├── taskScanner.ts # Vault scan → VaultTask[]
│ ├── taskParser.ts # Date tag parsing & serialisation
│ ├── taskWriter.ts # Atomic write-back via vault.process()
│ └── types.ts # VaultTask, TaskDate, DateType
├── styles.css
├── manifest.json
├── esbuild.config.mjs
├── Dockerfile
└── build.sh
metadataCache is planned for larger vaults.Active development on the dev branch — core features work, rough edges remain.
PRs and issues welcome. Please target dev, not main.
MIT