Analyzes Claude Code session history to identify repeated workflows and suggest slash commands to automate them
This skill analyzes your Claude Code usage patterns by examining session transcripts to identify workflows you repeat frequently. It suggests specific slash commands you could create to automate these patterns, complete with time savings estimates and implementation priorities.
Use this skill when you want to:
This skill includes a pre-built Python analysis script that:
~/.claude/projects/*/The skill considers a pattern significant if it:
The skill identifies these common workflow patterns:
When the user requests workflow analysis:
Calculate date range:
days parameter if provided, otherwise default to 30date -v-{days}d +%s (macOS) or date -d "{days} days ago" +%s (Linux)Locate session files:
find ~/.claude/projects -name "*.jsonl" -type f -mtime -{days} 2>/dev/null
Run analysis and generate report:
find ~/.claude/projects -name "*.jsonl" -type f -mtime -{days} 2>/dev/null | \
python3 <skill-path>/scripts/workflow_analyzer.py
Present findings:
The generated report includes:
For each pattern:
This skill is successful if it:
/ship-git, /publish-plugin)