Add decision journal, metrics, ideas, weather, standup - decide.py: Decision journal with outcomes and lessons - metrics.py: Track arbitrary metrics over time - ideas.py: Idea incubator with stages - weather.py: Quick weather via wttr.in - standup.py: Daily standup generator - 27 tools total now

This commit is contained in:
2026-01-30 23:55:37 -06:00
parent 9b7d7db55c
commit 3c9dc28852
12 changed files with 957 additions and 6 deletions

5
ws
View File

@ -38,6 +38,11 @@ COMMANDS = {
'reading': ('tools/reading.py', 'Reading list'),
'people': ('tools/people.py', 'Personal CRM'),
'ref': ('tools/ref.py', 'Quick reference snippets'),
'decide': ('tools/decide.py', 'Decision journal'),
'metrics': ('tools/metrics.py', 'Track metrics over time'),
'ideas': ('tools/ideas.py', 'Idea incubator'),
'weather': ('tools/weather.py', 'Weather check'),
'standup': ('tools/standup.py', 'Daily standup generator'),
# Projects
'news': ('projects/news-feed/main.py', 'RSS news reader'),