TaskDecay v1.0.0 MVP — smart task review & archive Chrome extension

This commit is contained in:
Bun Bun
2026-06-17 06:48:47 +00:00
commit cc9aee68ee
38 changed files with 4710 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
export const DEFAULT_SETTINGS = {
providers: {
todoist: { enabled: false, token: '', lastSync: null, projectIds: null },
ticktick: { enabled: false, token: '', lastSync: null, projectIds: null },
notion: { enabled: false, token: '', lastSync: null, projectIds: null },
},
decayThresholdDays: 14,
reviewIntervalDays: 7,
maxTasksPerReview: 20,
autoArchiveDays: 90,
lastReviewDate: null,
dismissedTasks: [],
archivedTasks: [],
};