Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
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.
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.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
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: <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.
FieldValuesRequiredstatusbacklog, todo, in-progress, review, doneyespriorityP1, P2, P3yescategoryfree text (revenue, content, research, setup, project)yescreatedYYYY-MM-DDyesdueYYYY-MM-DDnoparked_untilYYYY-MM-DDno
Use emoji prefixes on the Kanban board for visual priority: ๐ด P1 (urgent) ๐ก P2 (normal) ๐ข P3 (backlog/parked)
Update status in the task note's frontmatter Move the card line in Board.md to the target column
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
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.