Add daily dashboard, wisdom, and system monitor - today.py: Comprehensive daily overview combining all tools - wisdom.py: Quotes and wisdom collection with daily feature - sysmon.py: System resource monitor (CPU, memory, disk) - Updated ws CLI with new commands

This commit is contained in:
2026-01-30 23:39:27 -06:00
parent 6c4eb9284a
commit 6ee620e302
5 changed files with 645 additions and 0 deletions

3
ws
View File

@ -29,6 +29,9 @@ COMMANDS = {
'habits': ('tools/habits.py', 'Habit tracker with streaks'),
'track': ('tools/track.py', 'Time tracking'),
'cap': ('tools/capture.py', 'Quick thought capture'),
'today': ('tools/today.py', 'Daily overview dashboard'),
'wisdom': ('tools/wisdom.py', 'Quotes and wisdom collection'),
'sys': ('tools/sysmon.py', 'System monitor'),
# Projects
'news': ('projects/news-feed/main.py', 'RSS news reader'),