Add goals, reading list, and people CRM - goals.py: Goal tracking with milestones and progress - reading.py: Reading list tracker (articles, books, papers) - people.py: Personal CRM for keeping notes on people - 21 tools total now

This commit is contained in:
2026-01-30 23:46:35 -06:00
parent 3b053ce71c
commit 7925efe4f1
7 changed files with 569 additions and 0 deletions

3
ws
View File

@ -34,6 +34,9 @@ COMMANDS = {
'sys': ('tools/sysmon.py', 'System monitor'),
'journal': ('tools/journal.py', 'Structured journaling'),
'backup': ('tools/backup.py', 'Backup and export'),
'goals': ('tools/goals.py', 'Goal tracking'),
'reading': ('tools/reading.py', 'Reading list'),
'people': ('tools/people.py', 'Personal CRM'),
# Projects
'news': ('projects/news-feed/main.py', 'RSS news reader'),