Add todoObsidian tool for syncing TODOs to Obsidian

Scans codebases for TODO/FIXME/HACK/XXX comments and generates Markdown
notes in an Obsidian vault. Includes Zed editor integration that runs
on file save, plus a shell wrapper for CLI usage. Supports customizable
vault paths, project names, and output directories.
This commit is contained in:
2026-05-26 14:38:26 +02:00
parent ef411fbe23
commit b0229b6332
8 changed files with 489 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
[
{
"label": "Scan TODOs to Obsidian",
"command": "python3",
"args": [
"todoObsidian/main.py",
"{ZED_WORKTREE_ROOT}"
],
"tags": ["file-save"],
"cwd": "{ZED_WORKTREE_ROOT}",
"reveal": "no",
"hide": "on_success",
"allow_concurrent_runs": false
}
]