| name | time-tracking-top-categories |
| description | Sub-skill of time-tracking: Top Categories (+2). |
| version | 1.0.0 |
| category | business |
| type | reference |
| scripts_exempt | true |
Top Categories (+2)
Top Categories
"""
for category, hours in list(rt["by_category"].items())[:5]:
md += f"- {category}: {hours:.1f} hours\n"
return md
Example usage
if name == "main":
generator = WeeklyReportGenerator(
See sub-skills for full details.
Example 2: Project Time Attribution
"""project_attribution.py - Attribute time to projects automatically"""
import os
import re
from datetime import datetime, timedelta
from collections import defaultdict
class ProjectTimeAttributor:
*See sub-skills for full details.*
```python
"""productivity_dashboard.py - Generate dashboard data"""
import os
from datetime import datetime, timedelta
import json
class ProductivityDashboard:
"""Generate data for productivity dashboard."""
*See sub-skills for full details.*