بنقرة واحدة
status
// Check daily-log plugin status, stats, and configuration. Use when user asks about logging status, how many logs, is logging working, or daily-log status.
// Check daily-log plugin status, stats, and configuration. Use when user asks about logging status, how many logs, is logging working, or daily-log status.
Generate daily activity summaries from Claude Code logs and optionally publish to Slack, Discord, Obsidian, Notion, or webhook. Use when the user asks for a daily summary, work log, what they did today/yesterday, activity report, or when auto-summary triggers on session start.
Set up the daily-log plugin configuration. Use when user says "setup daily-log", "configure daily-log", "set up slack for daily log", "daily-log setup", or wants to configure where summaries are published.
Clean up old daily-log files. Use when user asks to clean up logs, delete old logs, rotate logs, or free up log space.
View, query, and customize Claude Code daily usage logs. Use when user asks about session history, usage logs, what they worked on, or wants to customize logging behavior.
| name | status |
| description | Check daily-log plugin status, stats, and configuration. Use when user asks about logging status, how many logs, is logging working, or daily-log status. |
Shows the current state of the daily-log plugin — whether logging is active, today's stats, and publish destination config.
~/.claude/logs/daily/ exists~/.claude/logs/daily/YYYY-MM-DD/Run these commands:
# Session count
ls ~/.claude/logs/daily/$(date +%Y-%m-%d)/*.jsonl 2>/dev/null | wc -l
# Entry counts
cat ~/.claude/logs/daily/$(date +%Y-%m-%d)/*.jsonl 2>/dev/null | python3 -c "
import sys, json
prompts = stops = 0
projects = set()
for line in sys.stdin:
d = json.loads(line)
if d['event'] == 'prompt': prompts += 1
elif d['event'] == 'stop': stops += 1
projects.add(d.get('project',''))
print(f'Prompts: {prompts}')
print(f'Stops: {stops}')
print(f'Projects: {", ".join(sorted(projects))}')
"
~/.claude/daily-log.json if it exists/daily-log:setup~/.claude/logs//daily-log:cleanupDaily Log Status
================
Logging: active
Today: 12 prompts, 4 stops across 3 sessions
Projects: myapp, dotfiles, api-server
Time range: 09:15 - 14:32 UTC
Publishing: Slack (#daily-standup)
Config: ~/.claude/daily-log.json
History: 23 days of logs (1.2 MB)