Add habits and time tracking - habits.py: Daily habit tracking with streaks - track.py: Time tracking with projects - Updated ws CLI with new commands - Data stored in data/ directory

This commit is contained in:
2026-01-30 23:27:32 -06:00
parent 67f6b293f3
commit 71504e3265
5 changed files with 458 additions and 0 deletions

2
ws
View File

@ -26,6 +26,8 @@ COMMANDS = {
'scaffold': ('tools/scaffold.py', 'Create new project'),
'watch': ('tools/watcher.py', 'Watch for file changes'),
'focus': ('tools/focus.py', 'Pomodoro focus timer'),
'habits': ('tools/habits.py', 'Habit tracker with streaks'),
'track': ('tools/track.py', 'Time tracking'),
# Projects
'news': ('projects/news-feed/main.py', 'RSS news reader'),