# Activity Tracker MVP Configuration [capture] interval_seconds = 300 # 5 minutes (as per MVP spec) screenshot_quality = 80 # WebP quality (80%) inactivity_threshold = 600 # 10 minutes [storage] max_storage_mb = 500 retention_days = 30 db_path = "data/activity_tracker.db" [ai] categories = ["Development", "Meeting", "Research", "Design", "Other"] batch_size = 10 confidence_threshold = 0.7 # For MVP, use simple heuristic classification # Model path for future Mistral integration # model_path = "models/mistral-7b-int8.gguf" [security] salt_length = 16 pbkdf2_iterations = 100000 encryption_algorithm = "AES-256-GCM" [report] timezone = "UTC" format = "json" [debug] enabled = false log_level = "info"