You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ROADMAP.md
+33-5Lines changed: 33 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
3
3
## Compare
4
4
5
-
Compare up to 3 logs side-by-side.
5
+
Compare up to 5 logs side-by-side.
6
6
7
7
### Flow
8
8
9
9
1. Click "Compare" button on index page → enters selection mode
10
10
2. Checkboxes appear on each log card
11
-
3. Select 2-3 logs (max 3)
11
+
3. Select 2-5 logs (max 5)
12
12
4. "Compare Selected" button appears → navigates to compare page with selected log IDs
13
13
14
14
### Compare Page
@@ -34,8 +34,36 @@ Compare up to 3 logs side-by-side.
34
34
35
35
---
36
36
37
-
## Backlog (DO NOT IMPLEMENT)
37
+
## Pinned Logs
38
+
39
+
Pin important logs to protect them from log rotation and quickly filter to them.
40
+
41
+
### Features
38
42
39
-
### Pinned reference column
43
+
-**Pin/Unpin**: Click "..." menu on any log card → select "Pin" or "Unpin"
44
+
-**Pin indicator**: Pinned logs show a 📌 icon in the index view
45
+
-**Pinned filter**: Click "Pinned" button to show only pinned logs
46
+
-**Rotation protection**: Pinned logs are never deleted by log rotation
47
+
-**Storage**: Pinned log IDs stored in `~/.llm-debugger/pinned.yaml`
48
+
49
+
### API
50
+
51
+
-`POST /__viewer__/:provider/:filename/pin` — pin a log
52
+
-`DELETE /__viewer__/:provider/:filename/pin` — unpin a log
53
+
-`GET /__viewer__/:provider/:filename/pin` — check pin status
54
+
55
+
---
40
56
41
-
Pin one log as the "baseline" (left-most, fixed position) while scrolling through others horizontally. Useful for comparing variations against a known-good request.
57
+
## Log Rotation
58
+
59
+
Automatically delete oldest logs when the total exceeds a configured limit.
60
+
61
+
### Config
62
+
63
+
-`max_logs: 100` (default) — set to `0` for unlimited
64
+
- Configurable via UI (Settings → Max Logs) or CLI (`llm-debugger config set max_logs 50`)
0 commit comments