Obsidian task board
Skill x2724009/evidence-first-durable-task-orchestrator/skills/obsidian-task-board
Optionally organize Markdown task records created by evidence-first-durable-task-orchestrator inside an explicitly configured Obsidian vault. Use only when the user wants Obsidian-based task browsing, Dashboard indexing, or vault integration. Do not require Obsidian for the core workflow and never infer a vault path.From its SKILL.md
npx -y skills add x2724009/evidence-first-durable-task-orchestrator --skill obsidian-task-boardAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.9 KB, 311 tokens by cl100k_base, as published. Nobody here has run it
Obsidian Task Board Adapter
This optional adapter stores the core Skill's Markdown records in a user-selected folder inside an Obsidian vault. It adds organization, not a new execution workflow.
Required user input
Before writing, obtain an explicit task_root path. Confirm the path is inside the user's chosen
vault and writable. Never scan for, guess, or expose vault locations.
Behavior
- Keep the core layout:
Active/,Blocked/,Archive/<year>/, and optionalDashboard.md. - Preserve YAML frontmatter so Obsidian properties and optional Dataview queries can read it.
- If Obsidian is installed, the user may open the folder as a vault; the agent does not need to launch Obsidian to write Markdown.
- If Dataview is absent, maintain a compact manual table in
Dashboard.mdonly when the user requests a dashboard. - Do not install Obsidian, community plugins, or enable sync/publish services without explicit approval.
Optional Dashboard query
When the user already has Dataview installed and asks for an automatic view, use this query:
TABLE WITHOUT ID file.link AS "Task", status AS "Status", current_milestone AS "Milestone", updated AS "Updated"
FROM "Agent-Tasks/Active" OR "Agent-Tasks/Blocked"
SORT updated DESC
If the plugin is unavailable, leave the records fully usable as plain Markdown.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.