Install
openclaw skills install ai-session-analysisUse when the user wants to analyze local AI coding assistant session data (Claude Code, Codex, Kimi Code). Triggers on requests like "analyze my coding sessions", "what tools do I use most", "compare Claude Code vs Codex usage", "give me a summary of what I've been working on", or similar session-analysis inquiries.
openclaw skills install ai-session-analysisAnalyze session data from local AI coding tools. Three bundled scripts extract raw data. You (the agent) read the output and form your own observations — there are no hardcoded rules or thresholds in the scripts.
Scripts read directly from these paths, no copying needed:
| Tool | Path | Content |
|---|---|---|
| Claude Code | ~/.claude/projects/*.jsonl | Full transcripts with tool_use blocks |
| Claude Code | ~/.claude/history.jsonl | User input history |
| Claude Code | ~/.claude/sessions/*.json | Session metadata |
| Codex | ~/.codex/sessions/*/*.jsonl | Structured events |
| Kimi Code | ~/.kimi/sessions/*/wire.jsonl | Wire protocol with ToolCall entries |
# Text-based analysis (terminal output)
python3 ~/.claude/skills/ai-session-analysis/scripts/analyze.py
python3 ~/.claude/skills/ai-session-analysis/scripts/tool_analysis.py
# HTML report with charts (opens in browser)
python3 ~/.claude/skills/ai-session-analysis/scripts/generate_report.py [output.html]
Zero dependencies, Python 3 stdlib only. All scripts are pure data extractors — they present numbers, distributions, and timelines without any interpretation.
analyze.py — Overview:
tool_analysis.py — Deep dive:
generate_report.py — HTML report:
Read both outputs carefully. Then tell the user what you see. Consider:
Do not apply fixed thresholds or rules ("if bash > 40% then warn"). Look at the whole picture and use judgment. If something stands out, mention it. If nothing does, say so.
The HTML report (generate_report.py) embeds your session data directly — file paths, shell commands, project names, and tool usage patterns. This is safe for personal use on your own machine, but do not share the generated HTML file with others or host it publicly. The terminal-based scripts (analyze.py, tool_analysis.py) only print aggregate statistics and are safe to share.
~/.claude/projects/*.jsonl (assistant → content blocks with "type": "tool_use"), not in history.jsonl.~/.codex/sessions/2026/ subdirectories (organized by year/month/day).wire.jsonl via payload.function.name.