{
  "schemaVersion": "1.0",
  "item": {
    "slug": "obsidian-tasks",
    "name": "Obsidian Tasks",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/larsderidder/obsidian-tasks",
    "canonicalUrl": "https://clawhub.ai/larsderidder/obsidian-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/obsidian-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=obsidian-tasks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/publish_clawhub.sh",
      "scripts/setup.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/obsidian-tasks",
    "agentPageUrl": "https://openagent3.xyz/skills/obsidian-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-tasks/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "obsidian-tasks",
        "body": "Task management in Obsidian vaults using Kanban boards, Dataview dashboards, and structured task notes."
      },
      {
        "title": "Setup",
        "body": "Run the setup script to initialize a task board in an Obsidian vault:\n\npython3 scripts/setup.py <vault-path> [--folder <name>] [--columns <col1,col2,...>]\n\nvault-path: Path to the Obsidian vault root\n--folder: Subfolder to create (default: Tasks)\n--columns: Kanban columns (default: Backlog,Todo,In Progress,Review,Done)\n\nThis creates:\n\n<folder>/Board.md - Kanban board (requires Kanban community plugin)\n<folder>/Dashboard.md - Dataview dashboard (requires Dataview community plugin)\n\nTell the user to install Kanban and Dataview community plugins if not already installed."
      },
      {
        "title": "Task Note Format",
        "body": "Each task is a separate markdown file with YAML frontmatter:\n\n---\nstatus: todo\npriority: P1\ncategory: revenue\ncreated: 2026-02-03\ndue: 2026-02-07\n---\n\n# Task Title\n\nDescription and notes here.\n\n## References\n- [[linked-document|Display Name]]\n\n## Status\n- [x] Step completed\n- [ ] Step pending"
      },
      {
        "title": "Frontmatter Fields",
        "body": "FieldValuesRequiredstatusbacklog, todo, in-progress, review, doneyespriorityP1, P2, P3yescategoryfree text (revenue, content, research, setup, project)yescreatedYYYY-MM-DDyesdueYYYY-MM-DDnoparked_untilYYYY-MM-DDno"
      },
      {
        "title": "Priority Labels on Board",
        "body": "Use emoji prefixes on the Kanban board for visual priority:\n\n🔴 P1 (urgent)\n🟡 P2 (normal)\n🟢 P3 (backlog/parked)"
      },
      {
        "title": "Create a Task",
        "body": "Create a markdown file in the tasks folder with frontmatter\nAdd a card to Board.md in the appropriate column:\n\n- [ ] [[Task Name]] 🔴 P1 @{2026-02-07}"
      },
      {
        "title": "Move a Task",
        "body": "Update status in the task note's frontmatter\nMove the card line in Board.md to the target column"
      },
      {
        "title": "Complete a Task",
        "body": "Set status: done in frontmatter\nMove to Done column and mark checkbox:\n\n- [x] [[Task Name]] ✅ 2026-02-03"
      },
      {
        "title": "Linking Documents",
        "body": "Use Obsidian [[wikilinks]] to connect tasks to supporting documents:\n\n## References\n- [[2026-02-03-research-report|Research Report]]\n- [[meeting-notes-jan|Meeting Notes]]\n\nStore referenced documents in a sibling folder (e.g., Research/ next to Tasks/)."
      },
      {
        "title": "Dashboard Queries",
        "body": "The setup script creates a Dataview dashboard. Core queries:\n\nTasks by priority:\n\nTABLE status, category, due\nFROM \"<tasks-folder>\"\nWHERE priority = \"P1\" AND status != \"done\"\nSORT due ASC\n\nOverdue tasks:\n\nTABLE priority, category\nFROM \"<tasks-folder>\"\nWHERE due AND due < date(today) AND status != \"done\"\nSORT due ASC\n\nRecently completed:\n\nTABLE category\nFROM \"<tasks-folder>\"\nWHERE status = \"done\"\nSORT file.mtime DESC\nLIMIT 10"
      }
    ],
    "body": "obsidian-tasks\n\nTask management in Obsidian vaults using Kanban boards, Dataview dashboards, and structured task notes.\n\nSetup\n\nRun the setup script to initialize a task board in an Obsidian vault:\n\npython3 scripts/setup.py <vault-path> [--folder <name>] [--columns <col1,col2,...>]\n\nvault-path: Path to the Obsidian vault root\n--folder: Subfolder to create (default: Tasks)\n--columns: Kanban columns (default: Backlog,Todo,In Progress,Review,Done)\n\nThis creates:\n\n<folder>/Board.md - Kanban board (requires Kanban community plugin)\n<folder>/Dashboard.md - Dataview dashboard (requires Dataview community plugin)\n\nTell the user to install Kanban and Dataview community plugins if not already installed.\n\nTask Note Format\n\nEach task is a separate markdown file with YAML frontmatter:\n\n---\nstatus: todo\npriority: P1\ncategory: revenue\ncreated: 2026-02-03\ndue: 2026-02-07\n---\n\n# Task Title\n\nDescription and notes here.\n\n## References\n- [[linked-document|Display Name]]\n\n## Status\n- [x] Step completed\n- [ ] Step pending\n\nFrontmatter Fields\nField\tValues\tRequired\nstatus\tbacklog, todo, in-progress, review, done\tyes\npriority\tP1, P2, P3\tyes\ncategory\tfree text (revenue, content, research, setup, project)\tyes\ncreated\tYYYY-MM-DD\tyes\ndue\tYYYY-MM-DD\tno\nparked_until\tYYYY-MM-DD\tno\nPriority Labels on Board\n\nUse emoji prefixes on the Kanban board for visual priority:\n\n🔴 P1 (urgent)\n🟡 P2 (normal)\n🟢 P3 (backlog/parked)\nManaging Tasks\nCreate a Task\nCreate a markdown file in the tasks folder with frontmatter\nAdd a card to Board.md in the appropriate column:\n- [ ] [[Task Name]] 🔴 P1 @{2026-02-07}\n\nMove a Task\nUpdate status in the task note's frontmatter\nMove the card line in Board.md to the target column\nComplete a Task\nSet status: done in frontmatter\nMove to Done column and mark checkbox:\n- [x] [[Task Name]] ✅ 2026-02-03\n\nAlways update both Board.md AND the task note frontmatter to keep them in sync.\nLinking Documents\n\nUse Obsidian [[wikilinks]] to connect tasks to supporting documents:\n\n## References\n- [[2026-02-03-research-report|Research Report]]\n- [[meeting-notes-jan|Meeting Notes]]\n\n\nStore referenced documents in a sibling folder (e.g., Research/ next to Tasks/).\n\nDashboard Queries\n\nThe setup script creates a Dataview dashboard. Core queries:\n\nTasks by priority:\n\nTABLE status, category, due\nFROM \"<tasks-folder>\"\nWHERE priority = \"P1\" AND status != \"done\"\nSORT due ASC\n\n\nOverdue tasks:\n\nTABLE priority, category\nFROM \"<tasks-folder>\"\nWHERE due AND due < date(today) AND status != \"done\"\nSORT due ASC\n\n\nRecently completed:\n\nTABLE category\nFROM \"<tasks-folder>\"\nWHERE status = \"done\"\nSORT file.mtime DESC\nLIMIT 10"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/larsderidder/obsidian-tasks",
    "publisherUrl": "https://clawhub.ai/larsderidder/obsidian-tasks",
    "owner": "larsderidder",
    "version": "0.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/obsidian-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/obsidian-tasks",
    "agentUrl": "https://openagent3.xyz/skills/obsidian-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/obsidian-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/obsidian-tasks/agent.md"
  }
}