Initial commit: Claude Code Project Tracker
Add comprehensive development intelligence system that tracks: - Development sessions with automatic start/stop - Full conversation history with semantic search - Tool usage and file operation analytics - Think time and engagement analysis - Git activity correlation - Learning pattern recognition - Productivity insights and metrics Features: - FastAPI backend with SQLite database - Modern web dashboard with interactive charts - Claude Code hook integration for automatic tracking - Comprehensive test suite with 100+ tests - Complete API documentation (OpenAPI/Swagger) - Privacy-first design with local data storage 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
commit
44ed9936b7
48 changed files with 9707 additions and 0 deletions
15
pytest.ini
Normal file
15
pytest.ini
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
[tool:pytest]
|
||||
minversion = 6.0
|
||||
addopts = -ra -q --strict-markers --strict-config
|
||||
testpaths = tests
|
||||
python_files = test_*.py
|
||||
python_classes = Test*
|
||||
python_functions = test_*
|
||||
asyncio_mode = auto
|
||||
markers =
|
||||
unit: Unit tests that don't require external dependencies
|
||||
integration: Integration tests that require database/API
|
||||
slow: Tests that take longer than 1 second to run
|
||||
api: API endpoint tests
|
||||
analytics: Analytics and insights tests
|
||||
hooks: Hook simulation tests
|
||||
Loading…
Add table
Add a link
Reference in a new issue