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.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install openclaw-obsidian-tasks或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install openclaw-obsidian-tasks⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/openclaw-obsidian-tasks/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- 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. ---
Task management in Obsidian vaults using Kanban boards, Dataview dashboards, and structured task notes.
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:
/Board.md - Kanban board (requires Kanban community plugin)/Dashboard.md - Dataview dashboard (requires Dataview community plugin)Tell the user to install Kanban and Dataview community plugins if not already installed.
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
| 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 |
Use emoji prefixes on the Kanban board for visual priority:
- [ ] [[Task Name]] 🔴 P1 @{2026-02-07}
status in the task note's frontmatterstatus: done in frontmatter- [x] [[Task Name]] ✅ 2026-02-03
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/).
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安装 Obsidian Tasks 后,可以对 AI 说这些话来触发它
Help me get started with Obsidian Tasks
Explains what Obsidian Tasks does, walks through the setup, and runs a quick demo based on your current project
Use Obsidian Tasks to set up and manage an Obsidian task board with Kanban + Dataview
Invokes Obsidian Tasks with the right parameters and returns the result directly in the conversation
What can I do with Obsidian Tasks in my documents & notes workflow?
Lists the top use cases for Obsidian Tasks, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/openclaw-obsidian-tasks/ 目录(个人级,所有项目可用),或 .claude/skills/openclaw-obsidian-tasks/(项目级)。重启 AI 客户端后,用 /openclaw-obsidian-tasks 主动调用,或让 AI 根据上下文自动发现并使用。
Obsidian Tasks 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Obsidian Tasks 可免费安装使用。请查阅仓库了解许可证信息。
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.
Automate my documents & notes tasks using Obsidian Tasks
Identifies repetitive steps in your workflow and sets up Obsidian Tasks to handle them automatically
Obsidian Tasks 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。