obsidian-weekly-summary

Installation
SKILL.md

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'))
"
Related skills
Installs
1
Repository
kogakure/skills
GitHub Stars
4
First Seen
12 days ago