โ† All skills
Tencent SkillHub ยท Developer Tools

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/publish_clawhub.sh, scripts/setup.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

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

FieldValuesRequiredstatusbacklog, todo, in-progress, review, doneyespriorityP1, P2, P3yescategoryfree text (revenue, content, research, setup, project)yescreatedYYYY-MM-DDyesdueYYYY-MM-DDnoparked_untilYYYY-MM-DDno

Priority Labels on Board

Use emoji prefixes on the Kanban board for visual priority: ๐Ÿ”ด P1 (urgent) ๐ŸŸก P2 (normal) ๐ŸŸข P3 (backlog/parked)

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 status in the task note's frontmatter Move the card line in Board.md to the target column

Complete a Task

  • Set status: done in frontmatter
  • Move to Done column and mark checkbox:
  • [x] [[Task Name]] โœ… 2026-02-03

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/publish_clawhub.sh Scripts
  • scripts/setup.py Scripts