Harden architecture hot paths

This commit is contained in:
gsxdsm
2026-04-12 15:13:27 -07:00
parent 476ef812dc
commit 428b8f7b17
38 changed files with 1212 additions and 561 deletions

View File

@@ -116,7 +116,7 @@ async function getTaskCounts(projectPath: string): Promise<Record<string, number
try {
const store = new TaskStore(projectPath);
await store.init();
const tasks = await store.listTasks();
const tasks = await store.listTasks({ slim: true });
const counts: Record<string, number> = {};
for (const col of COLUMNS) {