obsidian-weekly-summary
Read the daily notes for the current calendar week and produce a structured summary of the most important things done.
Step 1: Determine the current week's dates
Use Python to calculate Monday–today:
python3 -c "
from datetime import date, timedelta
today = date.today()
monday = today - timedelta(days=today.weekday())
days = [monday + timedelta(days=i) for i in range((today - monday).days + 1)]
for d in days:
print(d.strftime('%Y%m%d'), d.strftime('%A
[Description truncada. Veja o README completo no GitHub.]