npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@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-review

Setup

On first run, you'll be prompted to configure the plugin. Or run manually:

/daily-review-setup

This will ask for:

  1. Your storage choice: local (Obsidian vault or any directory) or GitHub (remote repository)
  2. A brief professional profile (company, role, team)
  3. 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 demand

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

When 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

  1. The plugin requests a device code from GitHub
  2. You visit https://github.com/login/device and enter the code
  3. 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 questions

Configuration

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