From daily-log
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/daily-log:statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Shows the current state of the daily-log plugin — whether logging is active, today's stats, and publish destination config.
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)
npx claudepluginhub trentshaines/claude-plugins --plugin daily-logInspects and queries Claude Code hook event logs from .claude/logs JSONL files. Subcommands list sessions, timelines, tool traces, agent lifecycles, team activity, stats, coverage, and daily summaries.
Displays audit logs for Claude Code components (skills, commands, agents, hooks) from .claude/audit/ to monitor health, identify stale items, and track coverage.