Obsidian Tasks

PassAudited by ClawScan on May 1, 2026.

Overview

This skill coherently creates and manages local Obsidian task files, with no evidence of credential use, hidden network exfiltration, or deceptive behavior.

Install this if you want an agent to help manage task files inside an Obsidian vault. Provide a precise vault path, keep backups or sync history, review task moves/completions, and install Kanban/Dataview from trusted Obsidian community-plugin sources.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The agent or user-run setup script can create and later help update task-board Markdown files in the selected Obsidian vault.

Why it was flagged

The helper creates directories and writes Board.md/Dashboard.md under a user-supplied vault/folder path. This is disclosed and central to the skill, but it is still local file mutation that should be pointed at the intended vault.

Skill content
folder_path = os.path.join(vault, args.folder)
os.makedirs(folder_path, exist_ok=True)
...
with open(board_path, "w") as f:
    f.write(create_board(folder_path, columns))
Recommendation

Run setup only with an explicit trusted vault path and folder, and consider using Obsidian sync history, backups, or version control before letting an agent manage tasks.

What this means

Users have less external provenance information to rely on and should trust the provided artifacts themselves before running the helper script.

Why it was flagged

The skill has limited provenance metadata and includes helper scripts despite no install spec. The included scripts are small and purpose-aligned, so this is a review note rather than a concern.

Skill content
Source: unknown
Homepage: none
...
No install spec — this is an instruction-only skill.
...
2 code file(s): scripts/publish_clawhub.sh; scripts/setup.py
Recommendation

Review the included scripts before use, install Obsidian community plugins from their expected sources, and avoid running the maintainer publishing helper unless you are maintaining the skill.

What this means

Task details, priorities, due dates, and links to supporting notes will persist in the vault and may be visible to any tool or agent with access to that vault.

Why it was flagged

The skill stores structured task metadata and notes persistently in the Obsidian vault. This is the intended functionality, but task content may include personal or business context that future Obsidian views or agents can read.

Skill content
Each task is a separate markdown file with YAML frontmatter:
...
status: todo
priority: P1
category: revenue
created: 2026-02-03
due: 2026-02-07
Recommendation

Avoid putting secrets in task notes, keep vault access limited, and review linked notes before asking an agent to use them as context.