feat: add global tasks folder

This commit is contained in:
2026-07-15 00:32:25 +05:00
parent dc37cd8553
commit beeb9dd7f9
17 changed files with 473 additions and 156 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Task } from "./task";
export type TaskScope = "project" | "global";
/** Where a task lives on disk (runtime; not stored in frontmatter). */
export type TaskLocation = {
scope: TaskScope;
folderPath: string;
};
export type LocatedTask = {
task: Task;
location: TaskLocation;
};