3.6k★by larsderidder
obsidian-tasks – OpenClaw Skill
obsidian-tasks is an OpenClaw Skills integration for data analytics workflows. Set up and manage an Obsidian task board with Kanban + Dataview. Creates a Tasks/Board.md pipeline (Backlog/Todo/In Progress/Review/Done), per-task notes with YAML frontmatter (status/priority/category/due), and dashboards via Dataview queries. Use for task tracking, moving cards between columns, keeping board + frontmatter in sync, and linking tasks to supporting notes/research.
Skill Snapshot
| name | obsidian-tasks |
| description | Set up and manage an Obsidian task board with Kanban + Dataview. Creates a Tasks/Board.md pipeline (Backlog/Todo/In Progress/Review/Done), per-task notes with YAML frontmatter (status/priority/category/due), and dashboards via Dataview queries. Use for task tracking, moving cards between columns, keeping board + frontmatter in sync, and linking tasks to supporting notes/research. OpenClaw Skills integration. |
| owner | larsderidder |
| repository | larsderidder/obsidian-tasks |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @larsderidder/obsidian-tasks |
| last updated | Feb 7, 2026 |
Maintainer

name: obsidian-tasks description: Set up and manage an Obsidian task board with Kanban + Dataview. Creates a Tasks/Board.md pipeline (Backlog/Todo/In Progress/Review/Done), per-task notes with YAML frontmatter (status/priority/category/due), and dashboards via Dataview queries. Use for task tracking, moving cards between columns, keeping board + frontmatter in sync, and linking tasks to supporting notes/research.
obsidian-tasks
Task management in Obsidian vaults using Kanban boards, Dataview dashboards, and structured task notes.
Setup
Run the setup script to initialize a task board in an Obsidian vault:
python3 scripts/setup.py <vault-path> [--folder <name>] [--columns <col1,col2,...>]
vault-path: Path to the Obsidian vault root--folder: Subfolder to create (default:Tasks)--columns: Kanban columns (default:Backlog,Todo,In Progress,Review,Done)
This creates:
<folder>/Board.md- Kanban board (requires Kanban community plugin)<folder>/Dashboard.md- Dataview dashboard (requires Dataview community plugin)
Tell the user to install Kanban and Dataview community plugins if not already installed.
Task Note Format
Each task is a separate markdown file with YAML frontmatter:
---
status: todo
priority: P1
category: revenue
created: 2026-02-03
due: 2026-02-07
---
# Task Title
Description and notes here.
## References
- [[linked-document|Display Name]]
## Status
- [x] Step completed
- [ ] Step pending
Frontmatter Fields
| Field | Values | Required |
|---|---|---|
| status | backlog, todo, in-progress, review, done | yes |
| priority | P1, P2, P3 | yes |
| category | free text (revenue, content, research, setup, project) | yes |
| created | YYYY-MM-DD | yes |
| due | YYYY-MM-DD | no |
| parked_until | YYYY-MM-DD | no |
Priority Labels on Board
Use emoji prefixes on the Kanban board for visual priority:
- 🔴 P1 (urgent)
- 🟡 P2 (normal)
- 🟢 P3 (backlog/parked)
Managing Tasks
Create a Task
- Create a markdown file in the tasks folder with frontmatter
- Add a card to Board.md in the appropriate column:
- [ ] [[Task Name]] 🔴 P1 @{2026-02-07}
Move a Task
- Update
statusin the task note's frontmatter - Move the card line in Board.md to the target column
Complete a Task
- Set
status: donein frontmatter - Move to Done column and mark checkbox:
- [x] [[Task Name]] ✅ 2026-02-03
Always update both Board.md AND the task note frontmatter to keep them in sync.
Linking Documents
Use Obsidian [[wikilinks]] to connect tasks to supporting documents:
## References
- [[2026-02-03-research-report|Research Report]]
- [[meeting-notes-jan|Meeting Notes]]
Store referenced documents in a sibling folder (e.g., Research/ next to Tasks/).
Dashboard Queries
The setup script creates a Dataview dashboard. Core queries:
Tasks by priority:
TABLE status, category, due
FROM "<tasks-folder>"
WHERE priority = "P1" AND status != "done"
SORT due ASC
Overdue tasks:
TABLE priority, category
FROM "<tasks-folder>"
WHERE due AND due < date(today) AND status != "done"
SORT due ASC
Recently completed:
TABLE category
FROM "<tasks-folder>"
WHERE status = "done"
SORT file.mtime DESC
LIMIT 10
openclaw-obsidian-tasks
An OpenClaw skill for managing tasks in Obsidian vaults using Kanban boards and Dataview dashboards.
What it does
- Sets up a Kanban board your AI agent can manage
- Creates Dataview dashboards for task overview
- Structured task notes with frontmatter (status, priority, category, dates)
- Agent instructions for creating, moving, and completing tasks
- Supports
[[wikilinks]]to connect tasks to documents and research
Requirements
- An Obsidian vault on disk
- Kanban community plugin (for board view)
- Dataview community plugin (for dashboards)
Install
Via ClawHub
npx clawhub@latest install openclaw-obsidian-tasks
Publish (maintainers)
Login once:
npx -y clawhub@latest login
Publish a new version:
./scripts/publish_clawhub.sh 0.1.0 "Initial release: Obsidian task board (Kanban + Dataview) setup + workflows."
Manual
Copy the SKILL.md and scripts/ folder to ~/.openclaw/skills/obsidian-tasks/ or your workspace skills/ folder.
Setup
Ask your agent to set up a task board, or run the setup script directly:
python3 scripts/setup.py /path/to/vault --folder Tasks
Options:
--folder- subfolder name (default:Tasks)--columns- comma-separated columns (default:Backlog,Todo,In Progress,Review,Done)
Then install the Kanban and Dataview plugins in Obsidian (Settings > Community Plugins > Browse).
Task format
Each task is a markdown file with YAML frontmatter:
---
status: todo
priority: P1
category: revenue
created: 2026-02-03
due: 2026-02-07
---
# Apply to VNG Realisatie
Details, notes, and references here.
## References
- [[research-doc|Research Report]]
The Kanban board (Board.md) uses priority emoji for visual scanning:
- 🔴 P1 (urgent)
- 🟡 P2 (normal)
- 🟢 P3 (backlog)
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install obsidian-tasks?
Run openclaw add @larsderidder/obsidian-tasks in your terminal. This installs obsidian-tasks into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/larsderidder/obsidian-tasks. Review commits and README documentation before installing.
