claude-daily-review

한국어
Claude Code plugin that automatically captures your conversations and generates structured review markdown files in your Obsidian vault or GitHub repository.
Turn your daily AI-assisted development work into career documentation — on demand.
Features
- Auto-capture: Hook-based conversation logging on every turn with local buffering
- On-demand reviews: Generate reviews when you want with natural language (
/generate)
- Review modes: Generate as daily retrospective, career resume, blog post, or custom format
- Natural language targeting: "yesterday's review", "Q1 summary", "my-app project March review"
- Project-based reviews: Filter and generate reviews for specific projects
- Structured reviews: Work summaries, learnings, decisions, and Q&A organized by project
- Cascading summaries: Daily → Weekly → Monthly → Quarterly → Yearly
- Git commit integration: Automatically captures git commits from sessions and links them in reviews
- Secret redaction: API keys, tokens, and passwords are automatically masked before storage
- Local buffer + index: Minimized API calls with local buffering and index-based fast lookups
- Obsidian integration: Direct markdown output with tags and links
- GitHub integration: Store reviews in a GitHub repo with OAuth authentication
- Multi-machine sync: GitHub storage shares config across machines automatically
- Review reminder: Notifies when reviews haven't been generated in 2+ weeks
Installation
From terminal:
claude plugin marketplace add giwonn/claude-daily-review
claude plugin install claude-daily-review@giwonn-plugins
From Claude Code:
/plugin marketplace add giwonn/claude-daily-review
/plugin install claude-daily-review@giwonn-plugins
Setup
On first run, you'll be prompted to configure the plugin. Or run manually:
/daily-review-setup
This will ask for:
- Your storage choice: local (Obsidian vault or any directory) or GitHub (remote repository)
- A brief professional profile (company, role, team)
- Which summary periods to enable
How It Works
Every Turn (Stop hook)
│
├─→ Local buffer append + index update
│
└─→ Buffer > 10KB? ──yes──→ Flush to GitHub
no──→ Wait
Session Start
│
├─→ Flush previous sessions' buffers → GitHub
├─→ Parse git activity from transcripts
└─→ Review reminder check (2+ weeks?)
/generate "blog post for March"
│
├─→ Parse intent (date / project / mode)
├─→ Flush all local buffers
├─→ Index lookup → collect target logs
├─→ Generate reviews (review / resume / blog / custom)
└─→ Batch write to storage
Generating Reviews
Use /generate with natural language to control what gets generated:
/generate → Generate all missing reviews
/generate yesterday's review → Daily review for yesterday
/generate last week's weekly summary → Weekly summary for last week
/generate Q1 review → Quarterly summary for Q1
/generate my-app project March review → March review filtered to my-app
/generate March 1-15 → Daily reviews for date range
Review Modes
You can specify the output format with natural language:
/generate 블로그로 3월 정리 → Blog post format
/generate 경력기술서용 1분기 요약 → Career resume format
/generate 팀 주간보고서로 이번주 → Custom format (team report)
| Mode | Tone | Structure |
|---|
| review (default) | Internal, concise | Work summary, learnings, decisions, Q&A |
| resume | Formal, outcome-focused | Problem → alternatives → decision → impact → improvements |
| blog | Conversational, storytelling | Introduction → attempts → solution → insights |
| custom | User-specified | Follows user's format/tone instructions |
Git Commit Integration
When you make git commits during a session, the plugin automatically:
- Extracts commit hashes, branches, and messages from the transcript
- Resolves remote URLs and GitHub account info
- Includes commit details in daily reviews with links to GitHub
Upgrading
If you're upgrading from v0.5.x, run the migration command to build the index:
/daily-review-migrate
This scans existing raw logs and creates a local index for fast lookups. The plugin will prompt you automatically if the index is missing.
GitHub Storage