@giwonn/claude-daily-review
v0.4.1
Published
Claude Code plugin that auto-captures conversations for daily review and career documentation
Downloads
166
Readme
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 with zero manual effort
- On-demand reviews: Generate reviews when you want with natural language (
/generate) - Natural language targeting: "yesterday's review", "Q1 summary", "my-app project March review"
- Structured reviews: Work summaries, learnings, decisions, and Q&A organized by project
- Cascading summaries: Daily → Weekly → Monthly → Quarterly → Yearly
- Obsidian integration: Direct markdown output with tags and links
- GitHub integration: Store reviews in a GitHub repo with OAuth authentication
- Crash recovery: Missing raw logs auto-recovered from transcripts on session start
Installation
claude plugin add claude-daily-reviewSetup
On first run, you'll be prompted to configure the plugin. Or run manually:
/daily-review-setupThis 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 response → Raw log saved automatically (async, non-blocking)
Session start → Missing logs recovered from transcripts
/generate → AI generates reviews from raw logs on demandGenerating 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 rangeWhen no arguments are given, it generates all reviews that haven't been created yet (incremental mode).
GitHub Storage
When you choose GitHub as your storage backend, the plugin authenticates using the OAuth Device Flow — no personal access tokens required.
Authentication
- The plugin requests a device code from GitHub
- You visit
https://github.com/login/deviceand enter the code - After you authorize, the plugin receives and stores an OAuth token automatically
Repository Setup
After authenticating, you can either:
- Create a new repository — the plugin creates a private repo on your account
- Use an existing repository — enter the owner and repo name to use a repo you already have
How It Works
Files are read and written via the GitHub Contents API. Each review file is committed directly to the repository as a markdown file, using the same folder structure as local storage. No local git installation is required.
Vault Structure
daily-review/
├── daily/2026-03-28.md ← Daily review (all projects)
├── weekly/2026-W13.md ← Weekly summary
├── monthly/2026-03.md ← Monthly summary
├── quarterly/2026-Q1.md ← Quarterly summary
├── yearly/2026.md ← Yearly summary
├── projects/my-app/
│ ├── 2026-03-28.md ← Project daily detail
│ └── summary.md ← Cumulative project summary
└── uncategorized/2026-03-28.md ← Non-project questionsConfiguration
Config is stored at $CLAUDE_PLUGIN_DATA/config.json.
Local storage example
{
"storage": {
"type": "local",
"local": {
"basePath": "/path/to/obsidian/vault/daily-review"
}
},
"language": "ko",
"periods": {
"daily": true,
"weekly": true,
"monthly": true,
"quarterly": true,
"yearly": false
},
"profile": {
"company": "Your Company",
"role": "Your Role",
"team": "Your Team",
"context": "What you do in one line"
},
"privacy": {
"redactSecrets": true
}
}GitHub storage example
{
"storage": {
"type": "github",
"github": {
"owner": "your-github-username",
"repo": "daily-review",
"token": "<stored by OAuth flow>",
"basePath": "daily-review"
}
},
"language": "ko",
"periods": {
"daily": true,
"weekly": true,
"monthly": true,
"quarterly": true,
"yearly": false
},
"profile": {
"company": "Your Company",
"role": "Your Role",
"team": "Your Team",
"context": "What you do in one line"
},
"privacy": {
"redactSecrets": true
}
}Security & Privacy
What Gets Collected
This plugin automatically captures and stores all conversations with Claude Code:
- Full user messages and AI responses
- Working directory paths and project names
- Git commit messages, branch names, and remote URLs
Corporate / Organizational Use
When using this plugin for work, the following may be recorded:
- Source code and business logic descriptions
- Internal system/service names and architecture details
- Colleague names, client information, and project specifics
- Internal URLs, IP addresses, and infrastructure configurations
You are solely responsible for managing this information. Please review your organization's security policies before use.
Automatic Secret Redaction
Known secret patterns (API keys, tokens, passwords, etc.) are automatically redacted to [REDACTED] before storage. However, this is a best-effort mechanism and does not guarantee complete protection of all sensitive data.
GitHub Storage
If storing reviews on GitHub, always use a private repository. Storing to a public repository exposes your conversations and reviews to the internet. Since secret redaction cannot cover all cases, keeping the repository private is the most fundamental security measure.
License
MIT
