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)