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'))
"
Installs
10
Repository
kogakure/skills
GitHub Stars
8
First Seen
May 10, 2026
obsidian-weekly-summary — kogakure/skills