cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm
leaflet
readability
golang
1---
2title: Time Tracking
3sidebar_label: Time Tracking
4description: Track work, review sessions, and generate timesheets.
5sidebar_position: 4
6---
7
8# Time Tracking
9
10Track hours spent on tasks for billing, reporting, or personal analytics.
11
12## Starting and Stopping
13
14**Start tracking**:
15
16```sh
17noteleaf task start 1
18```
19
20With a note about what you're doing:
21
22```sh
23noteleaf task start 1 --note "Implementing authentication"
24```
25
26**Stop tracking**:
27
28```sh
29noteleaf task stop 1
30```
31
32Only one task can be actively tracked at a time.
33
34## Viewing Timesheets
35
36**Last 7 days** (default):
37
38```sh
39noteleaf task timesheet
40```
41
42**Specific time range**:
43
44```sh
45noteleaf task timesheet --days 30
46```
47
48**For specific task**:
49
50```sh
51noteleaf task timesheet --task 1
52```
53
54Timesheet shows:
55
56- Date and time range for each session
57- Duration
58- Notes attached to the session
59- Total time per task
60- Total time across all tasks