Daily Reporter

Generate daily operation reports automatically. Use when creating EOD reports or summarizing work.

Yasuaki-I Updated

File contents

Daily Reporter

Version: 1.0.0 Purpose: Automated daily report generation


Workflow

Step 1: Gather Data

# Git activity
git log --since="yesterday" --oneline

# Todo completion
cat ~/todos.md | grep "✅"

Step 2: Generate Report

# Daily Report - [DATE]

## Summary
[1-2 sentence overview]

## Completed
- [Task 1]
- [Task 2]

## In Progress
- [Task 3]

## Blockers
- [Issue if any]

## Tomorrow
- [Next priority]

Step 3: Distribute

Options:

  • Save to file
  • Send via Slack
  • Post to Notion
  • Email

Automation

cron setup

0 18 * * * ~/.claude/skills/daily-reporter/run.sh

GitHub Action

on:
  schedule:
    - cron: '0 9 * * *'

Yasuaki-I/ppal-skill-library/tree/main/automation/daily-reporter commit 92f366de89

Frequently asked questions

npx skillmds@latest add yasuaki-i/daily-reporter