# Send Obsidian Tasks to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-obsidian-tasks",
    "name": "Obsidian Tasks",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/larsderidder/openclaw-obsidian-tasks",
    "canonicalUrl": "https://clawhub.ai/larsderidder/openclaw-obsidian-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-obsidian-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-obsidian-tasks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/publish_clawhub.sh",
      "scripts/setup.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-obsidian-tasks",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T08:26:01.199Z",
      "expiresAt": "2026-05-13T08:26:01.199Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-obsidian-tasks",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-obsidian-tasks",
        "contentDisposition": "attachment; filename=\"openclaw-obsidian-tasks-0.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-obsidian-tasks"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-obsidian-tasks"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-obsidian-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-obsidian-tasks",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-obsidian-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-obsidian-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-obsidian-tasks/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: larsderidder
- Version: 0.1.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T08:26:01.199Z
- Expires at: 2026-05-13T08:26:01.199Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-obsidian-tasks)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-obsidian-tasks/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-obsidian-tasks/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-obsidian-tasks/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-obsidian-tasks)