{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}
Learn the basics and get Claude Code Tracker up and running
Claude Code Tracker is a development intelligence system that helps you understand and analyze your coding activity when using Claude Code. It automatically tracks your sessions, conversations, file modifications, and provides insights into your development patterns.
Start by importing your existing Claude Code conversation history from your ~/.claude.json
file.
~/.claude.json
on macOS/Linux or %USERPROFILE%\.claude.json
on Windows.
Set up hooks to automatically track new sessions and conversations in real-time.
Add this configuration to your Claude Code settings:
{
"hooks": {
"session_start": "curl -X POST http://localhost:8000/api/sessions/start",
"session_end": "curl -X POST http://localhost:8000/api/sessions/end",
"conversation_update": "curl -X POST http://localhost:8000/api/conversations"
}
}
Navigate through the dashboard to discover insights about your development activity.
Possible causes:
.claude.json
fileSolutions:
Check these items:
This can happen after import. Run the recalculation script:
python recalculate_project_stats.py
This will recalculate all project statistics from your imported data.