obsidian-weekly-summary
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'))
"
More from kogakure/skills
obsidian-search-vault
Search the Obsidian Zettelkasten vault using qmd hybrid search (BM25 + vector + LLM re-ranking). Use when the user wants to find notes, quotes, people, books, literature notes, permanent notes, or any content in their personal knowledge base.
3handoff
>
2vault-add
Add a new book, podcast, TV show, or movie to the Obsidian Zettelkasten vault. Creates the resource note from a template, fills in metadata from the web, downloads cover art, updates today's daily note, and re-indexes qmd. Use when the user says "add book", "add podcast", "add show", "add movie", or wants to log media in their vault.
2search-vault
Search the Obsidian Zettelkasten vault using qmd hybrid search (BM25 + vector + LLM re-ranking). Use when the user wants to find notes, quotes, people, books, literature notes, permanent notes, or any content in their personal knowledge base.
2obsidian-vault-add
Add a new book, podcast, TV show, movie, person, country, or city to the Obsidian Zettelkasten vault. Creates the resource note from a template, fills in metadata from the web, downloads cover art, updates today's daily note (media only), and re-indexes qmd. Use when the user says "add book", "add podcast", "add show", "add movie", "add person", "add country", "add city", or wants to log media, people, or places in their vault.
2